Search is not available for this dataset
commit_message
stringlengths
9
4.28k
sha
stringlengths
40
40
type
stringclasses
10 values
commit_url
stringlengths
78
90
masked_commit_message
stringlengths
2
4.27k
author_email
stringclasses
8 values
git_diff
stringlengths
2
37.4M
fix: smallest type selection
7c9970f1405efe9373fa87ea0d4e7dd90827fb44
fix
https://github.com/erg-lang/erg/commit/7c9970f1405efe9373fa87ea0d4e7dd90827fb44
smallest type selection
{"compare.rs": "@@ -170,10 +170,11 @@ impl Context {\n (Obj, _) | (_, Never | Failure) => (Absolutely, true),\n (_, Obj) if lhs.is_simple_class() => (Absolutely, false),\n (Never | Failure, _) if rhs.is_simple_class() => (Absolutely, false),\n- (Float | Ratio | Int | Nat | Bool, Bool)\n- | (Float | Ratio | Int | Nat, Nat)\n- | (Float | Ratio | Int, Int)\n- | (Float | Ratio, Ratio) => (Absolutely, true),\n+ (Complex | Float | Ratio | Int | Nat | Bool, Bool)\n+ | (Complex | Float | Ratio | Int | Nat, Nat)\n+ | (Complex | Float | Ratio | Int, Int)\n+ | (Complex | Float | Ratio, Ratio)\n+ | (Complex | Float, Float) => (Absolutely, true),\n (Type, ClassType | TraitType) => (Absolutely, true),\n (\n Mono(n),\n", "generalize.rs": "@@ -346,7 +346,7 @@ impl Context {\n match tp {\n TyParam::FreeVar(fv) if fv.is_linked() => {\n let inner = fv.unwrap_linked();\n- self.deref_tp(inner, variance, &set! {}, loc)\n+ self.deref_tp(inner, variance, qnames, loc)\n }\n TyParam::FreeVar(fv)\n if fv.is_generalized() && qnames.contains(&fv.unbound_name().unwrap()) =>\n@@ -539,7 +539,7 @@ impl Context {\n loc: &impl Locational,\n ) -> TyCheckResult<Type> {\n if self.is_trait(&super_t) {\n- self.check_trait_impl(&sub_t, &super_t, &set! {}, loc)?;\n+ self.check_trait_impl(&sub_t, &super_t, qnames, loc)?;\n }\n // REVIEW: Even if type constraints can be satisfied, implementation may not exist\n if self.subtype_of(&sub_t, &super_t) {\n@@ -934,7 +934,7 @@ impl Context {\n self.level = 0;\n let mut errs = TyCheckErrors::empty();\n for chunk in hir.module.iter_mut() {\n- if let Err(es) = self.resolve_expr_t(chunk) {\n+ if let Err(es) = self.resolve_expr_t(chunk, &set! {}) {\n errs.extend(es);\n }\n }\n@@ -981,7 +981,7 @@ impl Context {\n var_params.vi.t = self.deref_tyvar(\n mem::take(&mut var_params.vi.t),\n Contravariant,\n- &set! {},\n+ qnames,\n var_params.as_ref(),\n )?;\n }\n@@ -989,41 +989,46 @@ impl Context {\n param.sig.vi.t.generalize();\n param.sig.vi.t =\n self.deref_tyvar(mem::take(&mut param.sig.vi.t), Contravariant, qnames, param)?;\n- self.resolve_expr_t(&mut param.default_val)?;\n+ self.resolve_expr_t(&mut param.default_val, qnames)?;\n }\n Ok(())\n }\n \n- fn resolve_expr_t(&self, expr: &mut hir::Expr) -> TyCheckResult<()> {\n+ fn resolve_expr_t(&self, expr: &mut hir::Expr, qnames: &Set<Str>) -> TyCheckResult<()> {\n match expr {\n hir::Expr::Lit(_) => Ok(()),\n hir::Expr::Accessor(acc) => {\n- if !acc.ref_t().is_qvar() {\n- let variance = if acc.var_info().kind.is_parameter() {\n+ if acc\n+ .ref_t()\n+ .unbound_name()\n+ .map_or(false, |name| !qnames.contains(&name))\n+ {\n+ /*let variance = if acc.var_info().kind.is_parameter() {\n Contravariant\n } else {\n Covariant\n- };\n+ };*/\n+ let variance = Covariant;\n let t = mem::take(acc.ref_mut_t());\n- *acc.ref_mut_t() = self.deref_tyvar(t, variance, &set! {}, acc)?;\n+ *acc.ref_mut_t() = self.deref_tyvar(t, variance, qnames, acc)?;\n }\n if let hir::Accessor::Attr(attr) = acc {\n- self.resolve_expr_t(&mut attr.obj)?;\n+ self.resolve_expr_t(&mut attr.obj, qnames)?;\n }\n Ok(())\n }\n hir::Expr::Array(array) => match array {\n hir::Array::Normal(arr) => {\n- arr.t = self.deref_tyvar(mem::take(&mut arr.t), Covariant, &set! {}, arr)?;\n+ arr.t = self.deref_tyvar(mem::take(&mut arr.t), Covariant, qnames, arr)?;\n for elem in arr.elems.pos_args.iter_mut() {\n- self.resolve_expr_t(&mut elem.expr)?;\n+ self.resolve_expr_t(&mut elem.expr, qnames)?;\n }\n Ok(())\n }\n hir::Array::WithLength(arr) => {\n- arr.t = self.deref_tyvar(mem::take(&mut arr.t), Covariant, &set! {}, arr)?;\n- self.resolve_expr_t(&mut arr.elem)?;\n- self.resolve_expr_t(&mut arr.len)?;\n+ arr.t = self.deref_tyvar(mem::take(&mut arr.t), Covariant, qnames, arr)?;\n+ self.resolve_expr_t(&mut arr.elem, qnames)?;\n+ self.resolve_expr_t(&mut arr.len, qnames)?;\n Ok(())\n }\n other => feature_error!(\n@@ -1036,34 +1041,34 @@ impl Context {\n },\n hir::Expr::Tuple(tuple) => match tuple {\n hir::Tuple::Normal(tup) => {\n- tup.t = self.deref_tyvar(mem::take(&mut tup.t), Covariant, &set! {}, tup)?;\n+ tup.t = self.deref_tyvar(mem::take(&mut tup.t), Covariant, qnames, tup)?;\n for elem in tup.elems.pos_args.iter_mut() {\n- self.resolve_expr_t(&mut elem.expr)?;\n+ self.resolve_expr_t(&mut elem.expr, qnames)?;\n }\n Ok(())\n }\n },\n hir::Expr::Set(set) => match set {\n hir::Set::Normal(st) => {\n- st.t = self.deref_tyvar(mem::take(&mut st.t), Covariant, &set! {}, st)?;\n+ st.t = self.deref_tyvar(mem::take(&mut st.t), Covariant, qnames, st)?;\n for elem in st.elems.pos_args.iter_mut() {\n- self.resolve_expr_t(&mut elem.expr)?;\n+ self.resolve_expr_t(&mut elem.expr, qnames)?;\n }\n Ok(())\n }\n hir::Set::WithLength(st) => {\n- st.t = self.deref_tyvar(mem::take(&mut st.t), Covariant, &set! {}, st)?;\n- self.resolve_expr_t(&mut st.elem)?;\n- self.resolve_expr_t(&mut st.len)?;\n+ st.t = self.deref_tyvar(mem::take(&mut st.t), Covariant, qnames, st)?;\n+ self.resolve_expr_t(&mut st.elem, qnames)?;\n+ self.resolve_expr_t(&mut st.len, qnames)?;\n Ok(())\n }\n },\n hir::Expr::Dict(dict) => match dict {\n hir::Dict::Normal(dic) => {\n- dic.t = self.deref_tyvar(mem::take(&mut dic.t), Covariant, &set! {}, dic)?;\n+ dic.t = self.deref_tyvar(mem::take(&mut dic.t), Covariant, qnames, dic)?;\n for kv in dic.kvs.iter_mut() {\n- self.resolve_expr_t(&mut kv.key)?;\n- self.resolve_expr_t(&mut kv.value)?;\n+ self.resolve_expr_t(&mut kv.key, qnames)?;\n+ self.resolve_expr_t(&mut kv.value, qnames)?;\n }\n Ok(())\n }\n@@ -1076,15 +1081,14 @@ impl Context {\n ),\n },\n hir::Expr::Record(record) => {\n- record.t =\n- self.deref_tyvar(mem::take(&mut record.t), Covariant, &set! {}, record)?;\n+ record.t = self.deref_tyvar(mem::take(&mut record.t), Covariant, qnames, record)?;\n for attr in record.attrs.iter_mut() {\n match &mut attr.sig {\n hir::Signature::Var(var) => {\n *var.ref_mut_t() = self.deref_tyvar(\n mem::take(var.ref_mut_t()),\n Covariant,\n- &set! {},\n+ qnames,\n var,\n )?;\n }\n@@ -1092,13 +1096,13 @@ impl Context {\n *subr.ref_mut_t() = self.deref_tyvar(\n mem::take(subr.ref_mut_t()),\n Covariant,\n- &set! {},\n+ qnames,\n subr,\n )?;\n }\n }\n for chunk in attr.body.block.iter_mut() {\n- self.resolve_expr_t(chunk)?;\n+ self.resolve_expr_t(chunk, qnames)?;\n }\n }\n Ok(())\n@@ -1106,42 +1110,43 @@ impl Context {\n hir::Expr::BinOp(binop) => {\n let t = mem::take(binop.signature_mut_t().unwrap());\n *binop.signature_mut_t().unwrap() =\n- self.deref_tyvar(t, Covariant, &set! {}, binop)?;\n- self.resolve_expr_t(&mut binop.lhs)?;\n- self.resolve_expr_t(&mut binop.rhs)?;\n+ self.deref_tyvar(t, Covariant, qnames, binop)?;\n+ self.resolve_expr_t(&mut binop.lhs, qnames)?;\n+ self.resolve_expr_t(&mut binop.rhs, qnames)?;\n Ok(())\n }\n hir::Expr::UnaryOp(unaryop) => {\n let t = mem::take(unaryop.signature_mut_t().unwrap());\n *unaryop.signature_mut_t().unwrap() =\n- self.deref_tyvar(t, Covariant, &set! {}, unaryop)?;\n- self.resolve_expr_t(&mut unaryop.expr)?;\n+ self.deref_tyvar(t, Covariant, qnames, unaryop)?;\n+ self.resolve_expr_t(&mut unaryop.expr, qnames)?;\n Ok(())\n }\n hir::Expr::Call(call) => {\n if let Some(t) = call.signature_mut_t() {\n let t = mem::take(t);\n *call.signature_mut_t().unwrap() =\n- self.deref_tyvar(t, Covariant, &set! {}, call)?;\n+ self.deref_tyvar(t, Covariant, qnames, call)?;\n }\n- self.resolve_expr_t(&mut call.obj)?;\n+ self.resolve_expr_t(&mut call.obj, qnames)?;\n for arg in call.args.pos_args.iter_mut() {\n- self.resolve_expr_t(&mut arg.expr)?;\n+ self.resolve_expr_t(&mut arg.expr, qnames)?;\n }\n if let Some(var_args) = &mut call.args.var_args {\n- self.resolve_expr_t(&mut var_args.expr)?;\n+ self.resolve_expr_t(&mut var_args.expr, qnames)?;\n }\n for arg in call.args.kw_args.iter_mut() {\n- self.resolve_expr_t(&mut arg.expr)?;\n+ self.resolve_expr_t(&mut arg.expr, qnames)?;\n }\n Ok(())\n }\n hir::Expr::Def(def) => {\n let qnames = if let Type::Quantified(quant) = def.sig.ref_t() {\n+ // double quantification is not allowed\n let Ok(subr) = <&SubrType>::try_from(quant.as_ref()) else { unreachable!() };\n subr.essential_qnames()\n } else {\n- set! {}\n+ qnames.clone()\n };\n *def.sig.ref_mut_t() =\n self.deref_tyvar(mem::take(def.sig.ref_mut_t()), Covariant, &qnames, &def.sig)?;\n@@ -1149,7 +1154,7 @@ impl Context {\n self.resolve_params_t(params, &qnames)?;\n }\n for chunk in def.body.block.iter_mut() {\n- self.resolve_expr_t(chunk)?;\n+ self.resolve_expr_t(chunk, &qnames)?;\n }\n Ok(())\n }\n@@ -1158,45 +1163,45 @@ impl Context {\n let Ok(subr) = <&SubrType>::try_from(quant.as_ref()) else { unreachable!() };\n subr.essential_qnames()\n } else {\n- set! {}\n+ qnames.clone()\n };\n lambda.t =\n self.deref_tyvar(mem::take(&mut lambda.t), Covariant, &qnames, lambda)?;\n self.resolve_params_t(&mut lambda.params, &qnames)?;\n for chunk in lambda.body.iter_mut() {\n- self.resolve_expr_t(chunk)?;\n+ self.resolve_expr_t(chunk, &qnames)?;\n }\n Ok(())\n }\n hir::Expr::ClassDef(class_def) => {\n for def in class_def.methods.iter_mut() {\n- self.resolve_expr_t(def)?;\n+ self.resolve_expr_t(def, qnames)?;\n }\n Ok(())\n }\n hir::Expr::PatchDef(patch_def) => {\n for def in patch_def.methods.iter_mut() {\n- self.resolve_expr_t(def)?;\n+ self.resolve_expr_t(def, qnames)?;\n }\n Ok(())\n }\n hir::Expr::ReDef(redef) => {\n // REVIEW: redef.attr is not dereferenced\n for chunk in redef.block.iter_mut() {\n- self.resolve_expr_t(chunk)?;\n+ self.resolve_expr_t(chunk, qnames)?;\n }\n Ok(())\n }\n- hir::Expr::TypeAsc(tasc) => self.resolve_expr_t(&mut tasc.expr),\n+ hir::Expr::TypeAsc(tasc) => self.resolve_expr_t(&mut tasc.expr, qnames),\n hir::Expr::Code(chunks) | hir::Expr::Compound(chunks) => {\n for chunk in chunks.iter_mut() {\n- self.resolve_expr_t(chunk)?;\n+ self.resolve_expr_t(chunk, qnames)?;\n }\n Ok(())\n }\n hir::Expr::Dummy(chunks) => {\n for chunk in chunks.iter_mut() {\n- self.resolve_expr_t(chunk)?;\n+ self.resolve_expr_t(chunk, qnames)?;\n }\n Ok(())\n }\n", "classes.rs": "@@ -117,6 +117,13 @@ impl Context {\n Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_CALL),\n );\n+ complex.register_builtin_py_impl(\n+ FUNDAMENTAL_HASH,\n+ fn0_met(Float, Nat),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNDAMENTAL_HASH),\n+ );\n /* Float */\n let mut float = Self::builtin_mono_class(FLOAT, 2);\n float.register_superclass(Complex, &complex);\n@@ -145,6 +152,12 @@ impl Context {\n Some(FUNC_FROMHEX),\n 53,\n );\n+ float.register_py_builtin(\n+ FUNDAMENTAL_INT,\n+ fn0_met(Float, Int),\n+ Some(FUNDAMENTAL_INT),\n+ 0,\n+ );\n float.register_py_builtin(OP_GT, fn1_met(Float, Float, Bool), Some(OP_GT), 0);\n float.register_py_builtin(OP_GE, fn1_met(Float, Float, Bool), Some(OP_GE), 0);\n float.register_py_builtin(OP_LT, fn1_met(Float, Float, Bool), Some(OP_LT), 0);\n", "mod.rs": "@@ -353,6 +353,8 @@ const OP_NEG: &str = \"__neg__\";\n const FUNDAMENTAL_CALL: &str = \"__call__\";\n const FUNDAMENTAL_NAME: &str = \"__name__\";\n const FUNDAMENTAL_STR: &str = \"__str__\";\n+const FUNDAMENTAL_HASH: &str = \"__hash__\";\n+const FUNDAMENTAL_INT: &str = \"__int__\";\n const FUNDAMENTAL_ITER: &str = \"__iter__\";\n const FUNDAMENTAL_MODULE: &str = \"__module__\";\n const FUNDAMENTAL_SIZEOF: &str = \"__sizeof__\";\n", "inquire.rs": "@@ -1965,6 +1965,32 @@ impl Context {\n concatenated\n }\n \n+ /// Returns the smallest type among the iterators of a given type.\n+ /// If there is no subtype relationship, returns `None`.\n+ /// ```erg\n+ /// min_type([Int, Int]) == Int\n+ /// min_type([Int, Nat]) == Nat\n+ /// min_type([Int, Str]) == None\n+ /// min_type([Int, Str, Nat]) == None\n+ /// ```\n+ pub fn min_type<'a>(&self, types: impl Iterator<Item = &'a Type>) -> Option<&'a Type> {\n+ let mut opt_min = None;\n+ for t in types {\n+ if let Some(min) = opt_min {\n+ if self.subtype_of(min, t) {\n+ continue;\n+ } else if self.subtype_of(t, min) {\n+ opt_min = Some(t);\n+ } else {\n+ return None;\n+ }\n+ } else {\n+ opt_min = Some(t);\n+ }\n+ }\n+ opt_min\n+ }\n+\n pub fn get_nominal_super_type_ctxs<'a>(&'a self, t: &Type) -> Option<Vec<&'a Context>> {\n match t {\n Type::FreeVar(fv) if fv.is_linked() => self.get_nominal_super_type_ctxs(&fv.crack()),\n@@ -2544,51 +2570,46 @@ impl Context {\n }\n }\n \n+ fn get_attr_type<'m>(\n+ &self,\n+ name: &Identifier,\n+ candidates: &'m [MethodInfo],\n+ ) -> Triple<&'m MethodInfo, TyCheckError> {\n+ let first_method_type = &candidates[0].method_type;\n+ if candidates\n+ .iter()\n+ .skip(1)\n+ .all(|t| &t.method_type == first_method_type)\n+ {\n+ Triple::Ok(&candidates[0])\n+ } else if let Some(min) = self.min_type(candidates.iter().map(|mi| &mi.definition_type)) {\n+ let min_info = candidates\n+ .iter()\n+ .find(|mi| &mi.definition_type == min)\n+ .unwrap();\n+ Triple::Ok(min_info)\n+ } else {\n+ Triple::Err(TyCheckError::ambiguous_type_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ name,\n+ &candidates\n+ .iter()\n+ .map(|t| t.definition_type.clone())\n+ .collect::<Vec<_>>(),\n+ self.caused_by(),\n+ ))\n+ }\n+ }\n+\n /// Infer the receiver type from the attribute name.\n /// Returns an error if multiple candidates are found. If nothing is found, returns None.\n fn get_attr_type_by_name(&self, name: &Identifier) -> Triple<&MethodInfo, TyCheckError> {\n- // TODO: min_by\n if let Some(candidates) = self.method_to_traits.get(name.inspect()) {\n- let first_method_type = &candidates.first().unwrap().method_type;\n- if candidates\n- .iter()\n- .skip(1)\n- .all(|t| &t.method_type == first_method_type)\n- {\n- return Triple::Ok(&candidates[0]);\n- } else {\n- return Triple::Err(TyCheckError::ambiguous_type_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- name,\n- &candidates\n- .iter()\n- .map(|t| t.definition_type.clone())\n- .collect::<Vec<_>>(),\n- self.caused_by(),\n- ));\n- }\n+ return self.get_attr_type(name, candidates);\n }\n if let Some(candidates) = self.method_to_classes.get(name.inspect()) {\n- let first_method_type = &candidates.first().unwrap().method_type;\n- if candidates\n- .iter()\n- .skip(1)\n- .all(|t| &t.method_type == first_method_type)\n- {\n- return Triple::Ok(&candidates[0]);\n- } else {\n- return Triple::Err(TyCheckError::ambiguous_type_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- name,\n- &candidates\n- .iter()\n- .map(|t| t.definition_type.clone())\n- .collect::<Vec<_>>(),\n- self.caused_by(),\n- ));\n- }\n+ return self.get_attr_type(name, candidates);\n }\n if let Some(outer) = self.get_outer().or_else(|| self.get_builtins()) {\n outer.get_attr_type_by_name(name)\n", "_erg_int.py": "@@ -66,6 +66,8 @@ class IntMut: # inherits Int\n \n def __init__(self, i):\n self.value = Int(i)\n+ def __int__(self):\n+ return self.value.__int__()\n \n def __repr__(self):\n return self.value.__repr__()\n", "_erg_nat.py": "@@ -40,6 +40,9 @@ class NatMut(IntMut): # and Nat\n def __init__(self, n: Nat):\n self.value = n\n \n+ def __int__(self):\n+ return self.value.__int__()\n+\n def __repr__(self):\n return self.value.__repr__()\n \n"}
refactor: improved some path generator code
c1ef8c65228199999bf4330f47a92d37c6316328
refactor
https://github.com/tsparticles/tsparticles/commit/c1ef8c65228199999bf4330f47a92d37c6316328
improved some path generator code
{"Container.ts": "@@ -292,19 +292,11 @@ export class Container {\n } else {\n const oldGenerator = this.pathGenerator;\n \n- this.pathGenerator = pathOrGenerator || {};\n+ this.pathGenerator = pathOrGenerator;\n \n- if (!pathOrGenerator.generate) {\n- this.pathGenerator.generate = oldGenerator.generate;\n- }\n-\n- if (!pathOrGenerator.init) {\n- this.pathGenerator.init = oldGenerator.init;\n- }\n-\n- if (!pathOrGenerator.update) {\n- this.pathGenerator.update = oldGenerator.update;\n- }\n+ this.pathGenerator.generate ||= oldGenerator.generate;\n+ this.pathGenerator.init ||= oldGenerator.init;\n+ this.pathGenerator.update ||= oldGenerator.update;\n }\n }\n \n"}
feat: add module `stat`
50136ef6ae302dad67f70974834b164254beef54
feat
https://github.com/erg-lang/erg/commit/50136ef6ae302dad67f70974834b164254beef54
add module `stat`
{"__init__.d.er": "@@ -8,6 +8,7 @@ The name of the operating system dependent module imported. The following names\n .name: Str\n \n .chdir!: (path: PathLike, ) => NoneType\n+.chmod!: (path: PathLike, mode: Nat) => NoneType\n .getcwd!: () => Str\n .getenv!: (key: Str, default: Str or NoneType := NoneType) => Str\n .listdir!: (path := PathLike,) => [Str; _]\n", "pathlib.d.er": "@@ -1,7 +1,37 @@\n .PurePath: ClassType\n-.PurePath.parts: [Str; _]\n+.PurePath.\n+ parts: [Str; _]\n+ drive: Str\n+ root: Str\n+ anchor: Str\n+ parents: [.PurePath; _]\n+ parent: .PurePath\n+ name: Str\n+ suffix: Str\n+ suffixes: [Str; _]\n+ stem: Str\n+ __call__: (*segments: Str) -> .PurePath\n+ as_posix: (self: .PurePath) -> Str\n+ as_uri: (self: .PurePath) -> Str\n+ is_absolute: (self: .PurePath) -> Bool\n+ is_relative_to: (self: .PurePath, *other: .PurePath) -> Bool\n+ is_reserved: (self: .PurePath) -> Bool\n+ joinpath: (self: .PurePath, *other: .PurePath) -> .PurePath\n+ match: (self: .PurePath, pattern: Str) -> Bool\n+ relative_to: (self: .PurePath, *other: .PurePath) -> .PurePath\n+ with_name: (self: .PurePath, name: Str) -> .PurePath\n+ with_stem: (self: .PurePath, suffix: Str) -> .PurePath\n+ with_suffix: (self: .PurePath, suffix: Str) -> .PurePath\n .PurePosixPath: ClassType\n .PureWindowsPath: ClassType\n .Path: ClassType\n+.Path <: .PurePath\n+.Path.\n+ __call__: (*segments: Str) -> .Path\n+ cwd!: () => .Path\n+ home!: () => .Path\n+ samefile!: (self: .Path, other: .Path) => Bool\n+ open!: (self: .Path, mode := Str) => File!\n+ chmod!: (self: .Path, mode: Nat) => NoneType\n .PosixPath: ClassType\n .WindowsPath: ClassType\n", "stat.d.er": "@@ -0,0 +1,88 @@\n+.ST_MMODE: {0}\n+.ST_INO: {1}\n+.ST_DEV: {2}\n+.ST_NLINK: {3}\n+.ST_UID: {4}\n+.ST_GID: {5}\n+.ST_SIZE: {6}\n+.ST_ATIME: {7}\n+.ST_MTIME: {8}\n+.ST_CTIME: {9}\n+\n+.S_IMODE: (mode: Nat) -> Nat\n+.S_IFMT: (mode: Nat) -> Nat\n+\n+.S_IFDIR: {0o04000}\n+.S_IFCHR: {0o02000}\n+.S_IFBLK: {0o06000}\n+.S_IFREG: {0o10000}\n+.S_IFIFO: {0o01000}\n+.S_IFLNK: {0o12000}\n+.S_IFSOCK: {0o14000}\n+.S_IFDOOR: {0}\n+.S_IFPORT: {0}\n+.S_IFWHT: {0}\n+\n+.S_ISDIR: (mode: Nat) -> Bool\n+.S_ISCHR: (mode: Nat) -> Bool\n+.S_ISBLK: (mode: Nat) -> Bool\n+.S_ISREG: (mode: Nat) -> Bool\n+.S_ISFIFO: (mode: Nat) -> Bool\n+.S_ISLNK: (mode: Nat) -> Bool\n+.S_ISSOCK: (mode: Nat) -> Bool\n+.S_ISDOOR: (mode: Nat) -> Bool\n+.S_ISPORT: (mode: Nat) -> Bool\n+.S_ISWHT: (mode: Nat) -> Bool\n+\n+.S_ISUID: {0o4000}\n+.S_ISGID: {0o2000}\n+.S_ENFMT: {0o2000}\n+.S_ISVTX: {0o1000}\n+.S_IREAD: {0o0400}\n+.S_IWRITE: {0o0200}\n+.S_IEXEC: {0o0100}\n+.S_IRWXU: {0o0700}\n+.S_IRUSR: {0o0400}\n+.S_IWUSR: {0o0200}\n+.S_IXUSR: {0o0100}\n+.S_IRWXG: {0o0070}\n+.S_IRGRP: {0o0040}\n+.S_IWGRP: {0o0020}\n+.S_IXGRP: {0o0010}\n+.S_IRWXO: {0o0007}\n+.S_IROTH: {0o0004}\n+.S_IWOTH: {0o0002}\n+.S_IXOTH: {0o0001}\n+\n+.UF_NODUMP: {0x00000001}\n+.UF_IMMUTABLE: {0x00000002}\n+.UF_APPEND: {0x00000004}\n+.UF_OPAQUE: {0x00000008}\n+.UF_NOUNLINK: {0x00000010}\n+.UF_COMPRESSED: {0x00000020}\n+.UF_HIDDEN: {0x00008000}\n+.SF_ARCHIVED: {0x00010000}\n+.SF_IMMUTABLE: {0x00020000}\n+.SF_APPEND: {0x00040000}\n+.SF_NOUNLINK: {0x00100000}\n+.SF_SNAPSHOT: {0x00200000}\n+\n+.filemode: (mode: Nat) -> Str\n+\n+.FILE_ATTRIBUTE_ARCHIVE: {32}\n+.FILE_ATTRIBUTE_COMPRESSED: {2048}\n+.FILE_ATTRIBUTE_DEVICE: {64}\n+.FILE_ATTRIBUTE_DIRECTORY: {16}\n+.FILE_ATTRIBUTE_ENCRYPTED: {16384}\n+.FILE_ATTRIBUTE_HIDDEN: {2}\n+.FILE_ATTRIBUTE_INTEGRITY_STREAM: {32768}\n+.FILE_ATTRIBUTE_NORMAL: {128}\n+.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED: {8192}\n+.FILE_ATTRIBUTE_NO_SCRUB_DATA: {131072}\n+.FILE_ATTRIBUTE_OFFLINE: {4096}\n+.FILE_ATTRIBUTE_READONLY: {1}\n+.FILE_ATTRIBUTE_REPARSE_POINT: {1024}\n+.FILE_ATTRIBUTE_SPARSE_FILE: {512}\n+.FILE_ATTRIBUTE_SYSTEM: {4}\n+.FILE_ATTRIBUTE_TEMPORARY: {256}\n+.FILE_ATTRIBUTE_VIRTUAL: {65536}\n"}
perf(sql): optimize diffing M:N collection state In this particular case, the diffing added ~800ms that were caused by a comparison of 2000 collections represented by their PKs in the form of arrays. The comparison was done via `Utils.equals()` which is completely generic. Now we use an optimized version of `compareArray()` method, which checks scalar values by `===` instead. As a result, the diffing went from ~800ms down to ~30ms. Related: #5627
f46e7c86e29727b57f3220901ac5b14a6f1719c1
perf
https://github.com/mikro-orm/mikro-orm/commit/f46e7c86e29727b57f3220901ac5b14a6f1719c1
optimize diffing M:N collection state In this particular case, the diffing added ~800ms that were caused by a comparison of 2000 collections represented by their PKs in the form of arrays. The comparison was done via `Utils.equals()` which is completely generic. Now we use an optimized version of `compareArray()` method, which checks scalar values by `===` instead. As a result, the diffing went from ~800ms down to ~30ms. Related: #5627
{"AbstractSqlDriver.ts": "@@ -821,6 +821,27 @@ export abstract class AbstractSqlDriver<Connection extends AbstractSqlConnection\n return this.rethrow(qb.execute('run', false));\n }\n \n+ /**\n+ * Fast comparison for collection snapshots that are represented by PK arrays.\n+ * Compares scalars via `===` and fallbacks to Utils.equals()` for more complex types like Buffer.\n+ * Always expects the same length of the arrays, since we only compare PKs of the same entity type.\n+ */\n+ private comparePrimaryKeyArrays(a: unknown[], b: unknown[]) {\n+ for (let i = a.length; i-- !== 0;) {\n+ if (['number', 'string', 'bigint', 'boolean'].includes(typeof a[i])) {\n+ if (a[i] !== b[i]) {\n+ return false;\n+ }\n+ } else {\n+ if (!Utils.equals(a[i], b[i])) {\n+ return false;\n+ }\n+ }\n+ }\n+\n+ return true;\n+ }\n+\n override async syncCollections<T extends object, O extends object>(collections: Iterable<Collection<T, O>>, options?: DriverMethodOptions): Promise<void> {\n const groups = {} as Dictionary<PivotCollectionPersister<any>>;\n \n@@ -829,7 +850,7 @@ export abstract class AbstractSqlDriver<Connection extends AbstractSqlConnection\n const meta = wrapped.__meta;\n const pks = wrapped.getPrimaryKeys(true)!;\n const snap = coll.getSnapshot();\n- const includes = <T>(arr: T[], item: T) => !!arr.find(i => Utils.equals(i, item));\n+ const includes = <T>(arr: T[][], item: T[]) => !!arr.find(i => this.comparePrimaryKeyArrays(i, item));\n const snapshot = snap ? snap.map(item => helper(item).getPrimaryKeys(true)!) : [];\n const current = coll.getItems(false).map(item => helper(item).getPrimaryKeys(true)!);\n const deleteDiff = snap ? snapshot.filter(item => !includes(current, item)) : true;\n@@ -840,8 +861,14 @@ export abstract class AbstractSqlDriver<Connection extends AbstractSqlConnection\n // wrong order if we just delete and insert to the end (only owning sides can have fixed order)\n if (coll.property.owner && coll.property.fixedOrder && !equals && Array.isArray(deleteDiff)) {\n deleteDiff.length = insertDiff.length = 0;\n- deleteDiff.push(...snapshot);\n- insertDiff.push(...current);\n+\n+ for (const item of snapshot) {\n+ deleteDiff.push(item);\n+ }\n+\n+ for (const item of current) {\n+ insertDiff.push(item);\n+ }\n }\n \n if (coll.property.kind === ReferenceKind.ONE_TO_MANY) {\n", "GH1930.test.ts": "@@ -1,6 +1,7 @@\n import { v4, parse, stringify } from 'uuid';\n import { Collection, Entity, ManyToMany, ManyToOne, PrimaryKey, Property, ref, Ref, Type } from '@mikro-orm/core';\n import { MikroORM } from '@mikro-orm/mysql';\n+import { mockLogger } from '../../helpers';\n \n export class UuidBinaryType extends Type<string, Buffer> {\n \n@@ -92,6 +93,15 @@ describe('GH issue 1930', () => {\n expect(a1.fields[0].id).toBe(a.fields[0].id);\n expect(a1.fields[1].id).toBe(a.fields[1].id);\n expect(a1.fields[2].id).toBe(a.fields[2].id);\n+\n+ a1.fields.set([a1.fields[0], new B('b4'), new B('b5'), new B('b6')]);\n+ const mock = mockLogger(orm);\n+ await orm.em.flush();\n+ expect(mock.mock.calls[0][0]).toMatch('begin');\n+ expect(mock.mock.calls[1][0]).toMatch(/insert into `b` .* 3 rows affected/); // created 3 new B entities\n+ expect(mock.mock.calls[2][0]).toMatch(/delete from `a_fields` .* 2 rows affected/); // removed 2 old items\n+ expect(mock.mock.calls[3][0]).toMatch(/insert into `a_fields` .* 3 rows affected/); // added 3 new items\n+ expect(mock.mock.calls[4][0]).toMatch('commit');\n });\n \n });\n", "GH5627.test.ts": "@@ -63,7 +63,6 @@ test('basic CRUD example', async () => {\n const newBs = getRange(2001, 1001).map(i => em.create(B, { id: i }));\n await em.persistAndFlush(newBs);\n \n- a.b.remove(bs);\n- a.b.add(newBs);\n+ a.b.set(newBs);\n await em.persistAndFlush(a);\n });\n"}
refactor(core): `PrimaryKeyType` symbol should be defined as optional BREAKING CHANGE: Previously when we had nonstandard PK types, we could use `PrimaryKeyType` symbol to let the type system know it. It was required to define this property as required, now it can be defined as optional too.
db0b399da133f7ca04c73347b1bd1a01c3c88001
refactor
https://github.com/mikro-orm/mikro-orm/commit/db0b399da133f7ca04c73347b1bd1a01c3c88001
`PrimaryKeyType` symbol should be defined as optional BREAKING CHANGE: Previously when we had nonstandard PK types, we could use `PrimaryKeyType` symbol to let the type system know it. It was required to define this property as required, now it can be defined as optional too.
{"composite-keys.md": "@@ -33,7 +33,7 @@ export class Car {\n @PrimaryKey()\n year: number;\n \n- [PrimaryKeyType]: [string, number]; // this is needed for proper type checks in `FilterQuery`\n+ [PrimaryKeyType]?: [string, number]; // this is needed for proper type checks in `FilterQuery`\n \n constructor(name: string, year: number) {\n this.name = name;\n@@ -120,7 +120,7 @@ export class ArticleAttribute {\n @Property()\n value!: string;\n \n- [PrimaryKeyType]: [number, string]; // this is needed for proper type checks in `FilterQuery`\n+ [PrimaryKeyType]?: [number, string]; // this is needed for proper type checks in `FilterQuery`\n \n constructor(name: string, value: string, article: Article) {\n this.attribute = name;\n@@ -155,7 +155,7 @@ export class Address {\n @OneToOne({ primary: true })\n user!: User;\n \n- [PrimaryKeyType]: number; // this is needed for proper type checks in `FilterQuery`\n+ [PrimaryKeyType]?: number; // this is needed for proper type checks in `FilterQuery`\n \n }\n ```\n@@ -223,7 +223,7 @@ export class OrderItem {\n @Property()\n offeredPrice: number;\n \n- [PrimaryKeyType]: [number, number]; // this is needed for proper type checks in `FilterQuery`\n+ [PrimaryKeyType]?: [number, number]; // this is needed for proper type checks in `FilterQuery`\n \n constructor(order: Order, product: Product, amount = 1) {\n this.order = order;\n", "upgrading-v4-to-v5.md": "@@ -224,3 +224,16 @@ const a = await em.find(Author, { books: [1, 2, 3] }, {\n populateWhere: PopulateHint.INFER,\n });\n ```\n+\n+## `em.create()` respects required properties\n+\n+`em.create()` will now require you to pass all non-optional properties. Some \n+properties might be defined as required for TS, but we have a default value for \n+them (either runtime, or database one) - for such we can use `OptionalProps` \n+symbol to specify which properties should be considered as optional.\n+\n+## `PrimaryKeyType` symbol should be defined as optional\n+\n+Previously when we had nonstandard PK types, we could use `PrimaryKeyType` symbol\n+to let the type system know it. It was required to define this property as \n+required, now it can be defined as optional too.\n", "EntityManager.ts": "@@ -32,7 +32,7 @@ export class EntityManager<D extends IDatabaseDriver = IDatabaseDriver> {\n private readonly unitOfWork: UnitOfWork = new UnitOfWork(this);\n private readonly entityFactory: EntityFactory = new EntityFactory(this.unitOfWork, this);\n private readonly resultCache = this.config.getResultCacheAdapter();\n- private filters: Dictionary<FilterDef<any>> = {};\n+ private filters: Dictionary<FilterDef> = {};\n private filterParams: Dictionary<Dictionary> = {};\n private transactionContext?: Transaction;\n private flushMode?: FlushMode;\n@@ -187,8 +187,8 @@ export class EntityManager<D extends IDatabaseDriver = IDatabaseDriver> {\n /**\n * Registers global filter to this entity manager. Global filters are enabled by default (unless disabled via last parameter).\n */\n- addFilter(name: string, cond: FilterQuery<AnyEntity> | ((args: Dictionary) => FilterQuery<AnyEntity>), entityName?: EntityName<AnyEntity> | EntityName<AnyEntity>[], enabled = true): void {\n- const options: FilterDef<AnyEntity> = { name, cond, default: enabled };\n+ addFilter(name: string, cond: Dictionary | ((args: Dictionary) => FilterQuery<AnyEntity>), entityName?: EntityName<AnyEntity> | EntityName<AnyEntity>[], enabled = true): void {\n+ const options: FilterDef = { name, cond, default: enabled };\n \n if (entityName) {\n options.entity = Utils.asArray(entityName).map(n => Utils.className(n));\n@@ -251,7 +251,7 @@ export class EntityManager<D extends IDatabaseDriver = IDatabaseDriver> {\n */\n async applyFilters<T extends AnyEntity<T>>(entityName: string, where: FilterQuery<T>, options: Dictionary<boolean | Dictionary> | string[] | boolean, type: 'read' | 'update' | 'delete'): Promise<FilterQuery<T>> {\n const meta = this.metadata.find<T>(entityName);\n- const filters: FilterDef<any>[] = [];\n+ const filters: FilterDef[] = [];\n const ret: Dictionary[] = [];\n \n if (!meta) {\n@@ -259,7 +259,7 @@ export class EntityManager<D extends IDatabaseDriver = IDatabaseDriver> {\n }\n \n const active = new Set<string>();\n- const push = (source: Dictionary<FilterDef<any>>) => {\n+ const push = (source: Dictionary<FilterDef>) => {\n const activeFilters = QueryHelper\n .getActiveFilters(entityName, options, source)\n .filter(f => !active.has(f.name));\n", "Filter.ts": "@@ -1,10 +1,10 @@\n import { MetadataStorage } from '../metadata';\n import type { Dictionary, FilterDef } from '../typings';\n \n-export function Filter<T>(options: FilterDef<T>) {\n+export function Filter<T>(options: FilterDef) {\n return function <U>(target: U & Dictionary) {\n const meta = MetadataStorage.getMetadataFromDecorator(target);\n- meta.filters[options.name] = options as unknown as FilterDef<U>;\n+ meta.filters[options.name] = options;\n \n return target;\n };\n", "typings.ts": "@@ -30,7 +30,7 @@ export const PrimaryKeyProp = Symbol('PrimaryKeyProp');\n export const OptionalProps = Symbol('OptionalProps');\n \n type ReadonlyPrimary<T> = T extends any[] ? Readonly<T> : T;\n-export type Primary<T> = T extends { [PrimaryKeyType]: infer PK } // TODO `PrimaryKeyType` should be optional\n+export type Primary<T> = T extends { [PrimaryKeyType]?: infer PK }\n ? ReadonlyPrimary<PK> : T extends { _id: infer PK }\n ? ReadonlyPrimary<PK> | string : T extends { uuid: infer PK }\n ? ReadonlyPrimary<PK> : T extends { id: infer PK }\n@@ -73,14 +73,12 @@ export type OperatorMap<T> = {\n \n export type FilterValue2<T> = T | ExpandScalar<T> | Primary<T>;\n export type FilterValue<T> = OperatorMap<FilterValue2<T>> | FilterValue2<T> | FilterValue2<T>[] | null;\n-// eslint-disable-next-line @typescript-eslint/ban-types\n type ExpandObject<T> = T extends object\n ? T extends Scalar\n ? never\n : { [K in keyof T]?: Query<ExpandProperty<T[K]>> | FilterValue<ExpandProperty<T[K]>> | null }\n : never;\n \n-// eslint-disable-next-line @typescript-eslint/ban-types\n export type Query<T> = T extends object\n ? T extends Scalar\n ? never\n@@ -433,7 +431,7 @@ export interface EntityMetadata<T extends AnyEntity<T> = any> {\n class: Constructor<T>;\n abstract: boolean;\n useCache: boolean;\n- filters: Dictionary<FilterDef<T>>;\n+ filters: Dictionary<FilterDef>;\n comment?: string;\n selfReferencing?: boolean;\n readonly?: boolean;\n@@ -534,9 +532,9 @@ export interface MigrationObject {\n class: Constructor<Migration>;\n }\n \n-export type FilterDef<T extends AnyEntity<T>> = {\n+export type FilterDef = {\n name: string;\n- cond: FilterQuery<T> | ((args: Dictionary, type: 'read' | 'update' | 'delete', em: any) => FilterQuery<T> | Promise<FilterQuery<T>>);\n+ cond: Dictionary | ((args: Dictionary, type: 'read' | 'update' | 'delete', em: any) => Dictionary | Promise<Dictionary>);\n default?: boolean;\n entity?: string[];\n args?: boolean;\n@@ -558,7 +556,6 @@ type StringKeys<T> = T extends Collection<any>\n ? `${Exclude<keyof ExtractType<T>, symbol>}`\n : T extends Reference<any>\n ? `${Exclude<keyof ExtractType<T>, symbol>}`\n- // eslint-disable-next-line @typescript-eslint/ban-types\n : T extends object\n ? `${Exclude<keyof ExtractType<T>, symbol>}`\n : never;\n", "Configuration.ts": "@@ -399,7 +399,7 @@ export interface MikroORMOptions<D extends IDatabaseDriver = IDatabaseDriver> ex\n entities: (string | EntityClass<AnyEntity> | EntityClassGroup<AnyEntity> | EntitySchema<any>)[]; // `any` required here for some TS weirdness\n entitiesTs: (string | EntityClass<AnyEntity> | EntityClassGroup<AnyEntity> | EntitySchema<any>)[]; // `any` required here for some TS weirdness\n subscribers: EventSubscriber[];\n- filters: Dictionary<{ name?: string } & Omit<FilterDef<AnyEntity>, 'name'>>;\n+ filters: Dictionary<{ name?: string } & Omit<FilterDef, 'name'>>;\n discovery: {\n warnWhenNoEntities?: boolean;\n requireEntitiesArray?: boolean;\n", "QueryHelper.ts": "@@ -175,7 +175,7 @@ export class QueryHelper {\n }, {} as ObjectQuery<T>);\n }\n \n- static getActiveFilters(entityName: string, options: Dictionary<boolean | Dictionary> | string[] | boolean, filters: Dictionary<FilterDef<any>>): FilterDef<any>[] {\n+ static getActiveFilters(entityName: string, options: Dictionary<boolean | Dictionary> | string[] | boolean, filters: Dictionary<FilterDef>): FilterDef[] {\n if (options === false) {\n return [];\n }\n@@ -196,7 +196,7 @@ export class QueryHelper {\n });\n }\n \n- static isFilterActive(entityName: string, filterName: string, filter: FilterDef<any>, options: Dictionary<boolean | Dictionary>): boolean {\n+ static isFilterActive(entityName: string, filterName: string, filter: FilterDef, options: Dictionary<boolean | Dictionary>): boolean {\n if (filter.entity && !filter.entity.includes(entityName)) {\n return false;\n }\n", "QueryBuilder.ts": "@@ -1,7 +1,7 @@\n import type { Knex } from 'knex';\n import type {\n AnyEntity, Dictionary, EntityData, EntityMetadata, EntityProperty, FlatQueryOrderMap,\n- GroupOperator, MetadataStorage, PopulateOptions, QBFilterQuery, QueryOrderMap, QueryResult, FlushMode,\n+ GroupOperator, MetadataStorage, PopulateOptions, QBFilterQuery, QueryOrderMap, QueryResult, FlushMode, FilterQuery,\n } from '@mikro-orm/core';\n import { LoadStrategy, LockMode, QueryFlag, QueryHelper, ReferenceType, Utils, ValidationError } from '@mikro-orm/core';\n import { QueryType } from './enums';\n@@ -185,7 +185,7 @@ export class QueryBuilder<T extends AnyEntity<T> = AnyEntity> {\n cond = { [`(${cond})`]: Utils.asArray(params) };\n operator = operator || '$and';\n } else {\n- cond = QueryHelper.processWhere(cond, this.entityName, this.metadata, this.platform, this.flags.has(QueryFlag.CONVERT_CUSTOM_TYPES))!;\n+ cond = QueryHelper.processWhere(cond, this.entityName, this.metadata, this.platform, this.flags.has(QueryFlag.CONVERT_CUSTOM_TYPES)) as FilterQuery<T>;\n }\n \n const op = operator || params as keyof typeof GroupOperator;\n", "EntityManager.mongo.test.ts": "@@ -530,7 +530,7 @@ describe('EntityManagerMongo', () => {\n \n const conn = driver.getConnection();\n const ctx = await conn.begin();\n- const first = await driver.nativeInsert(Publisher.name, { name: 'test 123', type: 'GLOBAL' }, { ctx });\n+ const first = await driver.nativeInsert<Publisher>(Publisher.name, { name: 'test 123', type: PublisherType.GLOBAL }, { ctx });\n await conn.commit(ctx);\n await driver.nativeUpdate<Publisher>(Publisher.name, first.insertId, { name: 'test 456' });\n await driver.nativeUpdateMany<Publisher>(Publisher.name, [first.insertId], [{ name: 'test 789' }]);\n", "Car2.ts": "@@ -19,7 +19,7 @@ export class Car2 {\n @ManyToMany(() => User2, u => u.cars)\n users = new Collection<User2>(this);\n \n- [PrimaryKeyType]: [string, number];\n+ [PrimaryKeyType]?: [string, number];\n \n constructor(name: string, year: number, price: number) {\n this.name = name;\n", "FooParam2.ts": "@@ -17,7 +17,7 @@ export class FooParam2 {\n @Property({ version: true })\n version!: Date;\n \n- [PrimaryKeyType]: [number, number];\n+ [PrimaryKeyType]?: [number, number];\n [PrimaryKeyProp]?: 'bar' | 'baz';\n \n constructor(bar: FooBar2, baz: FooBaz2, value: string) {\n", "User2.ts": "@@ -23,7 +23,7 @@ export class User2 {\n @OneToOne({ entity: () => Car2, nullable: true })\n favouriteCar?: Car2;\n \n- [PrimaryKeyType]: [string, string];\n+ [PrimaryKeyType]?: [string, string];\n \n constructor(firstName: string, lastName: string) {\n this.firstName = firstName;\n", "GH1079.test.ts": "@@ -14,7 +14,7 @@ class User {\n @Entity()\n class Wallet {\n \n- [PrimaryKeyType]: [string, string];\n+ [PrimaryKeyType]?: [string, string];\n \n @PrimaryKey()\n currencyRef!: string;\n@@ -56,7 +56,7 @@ enum DepositStatus {\n @Entity()\n export class Deposit extends AbstractDeposit<'status'> {\n \n- [PrimaryKeyType]: [string, string, string];\n+ [PrimaryKeyType]?: [string, string, string];\n \n @PrimaryKey()\n txRef!: string;\n", "GH1624.test.ts": "@@ -52,7 +52,7 @@ export class User {\n @OneToMany({ entity: 'UserRole', mappedBy: 'user' })\n userRoles = new Collection<UserRole>(this);\n \n- [PrimaryKeyType]: [string, string];\n+ [PrimaryKeyType]?: [string, string];\n \n constructor(value: Partial<User> = {}) {\n Object.assign(this, value);\n@@ -101,7 +101,7 @@ export class UserRole {\n })\n role!: IdentifiedReference<Role>;\n \n- [PrimaryKeyType]: [string, string, string];\n+ [PrimaryKeyType]?: [string, string, string];\n \n constructor(value: Partial<UserRole> = {}) {\n Object.assign(this, value);\n@@ -155,7 +155,7 @@ export class Site {\n @Property({ columnType: 'varchar' })\n name!: string;\n \n- [PrimaryKeyType]: [string, string, string];\n+ [PrimaryKeyType]?: [string, string, string];\n \n constructor(value: Partial<Site> = {}) {\n Object.assign(this, value);\n", "GH1914.test.ts": "@@ -43,7 +43,7 @@ export class SiteCategory {\n @ManyToOne({ entity: () => Category, primary: true })\n category!: Category;\n \n- [PrimaryKeyType]: [number, number];\n+ [PrimaryKeyType]?: [number, number];\n \n }\n \n", "composite-keys.sqlite.test.ts": "@@ -51,7 +51,7 @@ export class FooParam2 {\n @Property({ version: true })\n version!: Date;\n \n- [PrimaryKeyType]: [number, number];\n+ [PrimaryKeyType]?: [number, number];\n \n constructor(bar: FooBar2, baz: FooBaz2, value: string) {\n this.bar = bar;\n@@ -155,7 +155,7 @@ export class Car2 {\n @ManyToMany('User2', 'cars')\n users = new Collection<User2>(this);\n \n- [PrimaryKeyType]: [string, number];\n+ [PrimaryKeyType]?: [string, number];\n \n constructor(name: string, year: number, price: number) {\n this.name = name;\n@@ -186,7 +186,7 @@ export class User2 {\n @OneToOne({ entity: () => Car2, nullable: true })\n favouriteCar?: Car2;\n \n- [PrimaryKeyType]: [string, string];\n+ [PrimaryKeyType]?: [string, string];\n \n constructor(firstName: string, lastName: string) {\n this.firstName = firstName;\n", "GH446.test.ts": "@@ -44,7 +44,7 @@ class C {\n @OneToOne({ primary: true })\n b!: B;\n \n- [PrimaryKeyType]: B | A | string;\n+ [PrimaryKeyType]?: B | A | string;\n \n }\n \n", "GH1111.test.ts": "@@ -14,7 +14,7 @@ class Node {\n @Entity()\n class A {\n \n- [PrimaryKeyType]: number;\n+ [PrimaryKeyType]?: number;\n [PrimaryKeyProp]: 'node';\n @OneToOne({ entity: () => Node, wrappedReference: true, primary: true, onDelete: 'cascade', onUpdateIntegrity: 'cascade' })\n node!: IdentifiedReference<Node>;\n", "GH1224.test.ts": "@@ -26,7 +26,7 @@ class B {\n @Entity()\n class A {\n \n- [PrimaryKeyType]: number;\n+ [PrimaryKeyType]?: number;\n [PrimaryKeyProp]: 'node';\n @OneToOne({ entity: 'Node', wrappedReference: true, primary: true, onDelete: 'cascade', onUpdateIntegrity: 'cascade' })\n node!: IdentifiedReference<Node>;\n", "GH1902.test.ts": "@@ -55,7 +55,7 @@ class UserTenantEntity {\n @ManyToOne({ primary: true, entity: () => TenantEntity, fieldName: 'tenantId', cascade: [] })\n tenant!: TenantEntity;\n \n- [PrimaryKeyType]: [number, number];\n+ [PrimaryKeyType]?: [number, number];\n [OptionalProps]?: 'isActive';\n \n @Property({ type: 'boolean', fieldName: 'isActive' })\n", "GH2648.test.ts": "@@ -15,7 +15,7 @@ export class A {\n @Entity()\n export class B1 {\n \n- [PrimaryKeyType]: number;\n+ [PrimaryKeyType]?: number;\n @ManyToOne({ entity: () => A, primary: true, wrappedReference: true })\n a!: IdentifiedReference<A>;\n \n@@ -27,7 +27,7 @@ export class B2 {\n @PrimaryKey()\n id!: number;\n \n- [PrimaryKeyType]: number;\n+ [PrimaryKeyType]?: number;\n @OneToOne({ entity: () => A, primary: true, wrappedReference: true })\n a!: IdentifiedReference<A>;\n \n@@ -36,7 +36,7 @@ export class B2 {\n @Entity()\n export class B3 {\n \n- [PrimaryKeyType]: number;\n+ [PrimaryKeyType]?: number;\n @OneToOne({ entity: () => A, primary: true, wrappedReference: true })\n a!: IdentifiedReference<A>;\n \n@@ -48,7 +48,7 @@ export class B4 {\n @PrimaryKey()\n id!: number;\n \n- [PrimaryKeyType]: number;\n+ [PrimaryKeyType]?: number;\n @OneToOne({ entity: () => A, primary: true, wrappedReference: true })\n a!: IdentifiedReference<A>;\n \n", "GH529.test.ts": "@@ -70,7 +70,7 @@ export class OrderItem {\n @Property()\n offeredPrice: number;\n \n- [PrimaryKeyType]: [number, number]; // this is needed for proper type checks in `FilterQuery`\n+ [PrimaryKeyType]?: [number, number]; // this is needed for proper type checks in `FilterQuery`\n \n constructor(order: Order, product: Product, amount = 1) {\n this.order = order;\n", "GH589.test.ts": "@@ -24,7 +24,7 @@ export class Chat {\n @ManyToOne(() => User, { nullable: true })\n User?: User;\n \n- [PrimaryKeyType]: [number, number];\n+ [PrimaryKeyType]?: [number, number];\n \n constructor(owner: User, recipient: User) {\n this.owner = Reference.create(owner);\n", "GH910.test.ts": "@@ -65,7 +65,7 @@ export class CartItem {\n @PrimaryKey({ type: SkuType })\n readonly sku: Sku;\n \n- [PrimaryKeyType]: [string, string];\n+ [PrimaryKeyType]?: [string, string];\n \n @Property()\n quantity: number;\n", "GH915.test.ts": "@@ -11,7 +11,7 @@ export class A {\n @Entity()\n export class B {\n \n- [PrimaryKeyType]: number;\n+ [PrimaryKeyType]?: number;\n \n @OneToOne({ primary: true, cascade: [] })\n object!: A;\n", "types.test.ts": "@@ -18,7 +18,7 @@ describe('check typings', () => {\n assert<IsExact<Primary<Author2>, string>>(false);\n \n // PrimaryKeyType symbol has priority\n- type Test = { _id: ObjectId; id: string; uuid: number; [PrimaryKeyType]: Date };\n+ type Test = { _id: ObjectId; id: string; uuid: number; [PrimaryKeyType]?: Date };\n assert<IsExact<Primary<Test>, Date>>(true);\n assert<IsExact<Primary<Test>, ObjectId>>(false);\n assert<IsExact<Primary<Test>, string>>(false);\n"}
docs: fill out table API with working examples
16fc8befaf639bbce1660fce7809c28122696bf2
docs
https://github.com/ibis-project/ibis/commit/16fc8befaf639bbce1660fce7809c28122696bf2
fill out table API with working examples
{"ibis-main.yml": "@@ -155,3 +155,52 @@ jobs:\n \n - name: check shapely and duckdb imports\n run: poetry run python -c 'import shapely.geometry, duckdb'\n+\n+ test_doctests:\n+ name: Doctests\n+ runs-on: ${{ matrix.os }}\n+ strategy:\n+ fail-fast: false\n+ matrix:\n+ os:\n+ - ubuntu-latest\n+ python-version:\n+ - \"3.11\"\n+ steps:\n+ - name: install system dependencies\n+ run: |\n+ set -euo pipefail\n+\n+ sudo apt-get update -y -q\n+ sudo apt-get install -y -q build-essential graphviz libgeos-dev libkrb5-dev\n+\n+ - name: checkout\n+ uses: actions/checkout@v3\n+\n+ - name: install python\n+ uses: actions/setup-python@v4\n+ id: install_python\n+ with:\n+ python-version: ${{ matrix.python-version }}\n+\n+ - uses: syphar/restore-pip-download-cache@v1\n+ with:\n+ requirement_files: poetry.lock\n+ custom_cache_key_element: doctests-${{ steps.install_python.outputs.python-version }}\n+\n+ - run: python -m pip install --upgrade pip 'poetry<1.4'\n+\n+ - uses: syphar/restore-virtualenv@v1\n+ with:\n+ requirement_files: poetry.lock\n+ custom_cache_key_element: doctests-${{ steps.install_python.outputs.python-version }}\n+\n+ - name: install ibis with all extras\n+ run: poetry install --without dev --without docs --extras all\n+\n+ - uses: extractions/setup-just@v1\n+ env:\n+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n+\n+ - name: run doctests\n+ run: just doctest\n", "__init__.py": "@@ -60,8 +60,8 @@ ir.Table\n \n Examples\n --------\n->>> from ibis.interactive import *\n->>> t = ex.{name}.fetch()\n+>>> import ibis\n+>>> t = ibis.examples.{name}.fetch()\n \"\"\"\n \n \n", "timecontext.py": "@@ -53,15 +53,16 @@ def combine_time_context(\n \n Examples\n --------\n+ >>> import pandas as pd\n >>> timecontexts = [\n ... (pd.Timestamp('20200102'), pd.Timestamp('20200103')),\n ... (pd.Timestamp('20200101'), pd.Timestamp('20200106')),\n ... (pd.Timestamp('20200109'), pd.Timestamp('20200110')),\n ... ]\n >>> combine_time_context(timecontexts)\n- (pd.Timestamp('20200101'), pd.Timestamp('20200110'))\n+ (Timestamp(...), Timestamp(...))\n >>> timecontexts = [None]\n- >>> combine_time_context(timecontexts)\n+ >>> print(combine_time_context(timecontexts))\n None\n \"\"\"\n begin = min((t[0] for t in timecontexts if t), default=None)\n", "client.py": "@@ -260,13 +260,11 @@ def parse_project_and_dataset(project: str, dataset: str = \"\") -> tuple[str, str\n 'ibis-gbq'\n >>> dataset\n 'my_dataset'\n- >>> data_project, billing_project, dataset = parse_project_and_dataset(\n+ >>> data_project, billing_project, _ = parse_project_and_dataset(\n ... 'ibis-gbq'\n ... )\n >>> data_project\n 'ibis-gbq'\n- >>> print(dataset)\n- None\n \"\"\"\n if dataset.count(\".\") > 1:\n raise ValueError(\n", "find.py": "@@ -46,8 +46,8 @@ def find_names(node: ast.AST) -> list[ast.Name]:\n >>> import ast\n >>> node = ast.parse('a + b')\n >>> names = find_names(node)\n- >>> names # doctest: +ELLIPSIS\n- [<_ast.Name object at 0x...>, <_ast.Name object at 0x...>]\n+ >>> names\n+ [<....Name object at 0x...>, <....Name object at 0x...>]\n >>> names[0].id\n 'a'\n >>> names[1].id\n", "util.py": "@@ -510,11 +510,11 @@ def import_object(qualname: str) -> Any:\n \n Examples\n --------\n- >>> out = import_object(\"foo.bar.baz\")\n+ >>> ex = import_object(\"ibis.examples\")\n \n Is the same as\n \n- >>> from foo.bar import baz\n+ >>> from ibis import examples as ex\n \"\"\"\n mod_name, name = qualname.rsplit(\".\", 1)\n mod = importlib.import_module(mod_name)\n", "aggcontext.py": "@@ -195,7 +195,7 @@ Pandas\n ... 'time': pd.date_range(periods=4, start='now')\n ... })\n >>> sorter = lambda df: df.sort_values('time')\n- >>> gb = df.groupby('key').apply(sorter).reset_index(\n+ >>> gb = df.groupby('key', group_keys=False).apply(sorter).reset_index(\n ... drop=True\n ... ).groupby('key')\n >>> rolling = gb.value.rolling(2)\n", "annotations.py": "@@ -413,7 +413,7 @@ def annotated(_1=None, _2=None, _3=None, **kwargs):\n \n 2. With argument validators passed as keyword arguments\n \n- >>> from ibis.common.validate import instance_of\n+ >>> from ibis.common.validators import instance_of\n >>> @annotated(x=instance_of(int), y=instance_of(str))\n ... def foo(x, y):\n ... return float(x) + float(y)\n", "collections.py": "@@ -38,6 +38,9 @@ class MapSet(Mapping[K, V]):\n ... def __getitem__(self, key):\n ... return self._data[key]\n ...\n+ ... def __repr__(self):\n+ ... return f\"MyMap({repr(self._data)})\"\n+ ...\n >>> m = MyMap(a=1, b=2)\n >>> n = dict(a=1, b=2, c=3)\n >>> m <= n\n", "conftest.py": "@@ -0,0 +1,16 @@\n+import os\n+\n+import pytest\n+\n+import ibis\n+\n+\[email protected](autouse=True)\[email protected](\"doctest_namespace\")\n+def add_ibis(monkeypatch):\n+ # disable color for doctests so we don't have to include\n+ # escape codes in docstrings\n+ monkeypatch.setitem(os.environ, \"NO_COLOR\", \"1\")\n+ # reset interactive mode to False for doctests that don't execute\n+ # expressions\n+ ibis.options.interactive = False\n", "analysis.py": "@@ -141,16 +141,12 @@ def find_immediate_parent_tables(input_node, keep_input=True):\n >>> import ibis, toolz\n >>> t = ibis.table([('a', 'int64')], name='t')\n >>> expr = t.mutate(foo=t.a + 1)\n- >>> result = find_immediate_parent_tables(expr)\n- >>> len(result)\n- 1\n- >>> result[0]\n- r0 := UnboundTable[t]\n- a int64\n- Selection[r0]\n- selections:\n- r0\n- foo: r0.a + 1\n+ >>> result, = find_immediate_parent_tables(expr.op())\n+ >>> result.equals(expr.op())\n+ True\n+ >>> result, = find_immediate_parent_tables(expr.op(), keep_input=False)\n+ >>> result.equals(t.op())\n+ True\n \"\"\"\n assert all(isinstance(arg, ops.Node) for arg in util.promote_list(input_node))\n \n@@ -681,19 +677,19 @@ def flatten_predicate(node):\n >>> import ibis\n >>> t = ibis.table([('a', 'int64'), ('b', 'string')], name='t')\n >>> filt = (t.a == 1) & (t.b == 'foo')\n- >>> predicates = flatten_predicate(filt)\n+ >>> predicates = flatten_predicate(filt.op())\n >>> len(predicates)\n 2\n- >>> predicates[0]\n- r0 := UnboundTable[t]\n+ >>> predicates[0].to_expr().name(\"left\")\n+ r0 := UnboundTable: t\n a int64\n b string\n- r0.a == 1\n- >>> predicates[1]\n- r0 := UnboundTable[t]\n+ left: r0.a == 1\n+ >>> predicates[1].to_expr().name(\"right\")\n+ r0 := UnboundTable: t\n a int64\n b string\n- r0.b == 'foo'\n+ right: r0.b == 'foo'\n \"\"\"\n \n def predicate(node):\n", "api.py": "@@ -222,7 +222,7 @@ def param(type: dt.DataType) -> ir.Scalar:\n predicates:\n r0.timestamp_col >= $(date)\n r0.timestamp_col <= $(date)\n- sum: Sum(r1.value)\n+ Sum(value): Sum(r1.value)\n \"\"\"\n return ops.ScalarParameter(type).to_expr()\n \n@@ -269,7 +269,7 @@ def schema(\n >>> sc = schema(names=['foo', 'bar', 'baz'],\n ... types=['string', 'int64', 'boolean'])\n >>> sc = schema(dict(foo=\"string\"))\n- >>> sc = schema(Schema(['foo'], ['string'])) # no-op\n+ >>> sc = schema(Schema(dict(foo=\"string\"))) # no-op\n \n Returns\n -------\n@@ -304,9 +304,12 @@ def table(\n --------\n Create a table with no data backing it\n \n- >>> t = ibis.table(schema=dict(a=\"int\", b=\"string\"))\n+ >>> import ibis\n+ >>> ibis.options.interactive\n+ False\n+ >>> t = ibis.table(schema=dict(a=\"int\", b=\"string\"), name=\"t\")\n >>> t\n- UnboundTable: unbound_table_0\n+ UnboundTable: t\n a int64\n b string\n \"\"\"\n@@ -453,18 +456,20 @@ def desc(expr: ir.Column | str) -> ir.Value:\n Examples\n --------\n >>> import ibis\n- >>> t = ibis.table(dict(g='string'), name='t')\n- >>> t.group_by('g').size('count').order_by(ibis.desc('count'))\n- r0 := UnboundTable: t\n- g string\n- r1 := Aggregation[r0]\n- metrics:\n- count: Count(t)\n- by:\n- g: r0.g\n- Selection[r1]\n- sort_keys:\n- desc|r1.count\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t[[\"species\", \"year\"]].order_by(ibis.desc(\"year\")).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 year \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 2009 \u2502\n+ \u2502 Adelie \u2502 2009 \u2502\n+ \u2502 Adelie \u2502 2009 \u2502\n+ \u2502 Adelie \u2502 2009 \u2502\n+ \u2502 Adelie \u2502 2009 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n Returns\n -------\n@@ -485,18 +490,20 @@ def asc(expr: ir.Column | str) -> ir.Value:\n Examples\n --------\n >>> import ibis\n- >>> t = ibis.table(dict(g='string'), name='t')\n- >>> t.group_by('g').size('count').order_by(ibis.asc('count'))\n- r0 := UnboundTable: t\n- g string\n- r1 := Aggregation[r0]\n- metrics:\n- count: Count(t)\n- by:\n- g: r0.g\n- Selection[r1]\n- sort_keys:\n- asc|r1.count\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t[[\"species\", \"year\"]].order_by(ibis.asc(\"year\")).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 year \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 2007 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n Returns\n -------\n@@ -794,7 +801,8 @@ def case() -> bl.SearchedCaseBuilder:\n >>> cond1 = ibis.literal(1) == 1\n >>> cond2 = ibis.literal(2) == 1\n >>> expr = ibis.case().when(cond1, 3).when(cond2, 4).end()\n- SearchedCase(cases=(1 == 1, 2 == 1), results=(3, 4)), default=Cast(None, to=int8))\n+ >>> expr\n+ SearchedCase(...)\n \n Returns\n -------\n@@ -849,7 +857,27 @@ def read_csv(sources: str | Path | Sequence[str | Path], **kwargs: Any) -> ir.Ta\n \n Examples\n --------\n- >>> batting = ibis.read_csv(\"ci/ibis-testing-data/batting.csv\")\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.Batting_raw.fetch()\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 playerID \u2503 yearID \u2503 stint \u2503 teamID \u2503 lgID \u2503 G \u2503 AB \u2503 R \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502 int64 \u2502 int64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 abercda01 \u2502 1871 \u2502 1 \u2502 TRO \u2502 NA \u2502 1 \u2502 4 \u2502 0 \u2502 \u2026 \u2502\n+ \u2502 addybo01 \u2502 1871 \u2502 1 \u2502 RC1 \u2502 NA \u2502 25 \u2502 118 \u2502 30 \u2502 \u2026 \u2502\n+ \u2502 allisar01 \u2502 1871 \u2502 1 \u2502 CL1 \u2502 NA \u2502 29 \u2502 137 \u2502 28 \u2502 \u2026 \u2502\n+ \u2502 allisdo01 \u2502 1871 \u2502 1 \u2502 WS3 \u2502 NA \u2502 27 \u2502 133 \u2502 28 \u2502 \u2026 \u2502\n+ \u2502 ansonca01 \u2502 1871 \u2502 1 \u2502 RC1 \u2502 NA \u2502 25 \u2502 120 \u2502 29 \u2502 \u2026 \u2502\n+ \u2502 armstbo01 \u2502 1871 \u2502 1 \u2502 FW1 \u2502 NA \u2502 12 \u2502 49 \u2502 9 \u2502 \u2026 \u2502\n+ \u2502 barkeal01 \u2502 1871 \u2502 1 \u2502 RC1 \u2502 NA \u2502 1 \u2502 4 \u2502 0 \u2502 \u2026 \u2502\n+ \u2502 barnero01 \u2502 1871 \u2502 1 \u2502 BS1 \u2502 NA \u2502 31 \u2502 157 \u2502 66 \u2502 \u2026 \u2502\n+ \u2502 barrebi01 \u2502 1871 \u2502 1 \u2502 FW1 \u2502 NA \u2502 1 \u2502 5 \u2502 1 \u2502 \u2026 \u2502\n+ \u2502 barrofr01 \u2502 1871 \u2502 1 \u2502 BS1 \u2502 NA \u2502 18 \u2502 86 \u2502 13 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n \"\"\"\n from ibis.config import _default_backend\n \n@@ -886,9 +914,9 @@ def read_json(sources: str | Path | Sequence[str | Path], **kwargs: Any) -> ir.T\n ... {\"a\": 2, \"b\": null}\n ... {\"a\": null, \"b\": \"f\"}\n ... '''\n- >>> with open(\"lines.json\", mode=\"w\") as f:\n- ... f.write(lines)\n- >>> t = ibis.read_json(\"lines.json\")\n+ >>> with open(\"/tmp/lines.json\", mode=\"w\") as f:\n+ ... _ = f.write(lines)\n+ >>> t = ibis.read_json(\"/tmp/lines.json\")\n >>> t\n \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n \u2503 a \u2503 b \u2503\n@@ -929,7 +957,27 @@ def read_parquet(sources: str | Path | Sequence[str | Path], **kwargs: Any) -> i\n \n Examples\n --------\n- >>> batting = ibis.read_parquet(\"ci/ibis-testing-data/parquet/batting/batting.parquet\")\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.Batting_raw.fetch()\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 playerID \u2503 yearID \u2503 stint \u2503 teamID \u2503 lgID \u2503 G \u2503 AB \u2503 R \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502 int64 \u2502 int64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 abercda01 \u2502 1871 \u2502 1 \u2502 TRO \u2502 NA \u2502 1 \u2502 4 \u2502 0 \u2502 \u2026 \u2502\n+ \u2502 addybo01 \u2502 1871 \u2502 1 \u2502 RC1 \u2502 NA \u2502 25 \u2502 118 \u2502 30 \u2502 \u2026 \u2502\n+ \u2502 allisar01 \u2502 1871 \u2502 1 \u2502 CL1 \u2502 NA \u2502 29 \u2502 137 \u2502 28 \u2502 \u2026 \u2502\n+ \u2502 allisdo01 \u2502 1871 \u2502 1 \u2502 WS3 \u2502 NA \u2502 27 \u2502 133 \u2502 28 \u2502 \u2026 \u2502\n+ \u2502 ansonca01 \u2502 1871 \u2502 1 \u2502 RC1 \u2502 NA \u2502 25 \u2502 120 \u2502 29 \u2502 \u2026 \u2502\n+ \u2502 armstbo01 \u2502 1871 \u2502 1 \u2502 FW1 \u2502 NA \u2502 12 \u2502 49 \u2502 9 \u2502 \u2026 \u2502\n+ \u2502 barkeal01 \u2502 1871 \u2502 1 \u2502 RC1 \u2502 NA \u2502 1 \u2502 4 \u2502 0 \u2502 \u2026 \u2502\n+ \u2502 barnero01 \u2502 1871 \u2502 1 \u2502 BS1 \u2502 NA \u2502 31 \u2502 157 \u2502 66 \u2502 \u2026 \u2502\n+ \u2502 barrebi01 \u2502 1871 \u2502 1 \u2502 FW1 \u2502 NA \u2502 1 \u2502 5 \u2502 1 \u2502 \u2026 \u2502\n+ \u2502 barrofr01 \u2502 1871 \u2502 1 \u2502 BS1 \u2502 NA \u2502 18 \u2502 86 \u2502 13 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n \"\"\"\n from ibis.config import _default_backend\n \n@@ -947,13 +995,17 @@ def set_backend(backend: str | BaseBackend) -> None:\n \n Examples\n --------\n- May pass the backend as a name:\n+ You can pass the backend as a name:\n+\n+ >>> import ibis\n >>> ibis.set_backend(\"polars\")\n \n- Or as a URI:\n- >>> ibis.set_backend(\"postgres://user:password@hostname:5432\")\n+ Or as a URI\n+\n+ >>> ibis.set_backend(\"postgres://user:password@hostname:5432\") # doctest: +SKIP\n+\n+ Or as an existing backend instance\n \n- Or as an existing backend instance:\n >>> ibis.set_backend(ibis.duckdb.connect())\n \"\"\"\n import ibis\n", "logical.py": "@@ -38,9 +38,9 @@ class BooleanValue(NumericValue):\n >>> import ibis\n >>> t = ibis.table([(\"is_person\", \"boolean\")], name=\"t\")\n >>> expr = t.is_person.ifelse(\"yes\", \"no\")\n- >>> print(ibis.impala.compile(expr))\n- SELECT CASE WHEN `is_person` THEN 'yes' ELSE 'no' END AS `tmp`\n- FROM t\n+ >>> print(ibis.impala.compile(expr.name(\"tmp\")))\n+ SELECT if(t0.`is_person`, 'yes', 'no') AS `tmp`\n+ FROM t t0\n \"\"\"\n # Result will be the result of promotion of true/false exprs. These\n # might be conflicting types; same type resolution as case expressions\n", "schema.py": "@@ -176,9 +176,9 @@ class Schema(Concrete, Coercible, MapSet):\n Examples\n --------\n >>> import ibis\n- >>> first = ibis.Schema.from_dict({\"a\": \"int\", \"b\": \"string\"})\n- >>> second = ibis.Schema.from_dict({\"c\": \"float\", \"d\": \"int16\"})\n- >>> first.merge(second)\n+ >>> first = ibis.Schema({\"a\": \"int\", \"b\": \"string\"})\n+ >>> second = ibis.Schema({\"c\": \"float\", \"d\": \"int16\"})\n+ >>> first.merge(second) # doctest: +SKIP\n ibis.Schema {\n a int64\n b string\n@@ -206,7 +206,7 @@ class Schema(Concrete, Coercible, MapSet):\n Examples\n --------\n >>> import ibis\n- >>> sch = ibis.Schema.from_dict({\"a\": \"int\", \"b\": \"string\"})\n+ >>> sch = ibis.Schema({\"a\": \"int\", \"b\": \"string\"})\n >>> sch.name_at_position(0)\n 'a'\n >>> sch.name_at_position(1)\n", "selectors.py": "@@ -12,19 +12,19 @@ subsequent computation.\n Without selectors this becomes quite verbose and tedious to write:\n \n ```python\n->>> t.select([t[c] for c in t.columns if t[c].type().is_numeric()])\n+>>> t.select([t[c] for c in t.columns if t[c].type().is_numeric()]) # doctest: +SKIP\n ```\n \n Compare that to the [`numeric`][ibis.expr.selectors.numeric] selector:\n \n ```python\n->>> t.select(s.numeric())\n+>>> t.select(s.numeric()) # doctest: +SKIP\n ```\n \n When there are multiple properties to check it gets worse:\n \n ```python\n->>> t.select(\n+>>> t.select( # doctest: +SKIP\n ... [\n ... t[c] for c in t.columns\n ... if t[c].type().is_numeric()\n@@ -36,7 +36,7 @@ When there are multiple properties to check it gets worse:\n Using a composition of selectors this is much less tiresome:\n \n ```python\n->>> t.select(s.numeric() & s.contains((\"a\", \"cd\")))\n+>>> t.select(s.numeric() & s.contains((\"a\", \"cd\"))) # doctest: +SKIP\n ```\n \"\"\"\n \n@@ -133,14 +133,12 @@ def where(predicate: Callable[[ir.Value], bool]) -> Predicate:\n \n Examples\n --------\n+ >>> import ibis\n+ >>> import ibis.expr.selectors as s\n >>> t = ibis.table(dict(a=\"float32\"), name=\"t\")\n- >>> t.select(s.where(lambda col: col.get_name() == \"a\"))\n- r0 := UnboundTable: t\n- a float32\n- <BLANKLINE>\n- Selection[r0]\n- selections:\n- a: r0.a\n+ >>> expr = t.select(s.where(lambda col: col.get_name() == \"a\"))\n+ >>> expr.columns\n+ ['a']\n \"\"\"\n return Predicate(predicate=predicate)\n \n@@ -151,22 +149,17 @@ def numeric() -> Predicate:\n \n Examples\n --------\n- >>> import ibis.selectors as s\n+ >>> import ibis\n+ >>> import ibis.expr.selectors as s\n >>> t = ibis.table(dict(a=\"int\", b=\"string\", c=\"array<string>\"), name=\"t\")\n >>> t\n- r0 := UnboundTable: t\n+ UnboundTable: t\n a int64\n b string\n c array<string>\n- >>> t.select(s.numeric()) # `a` has integer type, so it's numeric\n- r0 := UnboundTable: t\n- a int64\n- b string\n- c array<string>\n- <BLANKLINE>\n- Selection[r0]\n- selections:\n- a: r0.a\n+ >>> expr = t.select(s.numeric()) # `a` has integer type, so it's numeric\n+ >>> expr.columns\n+ ['a']\n \n See Also\n --------\n@@ -188,15 +181,15 @@ def of_type(dtype: dt.DataType | str | type[dt.DataType]) -> Predicate:\n --------\n Select according to a specific `DataType` instance\n \n- >>> t.select(s.of_type(dt.Array(dt.string)))\n+ >>> t.select(s.of_type(dt.Array(dt.string))) # doctest: +SKIP\n \n Strings are also accepted\n \n- >>> t.select(s.of_type(\"map<string, float>\"))\n+ >>> t.select(s.of_type(\"map<string, float>\")) # doctest: +SKIP\n \n Select by category of `DataType` by passing the `DataType` class\n \n- >>> t.select(s.of_type(dt.Struct)) # all struct columns, regardless of field types\n+ >>> t.select(s.of_type(dt.Struct)) # doctest: +SKIP\n \n See Also\n --------\n@@ -221,8 +214,12 @@ def startswith(prefixes: str | tuple[str, ...]) -> Predicate:\n \n Examples\n --------\n+ >>> import ibis\n+ >>> import ibis.expr.selectors as s\n >>> t = ibis.table(dict(apples=\"int\", oranges=\"float\", bananas=\"bool\"), name=\"t\")\n- >>> t.select(s.startswith((\"a\", \"b\")))\n+ >>> expr = t.select(s.startswith((\"a\", \"b\")))\n+ >>> expr.columns\n+ ['apples', 'bananas']\n \n See Also\n --------\n@@ -264,11 +261,11 @@ def contains(\n --------\n Select columns that contain either `\"a\"` or `\"b\"`\n \n- >>> t.select(s.contains((\"a\", \"b\")))\n+ >>> t.select(s.contains((\"a\", \"b\"))) # doctest: +SKIP\n \n Select columns that contain all of `\"a\"` and `\"b\"`\n \n- >>> t.select(s.contains((\"a\", \"b\"), how=all))\n+ >>> t.select(s.contains((\"a\", \"b\"), how=all)) # doctest: +SKIP\n \n See Also\n --------\n@@ -293,7 +290,7 @@ def matches(regex: str | re.Pattern) -> Selector:\n \n Examples\n --------\n- >>> t.select(s.matches(r\"ab+\"))\n+ >>> t.select(s.matches(r\"ab+\")) # doctest: +SKIP\n \n See Also\n --------\n", "arrays.py": "@@ -91,6 +91,7 @@ class ArrayValue(Value):\n Extract a range of elements\n \n >>> t = ibis.memtable({\"a\": [[7, 42, 72], [3] * 5, None]})\n+ >>> t\n \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n \u2503 a \u2503\n \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n", "core.py": "@@ -87,6 +87,7 @@ class Expr(Immutable):\n \n Examples\n --------\n+ >>> import ibis\n >>> t1 = ibis.table(dict(a=\"int\"), name=\"t\")\n >>> t2 = ibis.table(dict(a=\"int\"), name=\"t\")\n >>> t1.equals(t2)\n@@ -183,7 +184,7 @@ class Expr(Immutable):\n >>> g = lambda a: (a * 2).name('a')\n >>> result1 = t.a.pipe(f).pipe(g)\n >>> result1\n- r0 := UnboundTable[t]\n+ r0 := UnboundTable: t\n a int64\n b string\n a: r0.a + 1 * 2\n@@ -487,10 +488,11 @@ def _binop(\n \n Examples\n --------\n+ >>> import ibis\n >>> import ibis.expr.operations as ops\n >>> expr = _binop(ops.TimeAdd, ibis.time(\"01:00\"), ibis.interval(hours=1))\n >>> expr\n- datetime.time(1, 0) + 1\n+ TimeAdd(datetime.time(1, 0), 1): datetime.time(1, 0) + 1 h\n >>> _binop(ops.TimeAdd, 1, ibis.interval(hours=1))\n NotImplemented\n \"\"\"\n", "generic.py": "@@ -37,9 +37,9 @@ class Value(Expr):\n Examples\n --------\n >>> import ibis\n- >>> t = ibis.table(dict(a=\"int64\"))\n+ >>> t = ibis.table(dict(a=\"int64\"), name=\"t\")\n >>> t.a.name(\"b\")\n- r0 := UnboundTable[unbound_table_...]\n+ r0 := UnboundTable: t\n a int64\n b: r0.a\n \"\"\"\n@@ -120,8 +120,8 @@ class Value(Expr):\n Examples\n --------\n >>> import ibis\n- >>> ibis.coalesce(None, 4, 5)\n- Coalesce((None, 4, 5))\n+ >>> ibis.coalesce(None, 4, 5).name(\"x\")\n+ x: Coalesce(...)\n \"\"\"\n return ops.Coalesce((self, *args)).to_expr()\n \n@@ -178,17 +178,44 @@ class Value(Expr):\n Examples\n --------\n >>> import ibis\n- >>> table = ibis.table(dict(col='int64', other_col='int64'))\n- >>> result = table.col.fillna(5)\n- r0 := UnboundTable: unbound_table_0\n- col int64\n- other_col int64\n- IfNull(r0.col, ifnull_expr=5)\n- >>> table.col.fillna(table.other_col * 3)\n- r0 := UnboundTable: unbound_table_0\n- col int64\n- other_col int64\n- IfNull(r0.col, ifnull_expr=r0.other_col * 3)\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t.sex\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 sex \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 female \u2502\n+ \u2502 \u2205 \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 \u2205 \u2502\n+ \u2502 \u2205 \u2502\n+ \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.sex.fillna(\"unrecorded\").name(\"sex\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 sex \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 female \u2502\n+ \u2502 unrecorded \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 unrecorded \u2502\n+ \u2502 unrecorded \u2502\n+ \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n Returns\n -------\n@@ -254,21 +281,21 @@ class Value(Expr):\n Check whether a column's values are contained in a sequence\n \n >>> import ibis\n- >>> table = ibis.table(dict(string_col='string'))\n+ >>> table = ibis.table(dict(string_col='string'), name=\"t\")\n >>> table.string_col.isin(['foo', 'bar', 'baz'])\n- r0 := UnboundTable: unbound_table_1\n+ r0 := UnboundTable: t\n string_col string\n- Contains(value=r0.string_col, options=('foo', 'bar', 'baz'))\n+ Contains(string_col): Contains(...)\n \n Check whether a column's values are contained in another table's column\n \n- >>> table2 = ibis.table(dict(other_string_col='string'))\n+ >>> table2 = ibis.table(dict(other_string_col='string'), name=\"t2\")\n >>> table.string_col.isin(table2.other_string_col)\n- r0 := UnboundTable: unbound_table_3\n- other_string_col string\n- r1 := UnboundTable: unbound_table_1\n+ r0 := UnboundTable: t\n string_col string\n- Contains(value=r1.string_col, options=r0.other_string_col)\n+ r1 := UnboundTable: t2\n+ other_string_col string\n+ Contains(string_col, other_string_col): Contains(...)\n \"\"\"\n return ops.Contains(self, values).to_expr()\n \n@@ -410,9 +437,9 @@ class Value(Expr):\n ... .else_('null or (not a and not b)')\n ... .end())\n >>> case_expr\n- r0 := UnboundTable[t]\n+ r0 := UnboundTable: t\n string_col string\n- SimpleCase(base=r0.string_col, cases=[List(values=['a', 'b'])], results=[List(values=['an a', 'a b'])], default='null or (not a and not b)')\n+ SimpleCase(...)\n \"\"\"\n import ibis.expr.builders as bl\n \n@@ -479,7 +506,7 @@ class Value(Expr):\n >>> t.value.collect()\n [1, 2, 3, 4, 5]\n >>> type(t.value.collect())\n- ibis.expr.types.arrays.ArrayScalar\n+ <class 'ibis.expr.types.arrays.ArrayScalar'>\n \n Collect elements per group\n \n@@ -637,6 +664,8 @@ class Scalar(Value):\n --------\n Promote an aggregation to a table\n \n+ >>> import ibis\n+ >>> import ibis.expr.types as ir\n >>> t = ibis.table(dict(a=\"str\"), name=\"t\")\n >>> expr = t.a.length().sum().name(\"len\").as_table()\n >>> isinstance(expr, ir.Table)\n", "groupby.py": "@@ -172,7 +172,7 @@ class GroupedTable:\n ... ('baz', 'double'),\n ... ], name='t')\n >>> t\n- UnboundTable[t]\n+ UnboundTable: t\n foo string\n bar string\n baz float64\n@@ -180,15 +180,15 @@ class GroupedTable:\n ... .order_by(ibis.desc('bar'))\n ... .mutate(qux=lambda x: x.baz.lag(), qux2=t.baz.lead()))\n >>> print(expr)\n- r0 := UnboundTable[t]\n+ r0 := UnboundTable: t\n foo string\n bar string\n baz float64\n Selection[r0]\n selections:\n r0\n- qux: Window(Lag(r0.baz), window=Window(group_by=[r0.foo], order_by=[desc|r0.bar], how='rows'))\n- qux2: Window(Lead(r0.baz), window=Window(group_by=[r0.foo], order_by=[desc|r0.bar], how='rows'))\n+ qux: WindowFunction(...)\n+ qux2: WindowFunction(...)\n \n Returns\n -------\n", "json.py": "@@ -37,16 +37,16 @@ class JSONValue(Value):\n >>> import json, ibis\n >>> ibis.options.interactive = True\n >>> rows = [{\"js\": json.dumps({\"a\": [i, 1]})} for i in range(2)]\n- >>> t = ibis.memtable(rows, schema=ibis.schema(js=\"json\"))\n+ >>> t = ibis.memtable(rows, schema=ibis.schema(dict(js=\"json\")))\n >>> t\n- \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n- \u2503 js \u2503\n- \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n- \u2502 json \u2502\n- \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n- \u2502 {'a': [0, 1]} \u2502\n- \u2502 {'a': [1, 1]} \u2502\n- \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 js \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 json \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 {'a': [...]} \u2502\n+ \u2502 {'a': [...]} \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n Extract the `\"a\"` field\n \n@@ -74,7 +74,7 @@ class JSONValue(Value):\n \n Extract a non-existent field\n \n- >>> t.js.a[\"foo\"]\n+ >>> t.js[\"a\"][\"foo\"]\n \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n \u2503 JSONGetItem(JSONGetItem(js, 'a'), 'foo') \u2503\n \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n", "maps.py": "@@ -39,11 +39,11 @@ class MapValue(Value):\n >>> import ibis\n >>> m = ibis.map({\"a\": 1, \"b\": 2})\n >>> m.get(\"a\")\n- MapGet(frozendict({'a': 1, 'b': 2}), key='a', default=None)\n+ MapGet(...)\n >>> m.get(\"c\", 3)\n- MapGet(frozendict({'a': 1, 'b': 2}), key='c', default=3)\n+ MapGet(...)\n >>> m.get(\"d\")\n- MapGet(frozendict({'a': 1, 'b': 2}), key='d', default=None)\n+ MapGet(...)\n \"\"\"\n \n return ops.MapGet(self, key, default).to_expr()\n@@ -61,7 +61,7 @@ class MapValue(Value):\n >>> import ibis\n >>> m = ibis.map({\"a\": 1, \"b\": 2})\n >>> m.length()\n- MapLength(frozendict({'a': 1, 'b': 2}))\n+ MapLength(...)\n \"\"\"\n return ops.MapLength(self).to_expr()\n \n@@ -88,9 +88,9 @@ class MapValue(Value):\n >>> import ibis\n >>> m = ibis.map({\"a\": 1, \"b\": 2})\n >>> m[\"a\"]\n- MapValueForKey(frozendict({'a': 1, 'b': 2}), key='a')\n+ MapGet(...)\n >>> m[\"c\"] # note that this does not fail on construction\n- MapValueForKey(frozendict({'a': 1, 'b': 2}), key='c')\n+ MapGet(...)\n \"\"\"\n return ops.MapGet(self, key).to_expr()\n \n@@ -124,7 +124,7 @@ class MapValue(Value):\n >>> import ibis\n >>> m = ibis.map({\"a\": 1, \"b\": 2})\n >>> m.keys()\n- MapKeys(frozendict({'a': 1, 'b': 2}))\n+ MapKeys(...)\n \"\"\"\n return ops.MapKeys(self).to_expr()\n \n@@ -140,8 +140,8 @@ class MapValue(Value):\n --------\n >>> import ibis\n >>> m = ibis.map({\"a\": 1, \"b\": 2})\n- >>> m.keys()\n- MapKeys(frozendict({'a': 1, 'b': 2}))\n+ >>> m.values()\n+ MapValues(...)\n \"\"\"\n return ops.MapValues(self).to_expr()\n \n@@ -164,7 +164,7 @@ class MapValue(Value):\n >>> m1 = ibis.map({\"a\": 1, \"b\": 2})\n >>> m2 = ibis.map({\"c\": 3, \"d\": 4})\n >>> m1 + m2\n- MapConcat(left=frozendict({'a': 1, 'b': 2}), right=frozendict({'c': 3, 'd': 4}))\n+ MapMerge(...)\n \"\"\"\n return ops.MapMerge(self, other).to_expr()\n \n@@ -187,7 +187,7 @@ class MapValue(Value):\n >>> m1 = ibis.map({\"a\": 1, \"b\": 2})\n >>> m2 = ibis.map({\"c\": 3, \"d\": 4})\n >>> m1 + m2\n- MapConcat(left=frozendict({'a': 1, 'b': 2}), right=frozendict({'c': 3, 'd': 4}))\n+ MapMerge(...)\n \"\"\"\n return ops.MapMerge(self, other).to_expr()\n \n", "relations.py": "@@ -8,16 +8,7 @@ import re\n import sys\n import warnings\n from keyword import iskeyword\n-from typing import (\n- IO,\n- TYPE_CHECKING,\n- Any,\n- Callable,\n- Iterable,\n- Literal,\n- Mapping,\n- Sequence,\n-)\n+from typing import IO, TYPE_CHECKING, Callable, Iterable, Literal, Mapping, Sequence\n \n from public import public\n \n@@ -130,7 +121,27 @@ class Table(Expr, _FixedTextJupyterMixin):\n \"\"\"\n return self\n \n- def __contains__(self, name):\n+ def __contains__(self, name: str) -> bool:\n+ \"\"\"Return whether `name` is a column in the table.\n+\n+ Parameters\n+ ----------\n+ name\n+ Possible column name\n+\n+ Returns\n+ -------\n+ bool\n+ Whether `name` is a column in `self`\n+\n+ Examples\n+ --------\n+ >>> t = ibis.table(dict(a=\"string\", b=\"float\"), name=\"t\")\n+ >>> \"a\" in t\n+ True\n+ >>> \"c\" in t\n+ False\n+ \"\"\"\n return name in self.schema()\n \n def __rich_console__(self, console, options):\n@@ -157,6 +168,207 @@ class Table(Expr, _FixedTextJupyterMixin):\n return console.render(table, options=options)\n \n def __getitem__(self, what):\n+ \"\"\"Select items from a table expression.\n+\n+ This method implements square bracket syntax for table expressions,\n+ including various forms of projection and filtering.\n+\n+ Parameters\n+ ----------\n+ what\n+ Selection object. This can be a variety of types including strings, ints, lists.\n+\n+ Returns\n+ -------\n+ Table | Column\n+ The return type depends on the input. For a single string or int\n+ input a column is returned, otherwise a table is returned.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> import ibis.expr.selectors as s\n+ >>> from ibis import _\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+\n+ Return a column by name\n+\n+ >>> t[\"island\"]\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Return the second column, starting from index 0\n+\n+ >>> t.columns[1]\n+ 'island'\n+ >>> t[1]\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Extract a range of rows\n+\n+ >>> t[:2]\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+ >>> t[:5]\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+ >>> t[2:5]\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+\n+ Select columns\n+\n+ >>> t[[\"island\", \"bill_length_mm\"]].head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503 bill_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502 39.1 \u2502\n+ \u2502 Torgersen \u2502 39.5 \u2502\n+ \u2502 Torgersen \u2502 40.3 \u2502\n+ \u2502 Torgersen \u2502 nan \u2502\n+ \u2502 Torgersen \u2502 36.7 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t[\"island\", \"bill_length_mm\"].head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503 bill_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502 39.1 \u2502\n+ \u2502 Torgersen \u2502 39.5 \u2502\n+ \u2502 Torgersen \u2502 40.3 \u2502\n+ \u2502 Torgersen \u2502 nan \u2502\n+ \u2502 Torgersen \u2502 36.7 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t[_.island, _.bill_length_mm].head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503 bill_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502 39.1 \u2502\n+ \u2502 Torgersen \u2502 39.5 \u2502\n+ \u2502 Torgersen \u2502 40.3 \u2502\n+ \u2502 Torgersen \u2502 nan \u2502\n+ \u2502 Torgersen \u2502 36.7 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Filtering\n+\n+ >>> t[t.island.lower() != \"torgersen\"].head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Biscoe \u2502 37.8 \u2502 18.3 \u2502 174 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Biscoe \u2502 37.7 \u2502 18.7 \u2502 180 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Biscoe \u2502 35.9 \u2502 19.2 \u2502 189 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Biscoe \u2502 38.2 \u2502 18.1 \u2502 185 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Biscoe \u2502 38.8 \u2502 17.2 \u2502 180 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+\n+ Selectors\n+\n+ >>> t[~s.numeric() | (s.numeric() & ~s.c(\"year\"))].head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+ >>> t[s.r[\"bill_length_mm\":\"body_mass_g\"]].head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 float64 \u2502 float64 \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 39.1 \u2502 18.7 \u2502 181 \u2502\n+ \u2502 39.5 \u2502 17.4 \u2502 186 \u2502\n+ \u2502 40.3 \u2502 18.0 \u2502 195 \u2502\n+ \u2502 nan \u2502 nan \u2502 \u2205 \u2502\n+ \u2502 36.7 \u2502 19.3 \u2502 193 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ \"\"\"\n from ibis.expr.types.generic import Column\n from ibis.expr.types.logical import BooleanValue\n \n@@ -198,7 +410,43 @@ class Table(Expr, _FixedTextJupyterMixin):\n def __len__(self):\n raise com.ExpressionError('Use .count() instead')\n \n- def __getattr__(self, key):\n+ def __getattr__(self, key: str) -> ir.Column:\n+ \"\"\"Return the column name of a table.\n+\n+ Parameters\n+ ----------\n+ key\n+ Column name\n+\n+ Returns\n+ -------\n+ Column\n+ Column expression with name `key`\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t.island\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 Torgersen \u2502\n+ \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ \"\"\"\n with contextlib.suppress(com.IbisTypeError):\n return ops.TableColumn(self, key).to_expr()\n \n@@ -233,7 +481,7 @@ class Table(Expr, _FixedTextJupyterMixin):\n )\n raise AttributeError(f\"'Table' object has no attribute {key!r}\")\n \n- def __dir__(self):\n+ def __dir__(self) -> list[str]:\n out = set(dir(type(self)))\n out.update(c for c in self.columns if c.isidentifier() and not iskeyword(c))\n return sorted(out)\n@@ -263,62 +511,124 @@ class Table(Expr, _FixedTextJupyterMixin):\n return expr\n \n @property\n- def columns(self):\n- \"\"\"The list of columns in this table.\"\"\"\n- return list(self._arg.schema.names)\n+ def columns(self) -> list[str]:\n+ \"\"\"The list of columns in this table.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.starwars.fetch()\n+ >>> t.columns\n+ ['name',\n+ 'height',\n+ 'mass',\n+ 'hair_color',\n+ 'skin_color',\n+ 'eye_color',\n+ 'birth_year',\n+ 'sex',\n+ 'gender',\n+ 'homeworld',\n+ 'species',\n+ 'films',\n+ 'vehicles',\n+ 'starships']\n+ \"\"\"\n+ return list(self.schema().names)\n \n def schema(self) -> sch.Schema:\n- \"\"\"Get the schema for this table (if one is known).\n+ \"\"\"Return the schema for this table.\n \n Returns\n -------\n Schema\n The table's schema.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.starwars.fetch()\n+ >>> t.schema()\n+ ibis.Schema {\n+ name string\n+ height int64\n+ mass float64\n+ hair_color string\n+ skin_color string\n+ eye_color string\n+ birth_year float64\n+ sex string\n+ gender string\n+ homeworld string\n+ species string\n+ films string\n+ vehicles string\n+ starships string\n+ }\n \"\"\"\n return self.op().schema\n \n- def group_by(self, by=None, **group_exprs: Any) -> GroupedTable:\n+ def group_by(\n+ self,\n+ by: str | ir.Value | Iterable[str] | Iterable[ir.Value] | None = None,\n+ **key_exprs: str | ir.Value | Iterable[str] | Iterable[ir.Value],\n+ ) -> GroupedTable:\n \"\"\"Create a grouped table expression.\n \n Parameters\n ----------\n by\n Grouping expressions\n- group_exprs\n+ key_exprs\n Named grouping expressions\n \n- Examples\n- --------\n- >>> import ibis\n- >>> from ibis import _\n- >>> t = ibis.table(dict(a='int32', b='timestamp', c='double'), name='t')\n- >>> t.group_by([_.a, _.b]).aggregate(sum_of_c=_.c.sum())\n- r0 := UnboundTable: t\n- a int32\n- b timestamp\n- c float64\n- Aggregation[r0]\n- metrics:\n- sum_of_c: Sum(r0.c)\n- by:\n- a: r0.a\n- b: r0.b\n-\n Returns\n -------\n GroupedTable\n A grouped table expression\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> from ibis import _\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.memtable({\"fruit\": [\"apple\", \"apple\", \"banana\", \"orange\"], \"price\": [0.5, 0.5, 0.25, 0.33]})\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 fruit \u2503 price \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 apple \u2502 0.50 \u2502\n+ \u2502 apple \u2502 0.50 \u2502\n+ \u2502 banana \u2502 0.25 \u2502\n+ \u2502 orange \u2502 0.33 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.group_by(\"fruit\").agg(total_cost=_.price.sum(), avg_cost=_.price.mean())\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 fruit \u2503 total_cost \u2503 avg_cost \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 apple \u2502 1.00 \u2502 0.50 \u2502\n+ \u2502 banana \u2502 0.25 \u2502 0.25 \u2502\n+ \u2502 orange \u2502 0.33 \u2502 0.33 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n from ibis.expr.types.groupby import GroupedTable\n \n- return GroupedTable(self, by, **group_exprs)\n+ return GroupedTable(self, by, **key_exprs)\n \n def rowid(self) -> ir.IntegerValue:\n- \"\"\"A unique integer per row, only valid on physical tables.\n+ \"\"\"A unique integer per row.\n+\n+ !!! note \"This operation is only valid on physical tables\"\n \n- Any further meaning behind this expression is backend dependent.\n- Generally this corresponds to some index into the database storage\n- (for example, sqlite or duckdb's `rowid`).\n+ Any further meaning behind this expression is backend dependent.\n+ Generally this corresponds to some index into the database storage\n+ (for example, sqlite or duckdb's `rowid`).\n \n For a monotonically increasing row number, see `ibis.row_number`.\n \n@@ -362,6 +672,39 @@ class Table(Expr, _FixedTextJupyterMixin):\n -------\n Table\n The rows present in `self` that are not present in `tables`.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t1 = ibis.memtable({\"a\": [1, 2]})\n+ >>> t1\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502\n+ \u2502 2 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t2 = ibis.memtable({\"a\": [2, 3]})\n+ >>> t2\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 2 \u2502\n+ \u2502 3 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t1.difference(t2)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n left = self\n if not tables:\n@@ -396,6 +739,33 @@ class Table(Expr, _FixedTextJupyterMixin):\n -------\n Table\n An aggregate table expression\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> from ibis import _\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.memtable({\"fruit\": [\"apple\", \"apple\", \"banana\", \"orange\"], \"price\": [0.5, 0.5, 0.25, 0.33]})\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 fruit \u2503 price \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 apple \u2502 0.50 \u2502\n+ \u2502 apple \u2502 0.50 \u2502\n+ \u2502 banana \u2502 0.25 \u2502\n+ \u2502 orange \u2502 0.33 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.aggregate(by=[\"fruit\"], total_cost=_.price.sum(), avg_cost=_.price.mean(), having=_.price.sum() < 0.5)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 fruit \u2503 total_cost \u2503 avg_cost \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 banana \u2502 0.25 \u2502 0.25 \u2502\n+ \u2502 orange \u2502 0.33 \u2502 0.33 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n import ibis.expr.analysis as an\n \n@@ -428,11 +798,44 @@ class Table(Expr, _FixedTextJupyterMixin):\n agg = aggregate\n \n def distinct(self) -> Table:\n- \"\"\"Compute the set of unique rows in the table.\"\"\"\n+ \"\"\"Compute the unique rows in `self`.\n+\n+ Returns\n+ -------\n+ Table\n+ Unique rows of `self`\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.memtable({\"a\": [1, 1, 2], \"b\": [\"c\", \"a\", \"a\"]})\n+ >>> t[[\"a\"]].distinct()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502\n+ \u2502 2 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.distinct()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 c \u2502\n+ \u2502 1 \u2502 a \u2502\n+ \u2502 2 \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ \"\"\"\n return ops.Distinct(self).to_expr()\n \n def limit(self, n: int, offset: int = 0) -> Table:\n- \"\"\"Select the first `n` rows starting at `offset`.\n+ \"\"\"Select `n` rows from `self` starting at `offset`.\n+\n+ !!! note \"The result set is not deterministic without a call to [`order_by`][ibis.expr.types.relations.Table.order_by].\"\n \n Parameters\n ----------\n@@ -444,24 +847,83 @@ class Table(Expr, _FixedTextJupyterMixin):\n Returns\n -------\n Table\n- The first `n` rows of `table` starting at `offset`\n+ The first `n` rows of `self` starting at `offset`\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.memtable({\"a\": [1, 1, 2], \"b\": [\"c\", \"a\", \"a\"]})\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 c \u2502\n+ \u2502 1 \u2502 a \u2502\n+ \u2502 2 \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.limit(2)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 c \u2502\n+ \u2502 1 \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ See Also\n+ --------\n+ [`Table.order_by`][ibis.expr.types.relations.Table.order_by]\n \"\"\"\n return ops.Limit(self, n, offset=offset).to_expr()\n \n def head(self, n: int = 5) -> Table:\n \"\"\"Select the first `n` rows of a table.\n \n- The result set is not deterministic without a sort.\n+ !!! note \"The result set is not deterministic without a call to [`order_by`][ibis.expr.types.relations.Table.order_by].\"\n \n Parameters\n ----------\n n\n- Number of rows to include, defaults to 5\n+ Number of rows to include\n \n Returns\n -------\n Table\n- `table` limited to `n` rows\n+ `self` limited to `n` rows\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.memtable({\"a\": [1, 1, 2], \"b\": [\"c\", \"a\", \"a\"]})\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 c \u2502\n+ \u2502 1 \u2502 a \u2502\n+ \u2502 2 \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.head(2)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 c \u2502\n+ \u2502 1 \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ See Also\n+ --------\n+ [`Table.limit`][ibis.expr.types.relations.Table.limit]\n+ [`Table.order_by`][ibis.expr.types.relations.Table.order_by]\n \"\"\"\n return self.limit(n=n)\n \n@@ -479,26 +941,49 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n Parameters\n ----------\n- by:\n- An expression (or expressions) to sort the table by.\n-\n- Examples\n- --------\n- >>> import ibis\n- >>> t = ibis.table(dict(a='int64', b='string'))\n- >>> t.order_by(['a', ibis.desc('b')])\n- r0 := UnboundTable: unbound_table_0\n- a int64\n- b string\n- Selection[r0]\n- sort_keys:\n- asc|r0.a\n- desc|r0.b\n+ by\n+ Expressions to sort the table by.\n \n Returns\n -------\n Table\n Sorted table\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.memtable({\"a\": [1, 2, 3], \"b\": [\"c\", \"b\", \"a\"], \"c\": [4, 6, 5]})\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503 c \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 c \u2502 4 \u2502\n+ \u2502 2 \u2502 b \u2502 6 \u2502\n+ \u2502 3 \u2502 a \u2502 5 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.order_by(\"b\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503 c \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 3 \u2502 a \u2502 5 \u2502\n+ \u2502 2 \u2502 b \u2502 6 \u2502\n+ \u2502 1 \u2502 c \u2502 4 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.order_by(ibis.desc(\"c\"))\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503 c \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 2 \u2502 b \u2502 6 \u2502\n+ \u2502 3 \u2502 a \u2502 5 \u2502\n+ \u2502 1 \u2502 c \u2502 4 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n if isinstance(by, tuple):\n by = [by]\n@@ -524,6 +1009,52 @@ class Table(Expr, _FixedTextJupyterMixin):\n -------\n Table\n A new table containing the union of all input tables.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t1 = ibis.memtable({\"a\": [1, 2]})\n+ >>> t1\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502\n+ \u2502 2 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t2 = ibis.memtable({\"a\": [2, 3]})\n+ >>> t2\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 2 \u2502\n+ \u2502 3 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t1.union(t2) # union all by default\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502\n+ \u2502 2 \u2502\n+ \u2502 2 \u2502\n+ \u2502 3 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t1.union(t2, distinct=True).order_by(\"a\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502\n+ \u2502 2 \u2502\n+ \u2502 3 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n left = self\n if not tables:\n@@ -550,6 +1081,39 @@ class Table(Expr, _FixedTextJupyterMixin):\n -------\n Table\n A new table containing the intersection of all input tables.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t1 = ibis.memtable({\"a\": [1, 2]})\n+ >>> t1\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502\n+ \u2502 2 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t2 = ibis.memtable({\"a\": [2, 3]})\n+ >>> t2\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 2 \u2502\n+ \u2502 3 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t1.intersect(t2)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 2 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n left = self\n if not tables:\n@@ -577,9 +1141,7 @@ class Table(Expr, _FixedTextJupyterMixin):\n return ops.TableArrayView(self).to_expr()\n \n def mutate(\n- self,\n- exprs: Sequence[ir.Expr] | None = None,\n- **mutations: ir.Value,\n+ self, exprs: Sequence[ir.Expr] | None = None, **mutations: ir.Value\n ) -> Table:\n \"\"\"Add columns to a table expression.\n \n@@ -597,32 +1159,74 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n Examples\n --------\n- Using keywords arguments to name the new columns\n-\n >>> import ibis\n- >>> table = ibis.table(\n- ... [('foo', 'double'), ('bar', 'double')],\n- ... name='t'\n- ... )\n- >>> expr = table.mutate(qux=table.foo + table.bar, baz=5)\n- >>> expr\n- r0 := UnboundTable[t]\n- foo float64\n- bar float64\n- Selection[r0]\n- selections:\n- r0\n- baz: 5\n- qux: r0.foo + r0.bar\n-\n- Use the [`name`][ibis.expr.types.generic.Value.name] method to name\n- the new columns.\n-\n- >>> new_columns = [ibis.literal(5).name('baz',),\n- ... (table.foo + table.bar).name('qux')]\n- >>> expr2 = table.mutate(new_columns)\n- >>> expr.equals(expr2)\n- True\n+ >>> import ibis.expr.selectors as s\n+ >>> from ibis import _\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch().select(\"species\", \"year\", \"bill_length_mm\")\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 year \u2503 bill_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 2007 \u2502 39.1 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 39.5 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 40.3 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 nan \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 36.7 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 39.3 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 38.9 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 39.2 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 34.1 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 42.0 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Add a new column from a per-element expression\n+\n+ >>> t.mutate(next_year=_.year + 1).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 year \u2503 bill_length_mm \u2503 next_year \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 float64 \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 2007 \u2502 39.1 \u2502 2008 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 39.5 \u2502 2008 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 40.3 \u2502 2008 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 nan \u2502 2008 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 36.7 \u2502 2008 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Add a new column based on an aggregation. Note the automatic broadcasting.\n+\n+ >>> t.select(\"species\", bill_demean=_.bill_length_mm - _.bill_length_mm.mean()).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 bill_demean \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 -4.82193 \u2502\n+ \u2502 Adelie \u2502 -4.42193 \u2502\n+ \u2502 Adelie \u2502 -3.62193 \u2502\n+ \u2502 Adelie \u2502 nan \u2502\n+ \u2502 Adelie \u2502 -7.22193 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Mutate across multiple columns\n+\n+ >>> t.mutate(s.across(s.numeric() & ~s.c(\"year\"), _ - _.mean())).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 year \u2503 bill_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 2007 \u2502 -4.82193 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 -4.42193 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 -3.62193 \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 nan \u2502\n+ \u2502 Adelie \u2502 2007 \u2502 -7.22193 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n import ibis.expr.analysis as an\n \n@@ -671,49 +1275,119 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n Examples\n --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+\n Simple projection\n \n- >>> import ibis\n- >>> t = ibis.table(dict(a=\"int64\", b=\"double\"), name='t')\n- >>> proj = t.select(t.a, b_plus_1=t.b + 1)\n- >>> proj\n- r0 := UnboundTable[t]\n- a int64\n- b float64\n- Selection[r0]\n- selections:\n- a: r0.a\n- b_plus_1: r0.b + 1\n- >>> proj2 = t.select(\"a\", b_plus_1=t.b + 1)\n- >>> proj.equals(proj2)\n- True\n+ >>> t.select(\"island\", \"bill_length_mm\").head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503 bill_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502 39.1 \u2502\n+ \u2502 Torgersen \u2502 39.5 \u2502\n+ \u2502 Torgersen \u2502 40.3 \u2502\n+ \u2502 Torgersen \u2502 nan \u2502\n+ \u2502 Torgersen \u2502 36.7 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Projection by zero-indexed column position\n+\n+ >>> t.select(0, 4).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 flipper_length_mm \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 181 \u2502\n+ \u2502 Adelie \u2502 186 \u2502\n+ \u2502 Adelie \u2502 195 \u2502\n+ \u2502 Adelie \u2502 \u2205 \u2502\n+ \u2502 Adelie \u2502 193 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Projection with renaming and compute in one call\n+\n+ >>> t.select(next_year=t.year + 1).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 next_year \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 2008 \u2502\n+ \u2502 2008 \u2502\n+ \u2502 2008 \u2502\n+ \u2502 2008 \u2502\n+ \u2502 2008 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Projection with aggregation expressions\n+\n+ >>> t.select(\"island\", bill_mean=t.bill_length_mm.mean()).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503 bill_mean \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502 43.92193 \u2502\n+ \u2502 Torgersen \u2502 43.92193 \u2502\n+ \u2502 Torgersen \u2502 43.92193 \u2502\n+ \u2502 Torgersen \u2502 43.92193 \u2502\n+ \u2502 Torgersen \u2502 43.92193 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Projection with a selector\n+\n+ >>> import ibis.expr.selectors as s\n+ >>> t.select(s.numeric() & ~s.c(\"year\")).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 body_mass_g \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 float64 \u2502 float64 \u2502 int64 \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 3750 \u2502\n+ \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 3800 \u2502\n+ \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 3250 \u2502\n+ \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2205 \u2502\n+ \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 3450 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Projection + aggregation across multiple columns\n \n- Aggregate projection\n-\n- >>> agg_proj = t.select(sum_a=t.a.sum(), mean_b=t.b.mean())\n- >>> agg_proj\n- r0 := UnboundTable[t]\n- a int64\n- b float64\n- Selection[r0]\n- selections:\n- sum_a: Window(Sum(r0.a), window=Window(how='rows'))\n- mean_b: Window(Mean(r0.b), window=Window(how='rows'))\n-\n- Note the `Window` objects here.\n-\n- Their existence means that the result of the aggregation will be\n- broadcast across the number of rows in the input column.\n- The purpose of this expression rewrite is to make it easy to write\n- column/scalar-aggregate operations like\n-\n- >>> t.select(demeaned_a=t.a - t.a.mean())\n- r0 := UnboundTable[t]\n- a int64\n- b float64\n- Selection[r0]\n- selections:\n- demeaned_a: r0.a - Window(Mean(r0.a), window=Window(how='rows'))\n+ >>> from ibis import _\n+ >>> t.select(s.across(s.numeric() & ~s.c(\"year\"), _.mean())).head()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 body_mass_g \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 float64 \u2502 float64 \u2502 float64 \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 43.92193 \u2502 17.15117 \u2502 200.915205 \u2502 4201.754386 \u2502\n+ \u2502 43.92193 \u2502 17.15117 \u2502 200.915205 \u2502 4201.754386 \u2502\n+ \u2502 43.92193 \u2502 17.15117 \u2502 200.915205 \u2502 4201.754386 \u2502\n+ \u2502 43.92193 \u2502 17.15117 \u2502 200.915205 \u2502 4201.754386 \u2502\n+ \u2502 43.92193 \u2502 17.15117 \u2502 200.915205 \u2502 4201.754386 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n import ibis.expr.analysis as an\n from ibis.expr.selectors import Selector\n@@ -762,7 +1436,66 @@ class Table(Expr, _FixedTextJupyterMixin):\n Returns\n -------\n Table\n- A relabeled table expression\n+ A relabeled table expressi\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> import ibis.expr.selectors as s\n+ >>> ibis.options.interactive = True\n+ >>> first3 = s.r[:3] # first 3 columns\n+ >>> t = ibis.examples.penguins_raw_raw.fetch().select(first3)\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 studyName \u2503 Sample Number \u2503 Species \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 PAL0708 \u2502 1 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 2 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 3 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 4 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 5 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 6 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 7 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 8 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 9 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 PAL0708 \u2502 10 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Relabel column names using a mapping from old name to new name\n+\n+ >>> t.relabel({\"studyName\": \"study_name\"}).head(1)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 study_name \u2503 Sample Number \u2503 Species \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 PAL0708 \u2502 1 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Relabel column names using a snake_case convention\n+\n+ >>> t.relabel(\"snake_case\").head(1)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 study_name \u2503 sample_number \u2503 species \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 PAL0708 \u2502 1 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Relabel column names using a callable\n+\n+ >>> t.relabel(str.upper).head(1)\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 STUDYNAME \u2503 SAMPLE NUMBER \u2503 SPECIES \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 PAL0708 \u2502 1 \u2502 Adelie Penguin (Pygoscelis adeliae) \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n observed = set()\n \n@@ -811,6 +1544,48 @@ class Table(Expr, _FixedTextJupyterMixin):\n -------\n Table\n A table with all columns in `fields` removed.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+ >>> t.drop(\"species\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n \"\"\"\n if not fields:\n # no-op if nothing to be dropped\n@@ -833,10 +1608,7 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n return self[[field for field in schema if field not in field_set]]\n \n- def filter(\n- self,\n- predicates: ir.BooleanValue | Sequence[ir.BooleanValue],\n- ) -> Table:\n+ def filter(self, predicates: ir.BooleanValue | Sequence[ir.BooleanValue]) -> Table:\n \"\"\"Select rows from `table` based on `predicates`.\n \n Parameters\n@@ -848,6 +1620,39 @@ class Table(Expr, _FixedTextJupyterMixin):\n -------\n Table\n Filtered table expression\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+ >>> t.filter([t.species == \"Adelie\", t.body_mass_g > 3500]).sex.value_counts().dropna(\"sex\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 sex \u2503 sex_count \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 male \u2502 68 \u2502\n+ \u2502 female \u2502 22 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n import ibis.expr.analysis as an\n \n@@ -874,26 +1679,29 @@ class Table(Expr, _FixedTextJupyterMixin):\n Examples\n --------\n >>> import ibis\n- >>> from ibis import _\n- >>> t = ibis.table(dict(a=\"int\"), name=\"t\")\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.memtable({\"a\": [\"foo\", \"bar\", \"baz\"]})\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 foo \u2502\n+ \u2502 bar \u2502\n+ \u2502 baz \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n >>> t.count()\n- r0 := UnboundTable: t\n- a int64\n- count: CountStar(t)\n- >>> t.aggregate(n=_.count(_.a > 1), total=_.sum())\n- r0 := UnboundTable: t\n- a int64\n- Aggregation[r0]\n- metrics:\n- n: CountStar(t, where=r0.a > 1)\n- total: Sum(r0.a)\n+ 3\n+ >>> t.count(t.a != \"foo\")\n+ 2\n+ >>> type(t.count())\n+ <class 'ibis.expr.types.numeric.IntegerScalar'>\n \"\"\"\n return ops.CountStar(self, where).to_expr().name(\"count\")\n \n def dropna(\n- self,\n- subset: Sequence[str] | None = None,\n- how: Literal[\"any\", \"all\"] = \"any\",\n+ self, subset: Sequence[str] | None = None, how: Literal[\"any\", \"all\"] = \"any\"\n ) -> Table:\n \"\"\"Remove rows with null values from the table.\n \n@@ -903,40 +1711,44 @@ class Table(Expr, _FixedTextJupyterMixin):\n Columns names to consider when dropping nulls. By default all columns\n are considered.\n how\n- Determine whether a row is removed if there is at least one null\n- value in the row ('any'), or if all row values are null ('all').\n- Options are 'any' or 'all'. Default is 'any'.\n-\n- Examples\n- --------\n- >>> import ibis\n- >>> t = ibis.table(dict(a='int64', b='string'), name='t')\n- >>> t = t.dropna() # Drop all rows where any values are null\n- >>> t\n- r0 := UnboundTable: t\n- a int64\n- b string\n- DropNa[r0]\n- how: 'any'\n- >>> t.dropna(how='all') # Only drop rows where all values are null\n- r0 := UnboundTable: t\n- a int64\n- b string\n- r1 := DropNa[r0]\n- how: 'all'\n- >>> t.dropna(subset=['a'], how='all') # Only drop rows where all values in column 'a' are null # noqa: E501\n- r0 := UnboundTable: t\n- a int64\n- b string\n- DropNa[r0]\n- how: 'all'\n- subset:\n- r0.a\n+ Determine whether a row is removed if there is **at least one null\n+ value in the row** (`'any'`), or if **all** row values are null\n+ (`'all'`).\n \n Returns\n -------\n Table\n Table expression\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+ >>> t.count()\n+ 344\n+ >>> t.dropna([\"bill_length_mm\", \"body_mass_g\"]).count()\n+ 342\n+ >>> t.dropna(how=\"all\").count() # no rows where all columns are null\n+ 344\n \"\"\"\n if subset is not None:\n subset = util.promote_list(subset)\n@@ -948,33 +1760,65 @@ class Table(Expr, _FixedTextJupyterMixin):\n ) -> Table:\n \"\"\"Fill null values in a table expression.\n \n+ !!! note \"There is potential lack of type stability with the `fillna` API\"\n+\n+ For example, different library versions may impact whether a given\n+ backend promotes integer replacement values to floats.\n+\n Parameters\n ----------\n replacements\n- Value with which to fill the nulls. If passed as a mapping, the keys\n- are column names that map to their replacement value. If passed\n- as a scalar, all columns are filled with that value.\n-\n- Notes\n- -----\n- There is potential lack of type stability with the `fillna` API. For\n- example, different library versions may impact whether or not a given\n- backend promotes integer replacement values to floats.\n+ Value with which to fill nulls. If `replacements` is a mapping, the\n+ keys are column names that map to their replacement value. If\n+ passed as a scalar all columns are filled with that value.\n \n Examples\n --------\n >>> import ibis\n- >>> import ibis.expr.datatypes as dt\n- >>> t = ibis.table([('a', 'int64'), ('b', 'string')])\n- >>> res = t.fillna(0.0) # Replace nulls in all columns with 0.0\n- >>> res = t.fillna({c: 0.0 for c, t in t.schema().items() if t == dt.float64})\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> t.sex\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 sex \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 female \u2502\n+ \u2502 \u2205 \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 \u2205 \u2502\n+ \u2502 \u2205 \u2502\n+ \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.fillna({\"sex\": \"unrecorded\"}).sex\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 sex \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 female \u2502\n+ \u2502 unrecorded \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 female \u2502\n+ \u2502 male \u2502\n+ \u2502 unrecorded \u2502\n+ \u2502 unrecorded \u2502\n+ \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n Returns\n -------\n Table\n Table expression\n \"\"\"\n-\n schema = self.schema()\n \n if isinstance(replacements, collections.abc.Mapping):\n@@ -1025,21 +1869,36 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n Examples\n --------\n- >>> schema = dict(a=\"struct<b: float, c: string>\", d=\"string\")\n- >>> t = ibis.table(schema, name=\"t\")\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> lines = '''\n+ ... {\"name\": \"a\", \"pos\": {\"lat\": 10.1, \"lon\": 30.3}}\n+ ... {\"name\": \"b\", \"pos\": {\"lat\": 10.2, \"lon\": 30.2}}\n+ ... {\"name\": \"c\", \"pos\": {\"lat\": 10.3, \"lon\": 30.1}}\n+ ... '''\n+ >>> with open(\"/tmp/lines.json\", \"w\") as f:\n+ ... _ = f.write(lines)\n+ >>> t = ibis.read_json(\"/tmp/lines.json\")\n >>> t\n- UnboundTable: t\n- a struct<b: float64, c: string>\n- d string\n- >>> t.unpack(\"a\")\n- r0 := UnboundTable: t\n- a struct<b: float64, c: string>\n- d string\n- Selection[r0]\n- selections:\n- b: StructField(r0.a, field='b')\n- c: StructField(r0.a, field='c')\n- d: r0.d\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 name \u2503 pos \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 struct<lat: float64, lon: float64> \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502 {'lat': 10.1, 'lon': 30.3} \u2502\n+ \u2502 b \u2502 {'lat': 10.2, 'lon': 30.2} \u2502\n+ \u2502 c \u2502 {'lat': 10.3, 'lon': 30.1} \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.unpack(\"pos\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 name \u2503 lat \u2503 lon \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502 10.1 \u2502 30.3 \u2502\n+ \u2502 b \u2502 10.2 \u2502 30.2 \u2502\n+ \u2502 c \u2502 10.3 \u2502 30.1 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n See Also\n --------\n@@ -1058,12 +1917,65 @@ class Table(Expr, _FixedTextJupyterMixin):\n def info(self, buf: IO[str] | None = None) -> None:\n \"\"\"Show summary information about a table.\n \n- Currently implemented as showing column names, types and null counts.\n-\n Parameters\n ----------\n buf\n A writable buffer, defaults to stdout\n+\n+ Returns\n+ -------\n+ None\n+ This method prints to a buffer (stdout by default) and returns nothing.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch(table_name=\"penguins\")\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 193 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 190 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+\n+ Default implementation prints to stdout\n+\n+ >>> t.info() # doctest: +SKIP\n+ Summary of penguins\n+ 344 rows\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 Name \u2503 Type \u2503 # Nulls \u2503 % Nulls \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 species \u2502 String(nullable=True) \u2502 0 \u2502 0.00 \u2502\n+ \u2502 island \u2502 String(nullable=True) \u2502 0 \u2502 0.00 \u2502\n+ \u2502 bill_length_mm \u2502 Float64(nullable=True) \u2502 2 \u2502 0.58 \u2502\n+ \u2502 bill_depth_mm \u2502 Float64(nullable=True) \u2502 2 \u2502 0.58 \u2502\n+ \u2502 flipper_length_mm \u2502 Int64(nullable=True) \u2502 2 \u2502 0.58 \u2502\n+ \u2502 body_mass_g \u2502 Int64(nullable=True) \u2502 2 \u2502 0.58 \u2502\n+ \u2502 sex \u2502 String(nullable=True) \u2502 11 \u2502 3.20 \u2502\n+ \u2502 year \u2502 Int64(nullable=True) \u2502 0 \u2502 0.00 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Store the info into a buffer\n+\n+ >>> import io\n+ >>> buf = io.StringIO()\n+ >>> t.info(buf=buf)\n+ >>> \"Summary of penguins\" in buf.getvalue()\n+ True\n \"\"\"\n import rich\n import rich.table\n@@ -1269,26 +2181,48 @@ class Table(Expr, _FixedTextJupyterMixin):\n Examples\n --------\n >>> import ibis\n- >>> schemas = [(name, 'int64') for name in 'abcde']\n- >>> a, b, c, d, e = [\n- ... ibis.table([(name, type)], name=name) for name, type in schemas\n- ... ]\n- >>> joined1 = ibis.cross_join(a, b, c, d, e)\n- >>> joined1\n- r0 := UnboundTable[e]\n- e int64\n- r1 := UnboundTable[d]\n- d int64\n- r2 := UnboundTable[c]\n- c int64\n- r3 := UnboundTable[b]\n- b int64\n- r4 := UnboundTable[a]\n- a int64\n- r5 := CrossJoin[r3, r2]\n- r6 := CrossJoin[r5, r1]\n- r7 := CrossJoin[r6, r0]\n- CrossJoin[r4, r7]\n+ >>> import ibis.expr.selectors as s\n+ >>> from ibis import _\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> agg = t.drop(\"year\").agg(s.across(s.numeric(), _.mean()))\n+ >>> expr = t.cross_join(agg)\n+ >>> expr\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm_x \u2503 bill_depth_mm_x \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.3 \u2502 20.6 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 38.9 \u2502 17.8 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.2 \u2502 19.6 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 34.1 \u2502 18.1 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 42.0 \u2502 20.2 \u2502 \u2026 \u2502\n+ \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n+ >>> from pprint import pprint\n+ >>> pprint(expr.columns)\n+ ['species',\n+ 'island',\n+ 'bill_length_mm_x',\n+ 'bill_depth_mm_x',\n+ 'flipper_length_mm_x',\n+ 'body_mass_g_x',\n+ 'sex',\n+ 'year',\n+ 'bill_length_mm_y',\n+ 'bill_depth_mm_y',\n+ 'flipper_length_mm_y',\n+ 'body_mass_g_y']\n+ >>> expr.count()\n+ 344\n+ >>> t.count()\n+ 344\n \"\"\"\n op = ops.CrossJoin(\n left,\n@@ -1332,23 +2266,22 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n Examples\n --------\n- >>> con = ibis.duckdb.connect(\"ci/ibis-testing-data/ibis_testing.ddb\")\n- >>> t = con.table(\"functional_alltypes\")\n- >>> expr = t.alias(\"my_t\").sql(\"SELECT sum(double_col) FROM my_t\")\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch()\n+ >>> expr = t.alias(\"ping\u00fcinos\").sql('SELECT * FROM \"ping\u00fcinos\" LIMIT 5')\n >>> expr\n- r0 := AlchemyTable: functional_alltypes\n- index int64\n- \u22ee\n- month int32\n- r1 := View[r0]: my_t\n- schema:\n- index int64\n- \u22ee\n- month int32\n- SQLStringView[r1]: _ibis_view_0\n- query: 'SELECT sum(double_col) FROM my_t'\n- schema:\n- sum(double_col) float64\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2513\n+ \u2503 species \u2503 island \u2503 bill_length_mm \u2503 bill_depth_mm \u2503 flipper_length_mm \u2503 \u2026 \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 float64 \u2502 float64 \u2502 int64 \u2502 \u2026 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2524\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.1 \u2502 18.7 \u2502 181 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 39.5 \u2502 17.4 \u2502 186 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 40.3 \u2502 18.0 \u2502 195 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 nan \u2502 nan \u2502 \u2205 \u2502 \u2026 \u2502\n+ \u2502 Adelie \u2502 Torgersen \u2502 36.7 \u2502 19.3 \u2502 193 \u2502 \u2026 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n \"\"\"\n expr = ops.View(child=self, name=alias).to_expr()\n \n@@ -1364,7 +2297,9 @@ class Table(Expr, _FixedTextJupyterMixin):\n !!! note \"The SQL string is backend specific\"\n \n `query` must be valid SQL for the execution backend the expression\n- will run against\n+ will run against.\n+\n+ This restriction may be lifted in a future version of ibis.\n \n See [`Table.alias`][ibis.expr.types.relations.Table.alias] for\n details on using named table expressions in a SQL string.\n@@ -1381,18 +2316,20 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n Examples\n --------\n- >>> con = ibis.duckdb.connect(\"ci/ibis-testing-data/ibis_testing.ddb\")\n- >>> t = con.table(\"functional_alltypes\")\n- >>> expr = t.sql(\"SELECT sum(double_col) FROM functional_alltypes\")\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> t = ibis.examples.penguins.fetch(table_name=\"penguins\")\n+ >>> expr = t.sql(\"SELECT island, mean(bill_length_mm) FROM penguins GROUP BY 1 ORDER BY 2 DESC\")\n >>> expr\n- r0 := AlchemyTable: functional_alltypes\n- index int64\n- \u22ee\n- month int32\n- SQLStringView[r0]: _ibis_view_1\n- query: 'SELECT sum(double_col) FROM functional_alltypes'\n- schema:\n- sum(double_col) float64\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 island \u2503 mean(bill_length_mm) \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 Biscoe \u2502 45.257485 \u2502\n+ \u2502 Dream \u2502 44.167742 \u2502\n+ \u2502 Torgersen \u2502 38.950980 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \"\"\"\n op = ops.SQLStringView(\n child=self,\n", "strings.py": "@@ -35,6 +35,7 @@ class StringValue(Value):\n >>> import ibis\n >>> ibis.options.interactive = True\n >>> t = ibis.memtable({\"food\": [\"bread\", \"cheese\", \"rice\"], \"idx\": [1, 2, 4]})\n+ >>> t\n \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n \u2503 food \u2503 idx \u2503\n \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n@@ -313,7 +314,7 @@ class StringValue(Value):\n return ops.Strip(self).to_expr()\n \n def lstrip(self) -> StringValue:\n- \"\"\"Remove whitespace from the left side of string.\n+ r\"\"\"Remove whitespace from the left side of string.\n \n Returns\n -------\n@@ -349,7 +350,7 @@ class StringValue(Value):\n return ops.LStrip(self).to_expr()\n \n def rstrip(self) -> StringValue:\n- \"\"\"Remove whitespace from the right side of string.\n+ r\"\"\"Remove whitespace from the right side of string.\n \n Returns\n -------\n@@ -1052,15 +1053,15 @@ class StringValue(Value):\n Extract a specific group\n \n >>> t.s.re_extract(r\"^(a)bc\", 1)\n- \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n- \u2503 RegexExtract(s, '^(a)', 1) \u2503\n- \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n- \u2502 string \u2502\n- \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n- \u2502 a \u2502\n- \u2502 ~ \u2502\n- \u2502 ~ \u2502\n- \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 RegexExtract(s, '^(a)bc', 1) \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502\n+ \u2502 ~ \u2502\n+ \u2502 ~ \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n Extract the entire match\n \n", "structs.py": "@@ -1,14 +1,12 @@\n from __future__ import annotations\n \n import collections\n-\n from keyword import iskeyword\n from typing import TYPE_CHECKING, Iterable, Mapping, Sequence\n \n from public import public\n \n import ibis.expr.operations as ops\n-\n from ibis.expr.types.generic import Column, Scalar, Value, literal\n from ibis.expr.types.typing import V\n \n@@ -88,7 +86,7 @@ class StructValue(Value):\n >>> import ibis\n >>> s = ibis.struct(dict(fruit=\"pear\", weight=0))\n >>> s['fruit']\n- fruit: StructField(frozendict({'fruit': 'pear', 'weight': 0}), field='fruit')\n+ fruit: StructField(...)\n \"\"\"\n return ops.StructField(self, name).to_expr()\n \n@@ -130,21 +128,36 @@ class StructValue(Value):\n \n Examples\n --------\n- >>> schema = dict(a=\"struct<b: float, c: string>\", d=\"string\")\n- >>> t = ibis.table(schema, name=\"t\")\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> lines = '''\n+ ... {\"pos\": {\"lat\": 10.1, \"lon\": 30.3}}\n+ ... {\"pos\": {\"lat\": 10.2, \"lon\": 30.2}}\n+ ... {\"pos\": {\"lat\": 10.3, \"lon\": 30.1}}\n+ ... '''\n+ >>> with open(\"/tmp/lines.json\", \"w\") as f:\n+ ... _ = f.write(lines)\n+ >>> t = ibis.read_json(\"/tmp/lines.json\")\n >>> t\n- UnboundTable: t\n- a struct<b: float64, c: string>\n- d string\n- >>> t.a.lift()\n- r0 := UnboundTable: t\n- a struct<b: float64, c: string>\n- d string\n-\n- Selection[r0]\n- selections:\n- b: StructField(r0.a, field='b')\n- c: StructField(r0.a, field='c')\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 pos \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 struct<lat: float64, lon: float64> \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 {'lat': 10.1, 'lon': 30.3} \u2502\n+ \u2502 {'lat': 10.2, 'lon': 30.2} \u2502\n+ \u2502 {'lat': 10.3, 'lon': 30.1} \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.pos.lift()\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 lat \u2503 lon \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 float64 \u2502 float64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 10.1 \u2502 30.3 \u2502\n+ \u2502 10.2 \u2502 30.2 \u2502\n+ \u2502 10.3 \u2502 30.1 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \n See Also\n --------\n", "vectorized.py": "@@ -133,28 +133,25 @@ def _coerce_to_dataframe(\n \n Examples\n --------\n- >>> _coerce_to_dataframe(pd.DataFrame({'a': [1, 2, 3]}), dt.Struct([('b', 'int32')])) # noqa: E501\n+ >>> import pandas as pd\n+ >>> _coerce_to_dataframe(pd.DataFrame({'a': [1, 2, 3]}), dt.Struct(dict(b=\"int32\"))) # noqa: E501\n b\n 0 1\n 1 2\n 2 3\n- dtype: int32\n- >>> _coerce_to_dataframe(pd.Series([[1, 2, 3]]), dt.Struct([('a', 'int32'), ('b', 'int32'), ('c', 'int32')])) # noqa: E501\n+ >>> _coerce_to_dataframe(pd.Series([[1, 2, 3]]), dt.Struct(dict.fromkeys('abc', 'int32'))) # noqa: E501\n a b c\n 0 1 2 3\n- dtypes: [int32, int32, int32]\n- >>> _coerce_to_dataframe(pd.Series([range(3), range(3)]), dt.Struct([('a', 'int32'), ('b', 'int32'), ('c', 'int32')])) # noqa: E501\n+ >>> _coerce_to_dataframe(pd.Series([range(3), range(3)]), dt.Struct(dict.fromkeys('abc', 'int32'))) # noqa: E501\n a b c\n 0 0 1 2\n 1 0 1 2\n- dtypes: [int32, int32, int32]\n- >>> _coerce_to_dataframe([pd.Series(x) for x in [1, 2, 3]], dt.Struct([('a', 'int32'), ('b', 'int32'), ('c', 'int32')])) # noqa: E501\n+ >>> _coerce_to_dataframe([pd.Series(x) for x in [1, 2, 3]], dt.Struct(dict.fromkeys('abc', 'int32'))) # noqa: E501\n a b c\n 0 1 2 3\n- >>> _coerce_to_dataframe([1, 2, 3], dt.Struct([('a', 'int32'), ('b', 'int32'), ('c', 'int32')])) # noqa: E501\n+ >>> _coerce_to_dataframe([1, 2, 3], dt.Struct(dict.fromkeys('abc', 'int32'))) # noqa: E501\n a b c\n 0 1 2 3\n- dtypes: [int32, int32, int32]\n \"\"\"\n import pandas as pd\n \n@@ -285,7 +282,7 @@ def analytic(input_type, output_type):\n \n >>> @analytic(\n ... input_type=[dt.double],\n- ... output_type=dt.Struct(['demean', 'zscore'], [dt.double, dt.double])\n+ ... output_type=dt.Struct(dict(demean=\"double\", zscore=\"double\")),\n ... )\n ... def demean_and_zscore(v):\n ... mean = v.mean()\n@@ -294,7 +291,7 @@ def analytic(input_type, output_type):\n >>>\n >>> win = ibis.window(preceding=None, following=None, group_by='key')\n >>> # add two columns \"demean\" and \"zscore\"\n- >>> table = table.mutate(\n+ >>> table = table.mutate( # doctest: +SKIP\n ... demean_and_zscore(table['v']).over(win).destructure()\n ... )\n \"\"\"\n@@ -332,13 +329,13 @@ def elementwise(input_type, output_type):\n \n >>> @elementwise(\n ... input_type=[dt.string],\n- ... output_type=dt.Struct(['year', 'monthday'], [dt.string, dt.string])\n+ ... output_type=dt.Struct(dict(year=dt.string, monthday=dt.string))\n ... )\n ... def year_monthday(date):\n ... return date.str.slice(0, 4), date.str.slice(4, 8)\n >>>\n >>> # add two columns \"year\" and \"monthday\"\n- >>> table = table.mutate(year_monthday(table['date']).destructure())\n+ >>> table = table.mutate(year_monthday(table['date']).destructure()) # doctest: +SKIP\n \"\"\"\n return _udf_decorator(ElementWiseVectorizedUDF, input_type, output_type)\n \n@@ -368,13 +365,13 @@ def reduction(input_type, output_type):\n \n >>> @reduction(\n ... input_type=[dt.double],\n- ... output_type=dt.Struct(['mean', 'std'], [dt.double, dt.double])\n+ ... output_type=dt.Struct(dict(mean=\"double\", std=\"double\"))\n ... )\n ... def mean_and_std(v):\n ... return v.mean(), v.std()\n >>>\n >>> # create aggregation columns \"mean\" and \"std\"\n- >>> table = table.group_by('key').aggregate(\n+ >>> table = table.group_by('key').aggregate( # doctest: +SKIP\n ... mean_and_std(table['v']).destructure()\n ... )\n \"\"\"\n", "justfile": "@@ -47,6 +47,21 @@ test +backends:\n \n pytest \"${pytest_args[@]}\"\n \n+# run doctests\n+doctest *args:\n+ #!/usr/bin/env bash\n+\n+ # TODO(cpcloud): why doesn't pytest --ignore-glob=test_*.py work?\n+ mapfile -t doctest_modules < <(\n+ find \\\n+ ibis \\\n+ -wholename '*.py' \\\n+ -and -not -wholename '*test*.py' \\\n+ -and -not -wholename '*__init__*' \\\n+ -and -not -wholename '*gen_*.py'\n+ )\n+ pytest --doctest-modules {{ args }} \"${doctest_modules[@]}\"\n+\n # download testing data\n download-data owner=\"ibis-project\" repo=\"testing-data\" rev=\"master\":\n #!/usr/bin/env bash\n", "pyproject.toml": "@@ -226,14 +226,30 @@ doctest_optionflags = [\n ]\n xfail_strict = true\n addopts = [\n- \"--ignore=site-packages\",\n- \"--ignore=dist-packages\",\n \"--strict-markers\",\n \"--strict-config\",\n \"--benchmark-disable\",\n \"--benchmark-group-by=name\",\n \"--benchmark-sort=name\",\n ]\n+norecursedirs = [\n+ \"**/snapshots\",\n+ \".benchmarks\",\n+ \".direnv\",\n+ \".git\",\n+ \".github\",\n+ \".hypothesis\",\n+ \".pytest_cache\",\n+ \".streamlit\",\n+ \"LICENSES\",\n+ \"ci\",\n+ \"conda-lock\",\n+ \"dev\",\n+ \"docker\",\n+ \"docs\",\n+ \"nix\",\n+ \"result*\",\n+]\n filterwarnings = [\n # fail on any warnings that are not explicitly matched below\n \"error\",\n@@ -281,22 +297,10 @@ filterwarnings = [\n \"ignore:Deprecated call to `pkg_resources\\\\.declare_namespace\\\\('google.*'\\\\):DeprecationWarning\",\n # pyspark on python 3.11\n \"ignore:typing\\\\.io is deprecated:DeprecationWarning\",\n+ # warnings from google's use of the cgi module\n+ \"ignore:'cgi' is deprecated and slated for removal in Python 3\\\\.13:DeprecationWarning\",\n ]\n empty_parameter_set_mark = \"fail_at_collect\"\n-norecursedirs = [\n- \".benchmarks\",\n- \".direnv\",\n- \".git\",\n- \".github\",\n- \"LICENSES\",\n- \"ci\",\n- \"conda-lock\",\n- \"dev\",\n- \"docker\",\n- \"nix\",\n- \"result\",\n- \"result-*\",\n-]\n markers = [\n \"backend: tests specific to a backend\",\n \"benchmark: benchmarks\",\n"}
chore(release): update internal dependencies to use tilde [skip ci]
bcbc6292eb0b377a5acfdb320f37607bcd087050
chore
https://github.com/mikro-orm/mikro-orm/commit/bcbc6292eb0b377a5acfdb320f37607bcd087050
update internal dependencies to use tilde [skip ci]
{"package.json": "@@ -58,7 +58,7 @@\n \"access\": \"public\"\n },\n \"dependencies\": {\n- \"@mikro-orm/knex\": \"^5.8.4\",\n+ \"@mikro-orm/knex\": \"~5.8.4\",\n \"fs-extra\": \"11.1.1\",\n \"sqlite3\": \"5.1.6\",\n \"sqlstring-sqlite\": \"0.1.1\"\n", "yarn.lock": "Binary files a/yarn.lock and b/yarn.lock differ\n"}
fix(query-builder): respect collection property where conditions (declarative partial loading) Closes #5445
3b4fc417c9f85f7309d78faddcf11985667c5c20
fix
https://github.com/mikro-orm/mikro-orm/commit/3b4fc417c9f85f7309d78faddcf11985667c5c20
respect collection property where conditions (declarative partial loading) Closes #5445
{"MySqlKnexDialect.ts": "@@ -1,6 +1,6 @@\n-import { MonkeyPatchable } from '@mikro-orm/knex';\n import { MySqlQueryCompiler } from './MySqlQueryCompiler';\n import { MySqlColumnCompiler } from './MySqlColumnCompiler';\n+import { MonkeyPatchable } from '../../MonkeyPatchable';\n \n export class MySqlKnexDialect extends MonkeyPatchable.MySqlDialect {\n \n", "PostgreSqlKnexDialect.ts": "@@ -1,6 +1,6 @@\n-import { MonkeyPatchable } from '@mikro-orm/knex';\n import type { Configuration } from '@mikro-orm/core';\n import { PostgreSqlTableCompiler } from './PostgreSqlTableCompiler';\n+import { MonkeyPatchable } from '../../MonkeyPatchable';\n \n export class PostgreSqlKnexDialect extends MonkeyPatchable.PostgresDialect {\n \n", "QueryBuilderHelper.ts": "@@ -186,6 +186,7 @@ export class QueryBuilderHelper {\n const inverseJoinColumns = prop.referencedColumnNames;\n const primaryKeys = prop.owner ? prop.joinColumns : prop2.referencedColumnNames;\n schema ??= prop.targetMeta?.schema === '*' ? '*' : this.driver.getSchemaName(prop.targetMeta);\n+ cond = Utils.merge(cond, prop.where);\n \n return {\n prop, type, cond, ownerAlias, alias, table, schema,\n", "GH5445.test.ts": "@@ -11,6 +11,11 @@ import {\n Opt,\n } from '@mikro-orm/postgresql';\n \n+export enum CommentObjectTypeEnum {\n+ comment = 'comment',\n+ post = 'post',\n+}\n+\n abstract class BaseEntity {\n \n [OptionalProps]?: 'createdAt' | 'updatedAt';\n@@ -65,6 +70,9 @@ class Post extends BaseEntity {\n @OneToMany({\n entity: () => Comment,\n mappedBy: 'post',\n+ where: {\n+ objectType: CommentObjectTypeEnum.post,\n+ },\n })\n comments = new Collection<Comment>(this);\n \n@@ -101,11 +109,6 @@ class Comment {\n \n }\n \n-export enum CommentObjectTypeEnum {\n- comment = 'comment',\n- post = 'post',\n-}\n-\n let orm: MikroORM;\n \n beforeAll(async () => {\n@@ -134,6 +137,13 @@ beforeAll(async () => {\n createdAt: new Date(),\n updatedAt: new Date(),\n });\n+ orm.em.create(Comment, {\n+ objectType: CommentObjectTypeEnum.comment,\n+ post: 5,\n+ content: 'bad comment content',\n+ createdAt: new Date(),\n+ updatedAt: new Date(),\n+ });\n await orm.em.flush();\n orm.em.clear();\n });\n@@ -146,56 +156,25 @@ test('define joined columns in leftJoinAndSelect()', async () => {\n const posts = await orm.em\n .createQueryBuilder(Post, 'post')\n .leftJoinAndSelect('post.author', 'author', {}, [\n- 'author.id',\n- 'author.name',\n- 'author.biography',\n+ 'id',\n+ 'name',\n+ 'biography',\n ])\n- .leftJoinAndSelect(\n- 'post.comments',\n- 'comments',\n- {\n- objectType: CommentObjectTypeEnum.post,\n- content: { $ne: null },\n- },\n- [\n- 'comments.content',\n- 'comments.created_at',\n- 'comments.updated_at',\n- ],\n- )\n+ .leftJoinAndSelect('post.comments', 'comments')\n .where({ id: 5 })\n .getResult();\n \n- expect(posts[0].id).toBe(5);\n- expect(posts[0].author).toBeDefined();\n- expect(posts[0].author.id).toBe(3);\n- expect(posts[0].author.name).toBe('author name');\n- expect(posts[0].author.biography).toBe('author bio');\n expect(posts[0].comments).toBeDefined();\n- expect(posts[0].comments![0]).toBeDefined();\n- expect(posts[0].comments![0].content).toBe('comment content');\n- expect(posts[0].comments![0].createdAt).toBeDefined();\n- expect(posts[0].comments![0].updatedAt).toBeDefined();\n+ expect(posts[0].comments.length).toBe(1);\n });\n \n-test('use subquery for comments', async () => {\n- const commentsSubQuery = orm.em\n- .createQueryBuilder(Comment, 'comments')\n- .select([\n- 'post',\n- 'objectType',\n- 'content',\n- 'createdAt',\n- 'updatedAt',\n- ]);\n-\n+test('em.find', async () => {\n const posts = await orm.em\n- .createQueryBuilder(Post, 'post')\n- .leftJoinAndSelect('post.author', 'author')\n- .leftJoinAndSelect(['post.comments', commentsSubQuery], 'comments', {\n- objectType: CommentObjectTypeEnum.post,\n- content: { $ne: null },\n- })\n- .where({ id: 5 })\n- .getResult();\n+ .find(Post, { id: 5 }, {\n+ populate: ['author', 'comments'],\n+ fields: ['author.name', 'author.biography'],\n+ });\n+\n+ expect(posts[0].comments).toBeDefined();\n+ expect(posts[0].comments.length).toBe(1);\n });\n"}
fix(cli): only use dynamic imports for ESM projects Closes #3442
b3e43d0fd98c090a47059597b719924260573e3b
fix
https://github.com/mikro-orm/mikro-orm/commit/b3e43d0fd98c090a47059597b719924260573e3b
only use dynamic imports for ESM projects Closes #3442
{"CLIHelper.ts": "@@ -20,6 +20,11 @@ export class CLIHelper {\n }\n \n static async getORM(warnWhenNoEntities?: boolean, opts: Partial<Options> = {}): Promise<MikroORM> {\n+ if (!(await ConfigurationLoader.isESM())) {\n+ opts.dynamicImportProvider ??= id => Utils.requireFrom(id, process.cwd());\n+ Utils.setDynamicImportProvider(opts.dynamicImportProvider);\n+ }\n+\n const options = await CLIHelper.getConfiguration(warnWhenNoEntities, opts);\n options.set('allowGlobalContext', true);\n options.set('debug', !!process.env.MIKRO_ORM_VERBOSE);\n", "ConfigurationLoader.ts": "@@ -17,7 +17,6 @@ export class ConfigurationLoader {\n this.registerDotenv(options);\n const paths = await this.getConfigPaths();\n const env = this.loadEnvironmentVars();\n- const isESM = (await this.getModuleFormatFromPackage()) === 'module';\n \n for (let path of paths) {\n path = Utils.absolutePath(path);\n@@ -36,7 +35,7 @@ export class ConfigurationLoader {\n tmp = await tmp;\n }\n \n- const esmConfigOptions = isESM ? { entityGenerator: { esmImport: true } } : {};\n+ const esmConfigOptions = await this.isESM() ? { entityGenerator: { esmImport: true } } : {};\n \n return new Configuration({ ...esmConfigOptions, ...tmp, ...options, ...env }, validate);\n }\n@@ -103,9 +102,11 @@ export class ConfigurationLoader {\n return paths.filter(p => p.endsWith('.js') || tsNode);\n }\n \n- static async getModuleFormatFromPackage(): Promise<string> {\n+ static async isESM(): Promise<boolean> {\n const config = await ConfigurationLoader.getPackageConfig();\n- return config?.type ?? '';\n+ const type = config?.type ?? '';\n+\n+ return type === 'module';\n }\n \n static async registerTsNode(configPath = 'tsconfig.json'): Promise<boolean> {\n", "CLIHelper.test.ts": "@@ -411,14 +411,12 @@ Maybe you want to check, or regenerate your yarn.lock or package-lock.json file?\n pathExistsMock.mockRestore();\n });\n \n- test('getModuleFormatFromPackage gets the type from package.json', async () => {\n- const mikroPackage = await ConfigurationLoader.getModuleFormatFromPackage();\n- expect(mikroPackage).toEqual('');\n+ test('isESM', async () => {\n+ await expect(ConfigurationLoader.isESM()).resolves.toEqual(false);\n \n const packageSpy = jest.spyOn(ConfigurationLoader, 'getPackageConfig');\n packageSpy.mockResolvedValue({ type: 'module' });\n- const esmModulePackage = await ConfigurationLoader.getModuleFormatFromPackage();\n- expect(esmModulePackage).toEqual('module');\n+ await expect(ConfigurationLoader.isESM()).resolves.toEqual(true);\n const pathExistsMock = jest.spyOn(require('fs-extra'), 'pathExists');\n pathExistsMock.mockResolvedValue(true);\n const conf = await CLIHelper.getConfiguration();\n"}
feat(api): add `to_pandas_batches`
740778fafc78f291966f3951a1ce00531cacb0c1
feat
https://github.com/rohankumardubey/ibis/commit/740778fafc78f291966f3951a1ce00531cacb0c1
add `to_pandas_batches`
{"__init__.py": "@@ -1,6 +1,7 @@\n from __future__ import annotations\n \n import contextlib\n+import functools\n import glob\n import inspect\n import itertools\n@@ -374,6 +375,28 @@ $$\"\"\".format(\n df = table.to_pandas(timestamp_as_object=True)\n return SnowflakePandasData.convert_table(df, schema)\n \n+ def to_pandas_batches(\n+ self,\n+ expr: ir.Expr,\n+ *,\n+ params: Mapping[ir.Scalar, Any] | None = None,\n+ limit: int | str | None = None,\n+ **_: Any,\n+ ) -> Iterator[pd.DataFrame | pd.Series | Any]:\n+ self._run_pre_execute_hooks(expr)\n+ query_ast = self.compiler.to_ast_ensure_limit(expr, limit, params=params)\n+ sql = query_ast.compile()\n+ target_schema = expr.as_table().schema()\n+ converter = functools.partial(\n+ SnowflakePandasData.convert_table, schema=target_schema\n+ )\n+\n+ with self.begin() as con, contextlib.closing(con.execute(sql)) as cur:\n+ yield from map(\n+ expr.__pandas_result__,\n+ map(converter, cur.cursor.fetch_pandas_batches()),\n+ )\n+\n def to_pyarrow_batches(\n self,\n expr: ir.Expr,\n", "test_export.py": "@@ -445,3 +445,44 @@ def test_empty_memtable(backend, con):\n table = ibis.memtable(expected)\n result = con.execute(table)\n backend.assert_frame_equal(result, expected)\n+\n+\[email protected]([\"dask\", \"flink\", \"impala\", \"pyspark\"])\n+def test_to_pandas_batches_empty_table(backend, con):\n+ t = backend.functional_alltypes.limit(0)\n+ n = t.count().execute()\n+\n+ assert sum(map(len, con.to_pandas_batches(t))) == n\n+ assert sum(map(len, t.to_pandas_batches())) == n\n+\n+\[email protected]([\"dask\", \"druid\", \"flink\", \"impala\", \"pyspark\"])\[email protected](\"n\", [None, 1])\n+def test_to_pandas_batches_nonempty_table(backend, con, n):\n+ t = backend.functional_alltypes.limit(n)\n+ n = t.count().execute()\n+\n+ assert sum(map(len, con.to_pandas_batches(t))) == n\n+ assert sum(map(len, t.to_pandas_batches())) == n\n+\n+\[email protected]([\"dask\", \"flink\", \"impala\", \"pyspark\"])\[email protected](\"n\", [None, 0, 1, 2])\n+def test_to_pandas_batches_column(backend, con, n):\n+ t = backend.functional_alltypes.limit(n).timestamp_col\n+ n = t.count().execute()\n+\n+ assert sum(map(len, con.to_pandas_batches(t))) == n\n+ assert sum(map(len, t.to_pandas_batches())) == n\n+\n+\[email protected]([\"dask\", \"druid\", \"flink\", \"impala\", \"pyspark\"])\n+def test_to_pandas_batches_scalar(backend, con):\n+ t = backend.functional_alltypes.timestamp_col.max()\n+ expected = t.execute()\n+\n+ result1 = list(con.to_pandas_batches(t))\n+ assert result1 == [expected]\n+\n+ result2 = list(t.to_pandas_batches())\n+ assert result2 == [expected]\n", "core.py": "@@ -3,7 +3,7 @@ from __future__ import annotations\n import contextlib\n import os\n import webbrowser\n-from typing import TYPE_CHECKING, Any, Mapping, NoReturn, Tuple\n+from typing import TYPE_CHECKING, Any, Mapping, NoReturn, Tuple, Iterator\n \n from public import public\n from rich.jupyter import JupyterMixin\n@@ -422,6 +422,44 @@ class Expr(Immutable, Coercible):\n self, params=params, limit=limit, **kwargs\n )\n \n+ @experimental\n+ def to_pandas_batches(\n+ self,\n+ *,\n+ limit: int | str | None = None,\n+ params: Mapping[ir.Value, Any] | None = None,\n+ chunk_size: int = 1_000_000,\n+ **kwargs: Any,\n+ ) -> Iterator[pd.DataFrame | pd.Series | Any]:\n+ \"\"\"Execute expression and return an iterator of pandas DataFrames.\n+\n+ This method is eager and will execute the associated expression\n+ immediately.\n+\n+ Parameters\n+ ----------\n+ limit\n+ An integer to effect a specific row limit. A value of `None` means\n+ \"no limit\". The default is in `ibis/config.py`.\n+ params\n+ Mapping of scalar parameter expressions to value.\n+ chunk_size\n+ Maximum number of rows in each returned batch.\n+ kwargs\n+ Keyword arguments\n+\n+ Returns\n+ -------\n+ Iterator[pd.DataFrame]\n+ \"\"\"\n+ return self._find_backend(use_default=True).to_pandas_batches(\n+ self,\n+ params=params,\n+ limit=limit,\n+ chunk_size=chunk_size,\n+ **kwargs,\n+ )\n+\n @experimental\n def to_parquet(\n self,\n"}
fix(ir): handle the case of non-overlapping data and add a test
1c9ae1b15f97f31940550689649f2e27c5298ea1
fix
https://github.com/rohankumardubey/ibis/commit/1c9ae1b15f97f31940550689649f2e27c5298ea1
handle the case of non-overlapping data and add a test
{"test_join.py": "@@ -328,6 +328,10 @@ def test_join_with_trivial_predicate(awards_players, predicate, how, pandas_valu\n assert len(result) == len(expected)\n \n \[email protected](\n+ [\"druid\"], raises=sa.exc.NoSuchTableError, reason=\"`win` table isn't loaded\"\n+)\[email protected]([\"flink\"], reason=\"`win` table isn't loaded\")\n @pytest.mark.parametrize(\n (\"how\", \"nrows\"),\n [\n@@ -349,17 +353,30 @@ def test_join_with_trivial_predicate(awards_players, predicate, how, pandas_valu\n ),\n ],\n )\[email protected](\n- [\"druid\"], raises=sa.exc.NoSuchTableError, reason=\"`win` table isn't loaded\"\[email protected](\n+ (\"gen_right\", \"keys\"),\n+ [\n+ param(\n+ lambda left: left.filter(lambda t: t.x == 1).select(y=lambda t: t.x),\n+ [(\"x\", \"y\")],\n+ id=\"non_overlapping\",\n+ marks=[pytest.mark.notyet([\"polars\"], reason=\"renaming fails\")],\n+ ),\n+ param(\n+ lambda left: left.filter(lambda t: t.x == 1),\n+ \"x\",\n+ id=\"overlapping\",\n+ marks=[pytest.mark.notimpl([\"pyspark\"], reason=\"overlapping columns\")],\n+ ),\n+ ],\n )\[email protected]([\"flink\"], reason=\"`win` table isn't loaded\")\n-def test_outer_join_nullability(backend, how, nrows):\n+def test_outer_join_nullability(backend, how, nrows, gen_right, keys):\n win = backend.win\n left = win.select(x=lambda t: t.x.cast(t.x.type().copy(nullable=False))).filter(\n lambda t: t.x.isin((1, 2))\n )\n- right = left.filter(lambda t: t.x == 1)\n- expr = left.join(right, \"x\", how=how)\n+ right = gen_right(left)\n+ expr = left.join(right, keys, how=how)\n assert all(typ.nullable for typ in expr.schema().types)\n \n result = expr.to_pyarrow()\n", "relations.py": "@@ -293,17 +293,29 @@ class InnerJoin(Join):\n \n @public\n class LeftJoin(Join):\n- pass\n+ @property\n+ def schema(self) -> Schema:\n+ return Schema(\n+ {name: typ.copy(nullable=True) for name, typ in super().schema.items()}\n+ )\n \n \n @public\n class RightJoin(Join):\n- pass\n+ @property\n+ def schema(self) -> Schema:\n+ return Schema(\n+ {name: typ.copy(nullable=True) for name, typ in super().schema.items()}\n+ )\n \n \n @public\n class OuterJoin(Join):\n- pass\n+ @property\n+ def schema(self) -> Schema:\n+ return Schema(\n+ {name: typ.copy(nullable=True) for name, typ in super().schema.items()}\n+ )\n \n \n @public\n@@ -313,7 +325,11 @@ class AnyInnerJoin(Join):\n \n @public\n class AnyLeftJoin(Join):\n- pass\n+ @property\n+ def schema(self) -> Schema:\n+ return Schema(\n+ {name: typ.copy(nullable=True) for name, typ in super().schema.items()}\n+ )\n \n \n @public\n"}
feat(docs): add new component to display code snippets side-by-side
146328c7e7eab41c7cfe4e67d26af58eeca9c09c
feat
https://github.com/wzhiqing/cube/commit/146328c7e7eab41c7cfe4e67d26af58eeca9c09c
add new component to display code snippets side-by-side
{"SnippetGroup.tsx": "@@ -0,0 +1,12 @@\n+import React from 'react';\n+import * as styles from './styles.module.scss';\n+\n+export const Snippet = ({ children }) => children;\n+\n+export const SnippetGroup = ({ children }) => {\n+ return (\n+ <div className={styles.snippetGroup}>\n+ {children}\n+ </div>\n+ );\n+};\n", "styles.module.scss": "@@ -0,0 +1,4 @@\n+.snippetGroup {\n+ display: flex;\n+ gap: 1rem;\n+}\n", "DocTemplate.tsx": "@@ -42,6 +42,7 @@ import ScrollSpyH3 from '../components/Headers/ScrollSpyH3';\n import MyH2 from '../components/Headers/MyH2';\n import MyH3 from '../components/Headers/MyH3';\n import { ParameterTable } from '../components/ReferenceDocs/ParameterTable';\n+import { Snippet, SnippetGroup } from '../components/Snippets/SnippetGroup';\n \n const MyH4: React.FC<{ children: string }> = ({ children }) => {\n return (<h4 id={kebabCase(children)} name={kebabCase(children)}>{children}</h4>);\n@@ -59,6 +60,8 @@ const components = {\n CubeQueryResultSet,\n GitHubFolderLink,\n ParameterTable,\n+ SnippetGroup,\n+ Snippet,\n h2: ScrollSpyH2,\n h3: ScrollSpyH3,\n h4: MyH4,\n"}
feat(api): add `levenshtein` edit distance API
ab211a8da79d8a418d33ba7c25d25cf625bfa9f5
feat
https://github.com/ibis-project/ibis/commit/ab211a8da79d8a418d33ba7c25d25cf625bfa9f5
add `levenshtein` edit distance API
{"postgres.sql": "@@ -3,6 +3,7 @@ CREATE EXTENSION IF NOT EXISTS postgis;\n CREATE EXTENSION IF NOT EXISTS plpython3u;\n CREATE EXTENSION IF NOT EXISTS vector;\n CREATE EXTENSION IF NOT EXISTS first_last_agg;\n+CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;\n \n DROP TABLE IF EXISTS diamonds CASCADE;\n \n", "registry.py": "@@ -473,6 +473,7 @@ operation_registry.update(\n lambda arg: sa.cast(sa.func.date_format(arg, \"%f\"), sa.INTEGER()),\n 1,\n ),\n+ ops.Levenshtein: fixed_arity(sa.func.levenshtein_distance, 2),\n }\n )\n \n", "compiler.py": "@@ -2059,3 +2059,10 @@ def compile_hash_column(t, op, **kwargs):\n @compiles(ops.ArrayZip)\n def compile_zip(t, op, **kwargs):\n return F.arrays_zip(*map(partial(t.translate, **kwargs), op.arg))\n+\n+\n+@compiles(ops.Levenshtein)\n+def compile_levenshtein(t, op, **kwargs):\n+ left = t.translate(op.left, **kwargs)\n+ right = t.translate(op.right, **kwargs)\n+ return F.levenshtein(left, right)\n", "test_string.py": "@@ -1023,3 +1023,28 @@ def test_multiple_subs(con):\n expr = ibis.literal(\"foo\").substitute(m)\n result = con.execute(expr)\n assert result == \"FOO\"\n+\n+\[email protected](\n+ [\n+ \"clickhouse\",\n+ \"dask\",\n+ \"datafusion\",\n+ \"druid\",\n+ \"impala\",\n+ \"mssql\",\n+ \"mysql\",\n+ \"pandas\",\n+ \"polars\",\n+ \"sqlite\",\n+ ],\n+ raises=com.OperationNotDefinedError,\n+)\[email protected](\n+ \"right\", [\"sitting\", ibis.literal(\"sitting\")], ids=[\"python\", \"ibis\"]\n+)\n+def test_levenshtein(con, right):\n+ left = ibis.literal(\"kitten\")\n+ expr = left.levenshtein(right)\n+ result = con.execute(expr)\n+ assert result == 3\n", "strings.py": "@@ -1515,6 +1515,29 @@ class StringValue(Value):\n \n __rmul__ = __mul__\n \n+ def levenshtein(self, other: StringValue) -> ir.IntegerValue:\n+ \"\"\"Return the Levenshtein distance between two strings.\n+\n+ Parameters\n+ ----------\n+ other\n+ String to compare to\n+\n+ Returns\n+ -------\n+ IntegerValue\n+ The edit distance between the two strings\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> s = ibis.literal(\"kitten\")\n+ >>> s.levenshtein(\"sitting\")\n+ 3\n+ \"\"\"\n+ return ops.Levenshtein(self, other).to_expr()\n+\n \n @public\n class StringScalar(Scalar, StringValue):\n"}
fix: minor bugs
a8c1113df711ec8000960636eec3621c5a1b9ffc
fix
https://github.com/erg-lang/erg/commit/a8c1113df711ec8000960636eec3621c5a1b9ffc
minor bugs
{"const_func.rs": "@@ -4,7 +4,7 @@ use std::mem;\n use erg_common::dict::Dict;\n #[allow(unused_imports)]\n use erg_common::log;\n-use erg_common::{dict, enum_unwrap, set};\n+use erg_common::{dict, set};\n \n use crate::context::Context;\n use crate::feature_error;\n@@ -186,14 +186,19 @@ pub(crate) fn __array_getitem__(mut args: ValueArgs, ctx: &Context) -> EvalValue\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = ctx\n- .convert_value_into_array(slf)\n- .unwrap_or_else(|err| panic!(\"{err}, {args}\"));\n+ let slf = match ctx.convert_value_into_array(slf) {\n+ Ok(slf) => slf,\n+ Err(val) => {\n+ return Err(type_mismatch(\"Array\", val, \"Self\"));\n+ }\n+ };\n let index = args\n .remove_left_or_key(\"Index\")\n .ok_or_else(|| not_passed(\"Index\"))?;\n- let index = enum_unwrap!(index, ValueObj::Nat);\n- if let Some(v) = slf.get(index as usize) {\n+ let Ok(index) = usize::try_from(&index) else {\n+ return Err(type_mismatch(\"Nat\", index, \"Index\"));\n+ };\n+ if let Some(v) = slf.get(index) {\n Ok(v.clone().into())\n } else {\n Err(ErrorCore::new(\n@@ -280,7 +285,9 @@ pub(crate) fn __dict_getitem__(mut args: ValueArgs, ctx: &Context) -> EvalValueR\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = enum_unwrap!(slf, ValueObj::Dict);\n+ let ValueObj::Dict(slf) = slf else {\n+ return Err(type_mismatch(\"Dict\", slf, \"Self\"));\n+ };\n let index = args\n .remove_left_or_key(\"Index\")\n .ok_or_else(|| not_passed(\"Index\"))?;\n@@ -302,7 +309,9 @@ pub(crate) fn dict_keys(mut args: ValueArgs, ctx: &Context) -> EvalValueResult<T\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = enum_unwrap!(slf, ValueObj::Dict);\n+ let ValueObj::Dict(slf) = slf else {\n+ return Err(type_mismatch(\"Dict\", slf, \"Self\"));\n+ };\n let slf = slf\n .into_iter()\n .map(|(k, v)| {\n@@ -324,7 +333,9 @@ pub(crate) fn dict_values(mut args: ValueArgs, ctx: &Context) -> EvalValueResult\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = enum_unwrap!(slf, ValueObj::Dict);\n+ let ValueObj::Dict(slf) = slf else {\n+ return Err(type_mismatch(\"Dict\", slf, \"Self\"));\n+ };\n let slf = slf\n .into_iter()\n .map(|(k, v)| {\n@@ -346,7 +357,9 @@ pub(crate) fn dict_items(mut args: ValueArgs, ctx: &Context) -> EvalValueResult<\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = enum_unwrap!(slf, ValueObj::Dict);\n+ let ValueObj::Dict(slf) = slf else {\n+ return Err(type_mismatch(\"Dict\", slf, \"Self\"));\n+ };\n let slf = slf\n .into_iter()\n .map(|(k, v)| {\n@@ -369,11 +382,15 @@ pub(crate) fn dict_concat(mut args: ValueArgs, _ctx: &Context) -> EvalValueResul\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = enum_unwrap!(slf, ValueObj::Dict);\n+ let ValueObj::Dict(slf) = slf else {\n+ return Err(type_mismatch(\"Dict\", slf, \"Self\"));\n+ };\n let other = args\n .remove_left_or_key(\"Other\")\n .ok_or_else(|| not_passed(\"Other\"))?;\n- let other = enum_unwrap!(other, ValueObj::Dict);\n+ let ValueObj::Dict(other) = other else {\n+ return Err(type_mismatch(\"Dict\", other, \"Other\"));\n+ };\n Ok(ValueObj::Dict(slf.concat(other)).into())\n }\n \n@@ -381,11 +398,15 @@ pub(crate) fn dict_diff(mut args: ValueArgs, _ctx: &Context) -> EvalValueResult<\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = enum_unwrap!(slf, ValueObj::Dict);\n+ let ValueObj::Dict(slf) = slf else {\n+ return Err(type_mismatch(\"Dict\", slf, \"Self\"));\n+ };\n let other = args\n .remove_left_or_key(\"Other\")\n .ok_or_else(|| not_passed(\"Other\"))?;\n- let other = enum_unwrap!(other, ValueObj::Dict);\n+ let ValueObj::Dict(other) = other else {\n+ return Err(type_mismatch(\"Dict\", other, \"Other\"));\n+ };\n Ok(ValueObj::Dict(slf.diff(&other)).into())\n }\n \n@@ -394,7 +415,9 @@ pub(crate) fn array_union(mut args: ValueArgs, ctx: &Context) -> EvalValueResult\n let slf = args\n .remove_left_or_key(\"Self\")\n .ok_or_else(|| not_passed(\"Self\"))?;\n- let slf = enum_unwrap!(slf, ValueObj::Array);\n+ let ValueObj::Array(slf) = slf else {\n+ return Err(type_mismatch(\"Array\", slf, \"Self\"));\n+ };\n let slf = slf\n .iter()\n .map(|t| ctx.convert_value_into_type(t.clone()).unwrap())\n@@ -423,7 +446,12 @@ fn _arr_shape(arr: ValueObj, ctx: &Context) -> Result<Vec<TyParam>, String> {\n }\n ValueObj::Type(ref t) if &t.typ().qual_name()[..] == \"Array\" => {\n let mut tps = t.typ().typarams();\n- let elem = ctx.convert_tp_into_type(tps.remove(0)).unwrap();\n+ let elem = match ctx.convert_tp_into_type(tps.remove(0)) {\n+ Ok(elem) => elem,\n+ Err(err) => {\n+ return Err(err.to_string());\n+ }\n+ };\n let len = tps.remove(0);\n shape.push(len);\n arr = ValueObj::builtin_type(elem);\n@@ -452,24 +480,31 @@ pub(crate) fn array_shape(mut args: ValueArgs, ctx: &Context) -> EvalValueResult\n }\n \n pub(crate) fn __range_getitem__(mut args: ValueArgs, _ctx: &Context) -> EvalValueResult<TyParam> {\n- let (_name, fields) = enum_unwrap!(\n- args.remove_left_or_key(\"Self\")\n- .ok_or_else(|| not_passed(\"Self\"))?,\n- ValueObj::DataClass { name, fields }\n- );\n+ let slf = args\n+ .remove_left_or_key(\"Self\")\n+ .ok_or_else(|| not_passed(\"Self\"))?;\n+ let ValueObj::DataClass { name: _, fields } = slf else {\n+ return Err(type_mismatch(\"Range\", slf, \"Self\"));\n+ };\n let index = args\n .remove_left_or_key(\"Index\")\n .ok_or_else(|| not_passed(\"Index\"))?;\n- let index = enum_unwrap!(index, ValueObj::Nat);\n+ let Ok(index) = usize::try_from(&index) else {\n+ return Err(type_mismatch(\"Nat\", index, \"Index\"));\n+ };\n let start = fields\n .get(\"start\")\n .ok_or_else(|| no_key(&fields, \"start\"))?;\n- let start = *enum_unwrap!(start, ValueObj::Nat);\n+ let Ok(start) = usize::try_from(start) else {\n+ return Err(type_mismatch(\"Nat\", start, \"start\"));\n+ };\n let end = fields.get(\"end\").ok_or_else(|| no_key(&fields, \"end\"))?;\n- let end = *enum_unwrap!(end, ValueObj::Nat);\n+ let Ok(end) = usize::try_from(end) else {\n+ return Err(type_mismatch(\"Nat\", end, \"end\"));\n+ };\n // FIXME <= if inclusive\n if start + index < end {\n- Ok(ValueObj::Nat(start + index).into())\n+ Ok(ValueObj::Nat((start + index) as u64).into())\n } else {\n Err(ErrorCore::new(\n vec![SubMessage::only_loc(Location::Unknown)],\n", "unify.rs": "@@ -826,55 +826,27 @@ impl<'c, 'l, 'u, L: Locational> Unifier<'c, 'l, 'u, L> {\n self.sub_unify(&rsub, &union)?;\n // self.sub_unify(&intersec, &lsup, loc, param_name)?;\n // self.sub_unify(&lsub, &union, loc, param_name)?;\n- if union == intersec {\n- match sub_fv\n- .level()\n- .unwrap_or(GENERIC_LEVEL)\n- .cmp(&sup_fv.level().unwrap_or(GENERIC_LEVEL))\n- {\n- std::cmp::Ordering::Less => {\n- maybe_sub.link(&union, self.undoable);\n- maybe_sup.link(maybe_sub, self.undoable);\n- }\n- std::cmp::Ordering::Greater => {\n- maybe_sup.link(&union, self.undoable);\n- maybe_sub.link(maybe_sup, self.undoable);\n- }\n- std::cmp::Ordering::Equal => {\n- // choose named one\n- if sup_fv.is_named_unbound() {\n- maybe_sup.link(&union, self.undoable);\n- maybe_sub.link(maybe_sup, self.undoable);\n- } else {\n- maybe_sub.link(&union, self.undoable);\n- maybe_sup.link(maybe_sub, self.undoable);\n- }\n- }\n+ match sub_fv\n+ .level()\n+ .unwrap_or(GENERIC_LEVEL)\n+ .cmp(&sup_fv.level().unwrap_or(GENERIC_LEVEL))\n+ {\n+ std::cmp::Ordering::Less => {\n+ maybe_sub.update_tyvar(union, intersec, self.undoable, false);\n+ maybe_sup.link(maybe_sub, self.undoable);\n }\n- } else {\n- let new_constraint = Constraint::new_sandwiched(union, intersec);\n- match sub_fv\n- .level()\n- .unwrap_or(GENERIC_LEVEL)\n- .cmp(&sup_fv.level().unwrap_or(GENERIC_LEVEL))\n- {\n- std::cmp::Ordering::Less => {\n- maybe_sub.update_constraint(new_constraint, self.undoable, false);\n- maybe_sup.link(maybe_sub, self.undoable);\n- }\n- std::cmp::Ordering::Greater => {\n- maybe_sup.update_constraint(new_constraint, self.undoable, false);\n+ std::cmp::Ordering::Greater => {\n+ maybe_sup.update_tyvar(union, intersec, self.undoable, false);\n+ maybe_sub.link(maybe_sup, self.undoable);\n+ }\n+ std::cmp::Ordering::Equal => {\n+ // choose named one\n+ if sup_fv.is_named_unbound() {\n+ maybe_sup.update_tyvar(union, intersec, self.undoable, false);\n maybe_sub.link(maybe_sup, self.undoable);\n- }\n- std::cmp::Ordering::Equal => {\n- // choose named one\n- if sup_fv.is_named_unbound() {\n- maybe_sup.update_constraint(new_constraint, self.undoable, false);\n- maybe_sub.link(maybe_sup, self.undoable);\n- } else {\n- maybe_sub.update_constraint(new_constraint, self.undoable, false);\n- maybe_sup.link(maybe_sub, self.undoable);\n- }\n+ } else {\n+ maybe_sub.update_tyvar(union, intersec, self.undoable, false);\n+ maybe_sup.link(maybe_sub, self.undoable);\n }\n }\n }\n@@ -947,12 +919,7 @@ impl<'c, 'l, 'u, L: Locational> Unifier<'c, 'l, 'u, L> {\n self.sub_unify(&rsub, &union)?;\n // self.sub_unify(&intersec, &lsup, loc, param_name)?;\n // self.sub_unify(&lsub, &union, loc, param_name)?;\n- if union == intersec {\n- maybe_sup.link(&union, self.undoable);\n- } else {\n- let new_constraint = Constraint::new_sandwiched(union, intersec);\n- maybe_sup.update_constraint(new_constraint, self.undoable, false);\n- }\n+ maybe_sup.update_tyvar(union, intersec, self.undoable, false);\n }\n // (Int or ?T) <: (?U or Int)\n // OK: (Int <: Int); (?T <: ?U)\n", "lower.rs": "@@ -1078,6 +1078,7 @@ impl ASTLowerer {\n }\n }\n }\n+ // TODO: expect var_args\n if let Some(var_args) = var_args {\n match self.lower_expr(var_args.expr, None) {\n Ok(expr) => hir_args.var_args = Some(Box::new(hir::PosArg::new(expr))),\n@@ -1089,7 +1090,12 @@ impl ASTLowerer {\n }\n }\n for arg in kw_args.into_iter() {\n- match self.lower_expr(arg.expr, None) {\n+ let kw_param = expect.as_ref().and_then(|subr| {\n+ subr.non_var_params()\n+ .find(|pt| pt.name().is_some_and(|n| n == &arg.keyword.content))\n+ .map(|pt| pt.typ())\n+ });\n+ match self.lower_expr(arg.expr, kw_param) {\n Ok(expr) => hir_args.push_kw(hir::KwArg::new(arg.keyword, expr)),\n Err(es) => {\n errs.extend(es);\n", "mod.rs": "@@ -564,10 +564,15 @@ impl SubrType {\n .non_default_params\n .iter()\n .filter(|pt| !pt.name().is_some_and(|n| &n[..] == \"self\"));\n+ let defaults = self.default_params.iter();\n if let Some(var_params) = self.var_params.as_ref() {\n- non_defaults.chain(std::iter::repeat(var_params.as_ref()))\n+ non_defaults\n+ .chain([].iter())\n+ .chain(std::iter::repeat(var_params.as_ref()))\n } else {\n- non_defaults.chain(std::iter::repeat(&ParamTy::Pos(Type::Failure)))\n+ non_defaults\n+ .chain(defaults)\n+ .chain(std::iter::repeat(&ParamTy::Pos(Type::Failure)))\n }\n }\n \n@@ -1771,6 +1776,46 @@ impl Type {\n }\n }\n \n+ pub fn immutate(&self) -> Option<Self> {\n+ match self {\n+ Self::FreeVar(fv) if fv.is_linked() => {\n+ let t = fv.crack().clone();\n+ if let Some(t) = t.immutate() {\n+ fv.link(&t);\n+ Some(Self::FreeVar(fv.clone()))\n+ } else {\n+ None\n+ }\n+ }\n+ Self::Mono(name) => match &name[..] {\n+ \"Int!\" => Some(Self::Int),\n+ \"Nat!\" => Some(Self::Nat),\n+ \"Ratio!\" => Some(Self::Ratio),\n+ \"Float!\" => Some(Self::Float),\n+ \"Complex!\" => Some(Self::Complex),\n+ \"Bool!\" => Some(Self::Bool),\n+ \"Str!\" => Some(Self::Str),\n+ _ => None,\n+ },\n+ Self::Poly { name, params } => match &name[..] {\n+ \"Array!\" => Some(Self::Poly {\n+ name: \"Array\".into(),\n+ params: params.clone(),\n+ }),\n+ \"Set!\" => Some(Self::Poly {\n+ name: \"Set\".into(),\n+ params: params.clone(),\n+ }),\n+ \"Dict!\" => Some(Self::Poly {\n+ name: \"Dict\".into(),\n+ params: params.clone(),\n+ }),\n+ _ => None,\n+ },\n+ _ => None,\n+ }\n+ }\n+\n pub fn quantify(self) -> Self {\n debug_assert!(self.is_subr(), \"{self} is not subr\");\n match self {\n@@ -1835,6 +1880,10 @@ impl Type {\n }\n }\n \n+ pub fn is_mut_value_class(&self) -> bool {\n+ self.immutate().is_some_and(|t| t.is_value_class())\n+ }\n+\n /// Procedure\n pub fn is_procedure(&self) -> bool {\n match self {\n@@ -3567,6 +3616,21 @@ impl Type {\n }\n }\n \n+ pub(crate) fn update_tyvar(\n+ &self,\n+ new_sub: Type,\n+ new_sup: Type,\n+ list: Option<&UndoableLinkedList>,\n+ in_instantiation: bool,\n+ ) {\n+ if new_sub == new_sup {\n+ self.link(&new_sub, list);\n+ } else {\n+ let new_constraint = Constraint::new_sandwiched(new_sub, new_sup);\n+ self.update_constraint(new_constraint, list, in_instantiation);\n+ }\n+ }\n+\n fn inc_undo_count(&self) {\n match self {\n Self::FreeVar(fv) => fv.inc_undo_count(),\n", "typaram.rs": "@@ -668,6 +668,10 @@ impl TryFrom<TyParam> for ValueObj {\n }\n Ok(ValueObj::Array(Arc::from(vals)))\n }\n+ TyParam::UnsizedArray(elem) => {\n+ let elem = ValueObj::try_from(*elem)?;\n+ Ok(ValueObj::UnsizedArray(Box::new(elem)))\n+ }\n TyParam::Tuple(tps) => {\n let mut vals = vec![];\n for tp in tps {\n@@ -689,6 +693,13 @@ impl TryFrom<TyParam> for ValueObj {\n }\n Ok(ValueObj::Record(vals))\n }\n+ TyParam::Set(tps) => {\n+ let mut vals = set! {};\n+ for tp in tps {\n+ vals.insert(ValueObj::try_from(tp)?);\n+ }\n+ Ok(ValueObj::Set(vals))\n+ }\n TyParam::DataClass { name, fields } => {\n let mut vals = dict! {};\n for (k, v) in fields {\n@@ -710,7 +721,7 @@ impl TryFrom<TyParam> for ValueObj {\n TyParam::Type(t) => Ok(ValueObj::builtin_type(*t)),\n TyParam::Value(v) => Ok(v),\n _ => {\n- log!(err \"Expected value, got {tp} ({tp:?})\");\n+ log!(err \"Expected value, got {tp}\");\n Err(())\n }\n }\n", "value.rs": "@@ -1167,7 +1167,7 @@ impl ValueObj {\n Self::Dict(dict) => {\n let tp = dict\n .iter()\n- .map(|(k, v)| (TyParam::value(k.clone()), TyParam::value(v.clone())));\n+ .map(|(k, v)| (TyParam::t(k.class()), TyParam::t(v.class())));\n dict_t(TyParam::Dict(tp.collect()))\n }\n Self::Tuple(tup) => tuple_t(tup.iter().map(|v| v.class()).collect()),\n"}
chore: change logical operations order
7cd895a30e3fbd54822f208fccf1fa8747e97b07
chore
https://github.com/erg-lang/erg/commit/7cd895a30e3fbd54822f208fccf1fa8747e97b07
change logical operations order
{"compare.rs": "@@ -894,8 +894,7 @@ impl Context {\n let r_fields = self.fields(r);\n for (l_field, l_ty) in self.fields(l) {\n if let Some((r_field, r_ty)) = r_fields.get_key_value(&l_field) {\n- let compatible = self.supertype_of(&l_ty, r_ty);\n- if r_field.vis != l_field.vis || !compatible {\n+ if r_field.vis != l_field.vis || !self.supertype_of(&l_ty, r_ty) {\n return false;\n }\n } else {\n@@ -2211,9 +2210,9 @@ impl Context {\n args: args2,\n },\n ) => {\n- self.supertype_of_tp(receiver, sub_receiver, Variance::Covariant)\n- && name == name2\n+ name == name2\n && args.len() == args2.len()\n+ && self.supertype_of_tp(receiver, sub_receiver, Variance::Covariant)\n && args\n .iter()\n .zip(args2.iter())\n", "eval.rs": "@@ -172,9 +172,9 @@ impl<'c> Substituter<'c> {\n // Or, And are commutative, choose fitting order\n if qt.qual_name() == st.qual_name() && (st.qual_name() == \"Or\" || st.qual_name() == \"And\") {\n // REVIEW: correct condition?\n- if ctx.covariant_supertype_of_tp(&qtps[0], &stps[1])\n+ if qt != st\n+ && ctx.covariant_supertype_of_tp(&qtps[0], &stps[1])\n && ctx.covariant_supertype_of_tp(&qtps[1], &stps[0])\n- && qt != st\n {\n stps.swap(0, 1);\n }\n@@ -2608,7 +2608,7 @@ impl Context {\n // FIXME: GenericDict\n TyParam::FreeVar(fv)\n if fv.get_type().is_some_and(|t| {\n- self.subtype_of(&t, &Type::Type) || &t.qual_name() == \"GenericDict\"\n+ &t.qual_name() == \"GenericDict\" || self.subtype_of(&t, &Type::Type)\n }) =>\n {\n // FIXME: This procedure is clearly erroneous because it breaks the type variable linkage.\n", "generalize.rs": "@@ -188,14 +188,14 @@ impl Generalizer {\n res.generalize();\n res\n } else if sup != Obj\n- && !self.qnames.contains(&fv.unbound_name().unwrap())\n && self.variance == Contravariant\n+ && !self.qnames.contains(&fv.unbound_name().unwrap())\n {\n // |T <: Bool| T -> Int ==> Bool -> Int\n self.generalize_t(sup, uninit)\n } else if sub != Never\n- && !self.qnames.contains(&fv.unbound_name().unwrap())\n && self.variance == Covariant\n+ && !self.qnames.contains(&fv.unbound_name().unwrap())\n {\n // |T :> Int| X -> T ==> X -> Int\n self.generalize_t(sub, uninit)\n", "inquire.rs": "@@ -2626,7 +2626,7 @@ impl Context {\n );\n log!(info \"Substituted:\\ninstance: {instance}\");\n debug_assert!(\n- self.subtype_of(&instance, &Type::Type) || instance.has_no_qvar(),\n+ instance.has_no_qvar() || self.subtype_of(&instance, &Type::Type),\n \"{instance} has qvar (obj: {obj}, attr: {}\",\n fmt_option!(attr_name)\n );\n@@ -4072,7 +4072,7 @@ impl Context {\n pub(crate) fn recover_typarams(&self, base: &Type, guard: &GuardType) -> TyCheckResult<Type> {\n let intersec = self.intersection(&guard.to, base);\n let is_never =\n- self.subtype_of(&intersec, &Type::Never) && guard.to.as_ref() != &Type::Never;\n+ guard.to.as_ref() != &Type::Never && self.subtype_of(&intersec, &Type::Never);\n if !is_never {\n return Ok(intersec);\n }\n", "unify.rs": "@@ -1196,9 +1196,9 @@ impl<'c, 'l, 'u, L: Locational> Unifier<'c, 'l, 'u, L> {\n // NG: (Int <: ?U); (?T <: Int)\n (Or(l1, r1), Or(l2, r2)) | (And(l1, r1), And(l2, r2)) => {\n if self.ctx.subtype_of(l1, l2) && self.ctx.subtype_of(r1, r2) {\n- let (l_sup, r_sup) = if self.ctx.subtype_of(l1, r2)\n- && !l1.is_unbound_var()\n+ let (l_sup, r_sup) = if !l1.is_unbound_var()\n && !r2.is_unbound_var()\n+ && self.ctx.subtype_of(l1, r2)\n {\n (r2, l2)\n } else {\n"}
feat(postgres): add support for native enum arrays Closes #5322
c2e362bc6fe19ec792d13f475a11cf2290b94fde
feat
https://github.com/mikro-orm/mikro-orm/commit/c2e362bc6fe19ec792d13f475a11cf2290b94fde
add support for native enum arrays Closes #5322
{"EnumArrayType.ts": "@@ -3,6 +3,7 @@ import { ArrayType } from './ArrayType';\n import type { Platform } from '../platforms';\n import { ValidationError } from '../errors';\n import type { TransformContext } from './Type';\n+import type { EntityProperty } from '../typings';\n \n function mapHydrator<T>(items: T[] | undefined, hydrate: (i: string) => T): (i: string) => T {\n if (items && items.length > 0 && typeof items[0] === 'number') {\n@@ -33,4 +34,12 @@ export class EnumArrayType<T extends string | number = string> extends ArrayType\n return super.convertToDatabaseValue(value, platform, context);\n }\n \n+ override getColumnType(prop: EntityProperty, platform: Platform): string {\n+ if (prop.nativeEnumName) {\n+ return `${prop.nativeEnumName}[]`;\n+ }\n+\n+ return super.getColumnType(prop, platform);\n+ }\n+\n }\n", "EnumType.ts": "@@ -5,6 +5,10 @@ import type { EntityProperty } from '../typings';\n export class EnumType extends Type<string | null | undefined> {\n \n override getColumnType(prop: EntityProperty, platform: Platform) {\n+ if (prop.nativeEnumName) {\n+ return prop.nativeEnumName;\n+ }\n+\n return prop.columnTypes?.[0] ?? platform.getEnumTypeDeclarationSQL(prop);\n }\n \n", "SchemaHelper.ts": "@@ -63,6 +63,10 @@ export abstract class SchemaHelper {\n return {};\n }\n \n+ getCreateNativeEnumSQL(name: string, values: unknown[], schema?: string): string {\n+ throw new Error('Not supported by given driver');\n+ }\n+\n getDropNativeEnumSQL(name: string, schema?: string): string {\n throw new Error('Not supported by given driver');\n }\n", "SqlSchemaGenerator.ts": "@@ -91,6 +91,20 @@ export class SqlSchemaGenerator extends AbstractSchemaGenerator<AbstractSqlDrive\n ret += await this.dump(this.knex.schema.createSchemaIfNotExists(namespace));\n }\n \n+ if (this.platform.supportsNativeEnums()) {\n+ const created: string[] = [];\n+\n+ for (const [enumName, enumOptions] of Object.entries(toSchema.getNativeEnums())) {\n+ if (created.includes(enumName)) {\n+ continue;\n+ }\n+\n+ created.push(enumName);\n+ const sql = this.helper.getCreateNativeEnumSQL(enumName, enumOptions, options.schema ?? this.config.get('schema'));\n+ ret += await this.dump(this.knex.schema.raw(sql), '\\n');\n+ }\n+ }\n+\n for (const tableDef of toSchema.getTables()) {\n ret += await this.dump(this.createTable(tableDef));\n }\n@@ -369,14 +383,25 @@ export class SqlSchemaGenerator extends AbstractSchemaGenerator<AbstractSqlDrive\n const [schemaName, tableName] = this.splitTableName(diff.name);\n \n if (this.platform.supportsNativeEnums()) {\n- const changedNativeEnums: [string, string[], string[]][] = [];\n+ const createdNativeEnums: [enumName: string, items: string[]][] = [];\n+ const changedNativeEnums: [enumName: string, itemsNew: string[], itemsOld: string[]][] = [];\n \n- for (const { column, changedProperties } of Object.values(diff.changedColumns)) {\n- if (column.nativeEnumName && changedProperties.has('enumItems') && column.nativeEnumName in diff.fromTable.nativeEnums) {\n+ for (const { column, changedProperties, fromColumn } of Object.values(diff.changedColumns)) {\n+ if (!column.nativeEnumName) {\n+ continue;\n+ }\n+\n+ if (changedProperties.has('enumItems') && column.nativeEnumName in diff.fromTable.nativeEnums) {\n changedNativeEnums.push([column.nativeEnumName, column.enumItems!, diff.fromTable.getColumn(column.name)!.enumItems!]);\n+ } else if (changedProperties.has('type') && !(column.nativeEnumName in diff.fromTable.nativeEnums)) {\n+ createdNativeEnums.push([column.nativeEnumName, column.enumItems!]);\n }\n }\n \n+ Utils.removeDuplicates(createdNativeEnums).forEach(([enumName, items]) => {\n+ ret.push(this.knex.schema.raw(this.helper.getCreateNativeEnumSQL(enumName, items, schemaName)));\n+ });\n+\n Utils.removeDuplicates(changedNativeEnums).forEach(([enumName, itemsNew, itemsOld]) => {\n // postgres allows only adding new items, the values are case insensitive\n itemsOld = itemsOld.map(v => v.toLowerCase());\n@@ -426,7 +451,7 @@ export class SqlSchemaGenerator extends AbstractSchemaGenerator<AbstractSqlDrive\n }\n }\n \n- for (const { column, changedProperties } of Object.values(diff.changedColumns)) {\n+ for (const { column, changedProperties, fromColumn } of Object.values(diff.changedColumns)) {\n if (changedProperties.size === 1 && changedProperties.has('comment')) {\n continue;\n }\n", "PostgreSqlSchemaHelper.ts": "@@ -1,5 +1,17 @@\n-import { BigIntType, EnumType, Type, Utils, type Dictionary } from '@mikro-orm/core';\n-import { SchemaHelper, type AbstractSqlConnection, type CheckDef, type Column, type DatabaseSchema, type DatabaseTable, type ForeignKey, type IndexDef, type Table, type TableDifference, type Knex } from '@mikro-orm/knex';\n+import { BigIntType, type Dictionary, EnumType, Type, Utils } from '@mikro-orm/core';\n+import {\n+ type AbstractSqlConnection,\n+ type CheckDef,\n+ type Column,\n+ type DatabaseSchema,\n+ type DatabaseTable,\n+ type ForeignKey,\n+ type IndexDef,\n+ type Knex,\n+ SchemaHelper,\n+ type Table,\n+ type TableDifference,\n+} from '@mikro-orm/knex';\n \n export class PostgreSqlSchemaHelper extends SchemaHelper {\n \n@@ -244,6 +256,14 @@ export class PostgreSqlSchemaHelper extends SchemaHelper {\n }, {});\n }\n \n+ override getCreateNativeEnumSQL(name: string, values: unknown[], schema?: string): string {\n+ if (schema && schema !== this.platform.getDefaultSchemaName()) {\n+ name = schema + '.' + name;\n+ }\n+\n+ return `create type ${this.platform.quoteIdentifier(name)} as enum (${values.map(value => this.platform.quoteValue(value)).join(', ')})`;\n+ }\n+\n override getDropNativeEnumSQL(name: string, schema?: string): string {\n if (schema && schema !== this.platform.getDefaultSchemaName()) {\n name = schema + '.' + name;\n@@ -318,12 +338,14 @@ export class PostgreSqlSchemaHelper extends SchemaHelper {\n fromTable.nativeEnums[column.nativeEnumName] = [];\n }\n \n- return table.enum(column.name, column.enumItems, {\n- useNative: true,\n- enumName: column.nativeEnumName,\n- schemaName: fromTable.schema && fromTable.schema !== this.platform.getDefaultSchemaName() ? fromTable.schema : undefined,\n- existingType,\n- });\n+ const schemaPrefix = fromTable.schema && fromTable.schema !== this.platform.getDefaultSchemaName() ? `${fromTable.schema}.` : '';\n+ const type = this.platform.quoteIdentifier(schemaPrefix + column.nativeEnumName);\n+\n+ if (column.type.endsWith('[]')) {\n+ return table.specificType(column.name, type + '[]');\n+ }\n+\n+ return table.specificType(column.name, type);\n }\n \n if (column.mappedType instanceof EnumType && column.enumItems?.every(item => Utils.isString(item))) {\n", "GH5322.test.ts": "@@ -0,0 +1,72 @@\n+import { MikroORM, Entity, Enum, PrimaryKey, Opt } from '@mikro-orm/postgresql';\n+import { mockLogger } from '../../helpers';\n+\n+enum MyEnum {\n+ LOCAL = 'local',\n+ GLOBAL = 'global',\n+}\n+\n+@Entity()\n+class EnumEntity {\n+\n+ @PrimaryKey()\n+ id!: number;\n+\n+ @Enum({ items: () => MyEnum, nativeEnumName: 'my_enum' })\n+ type: Opt<MyEnum> = MyEnum.LOCAL;\n+\n+ @Enum({ items: () => MyEnum, nativeEnumName: 'my_enum', array: true })\n+ types: MyEnum[] = [];\n+\n+}\n+\n+let orm: MikroORM;\n+\n+beforeAll(async () => {\n+ orm = await MikroORM.init({\n+ entities: [EnumEntity],\n+ dbName: '5322',\n+ });\n+\n+ await orm.schema.ensureDatabase();\n+ await orm.schema.execute(`drop type if exists my_enum cascade`);\n+ await orm.schema.execute(`drop table if exists enum_entity`);\n+});\n+\n+afterAll(() => orm.close());\n+\n+test('GH #5322', async () => {\n+ const sql = await orm.schema.getCreateSchemaSQL();\n+ expect(sql).toMatch(`create type \"my_enum\" as enum ('local', 'global');\\ncreate table \"enum_entity\" (\"id\" serial primary key, \"type\" \"my_enum\" not null default 'local', \"types\" \"my_enum\"[] not null);`);\n+ await orm.schema.execute(sql);\n+\n+ const meta = orm.getMetadata(EnumEntity);\n+ meta.properties.type.items = ['foo'];\n+ meta.properties.types.items = ['foo'];\n+ const diff = await orm.schema.getUpdateSchemaSQL();\n+ expect(diff).toMatch(`alter type \"my_enum\" add value if not exists 'foo';`);\n+ await orm.schema.execute(diff);\n+\n+ const mock = mockLogger(orm);\n+ const foo = orm.em.create(EnumEntity, { types: [MyEnum.GLOBAL] });\n+ await orm.em.flush();\n+ orm.em.clear();\n+\n+ const foo2 = await orm.em.findOneOrFail(EnumEntity, foo);\n+ expect(foo2.types).toEqual([MyEnum.GLOBAL]);\n+ foo2.types.push(MyEnum.LOCAL);\n+ await orm.em.flush();\n+ orm.em.clear();\n+\n+ const foo3 = await orm.em.findOneOrFail(EnumEntity, foo);\n+ expect(foo3.types).toEqual([MyEnum.GLOBAL, MyEnum.LOCAL]);\n+\n+ expect(mock.mock.calls[0][0]).toMatch(`begin`);\n+ expect(mock.mock.calls[1][0]).toMatch(`insert into \"enum_entity\" (\"type\", \"types\") values ('local', '{global}') returning \"id\"`);\n+ expect(mock.mock.calls[2][0]).toMatch(`commit`);\n+ expect(mock.mock.calls[3][0]).toMatch(`select \"e0\".* from \"enum_entity\" as \"e0\" where \"e0\".\"id\" = 1 limit 1`);\n+ expect(mock.mock.calls[4][0]).toMatch(`begin`);\n+ expect(mock.mock.calls[5][0]).toMatch(`update \"enum_entity\" set \"types\" = '{global,local}' where \"id\" = 1`);\n+ expect(mock.mock.calls[6][0]).toMatch(`commit`);\n+ expect(mock.mock.calls[7][0]).toMatch(`select \"e0\".* from \"enum_entity\" as \"e0\" where \"e0\".\"id\" = 1 limit 1`);\n+});\n", "native-enum-diffing.postgres.test.ts.snap": "@@ -24,6 +24,7 @@ alter table \"user\" drop constraint if exists \"user_type_check\";\n alter table \"user\" drop constraint if exists \"user_type2_check\";\n \n create type \"user_type\" as enum ('personal', 'organization');\n+\n alter table \"user\" alter column \"type\" type \"user_type\" using (\"type\"::\"user_type\");\n alter table \"user\" alter column \"type2\" type \"user_type\" using (\"type2\"::\"user_type\");\n \n", "native-enums.postgres.test.ts.snap": "@@ -10,6 +10,7 @@ create table \"different_schema\".\"new_table\" (\"id\" serial primary key, \"enum_test\n \n exports[`native enums in postgres enum diffing: postgres-update-schema-enums-2 1`] = `\n \"create type \"different_schema\".\"enum_test\" as enum ('a', 'b');\n+\n alter table \"different_schema\".\"new_table\" alter column \"enum_test\" type \"different_schema\".\"enum_test\" using (\"enum_test\"::\"different_schema\".\"enum_test\");\n \n \"\n@@ -31,12 +32,12 @@ exports[`native enums in postgres generate schema from metadata [postgres]: post\n \"set names 'utf8';\n set session_replication_role = 'replica';\n \n-create type \"enum5\" as enum ('a');\n-create type \"enum4\" as enum ('a', 'b', 'c');\n-create type \"enum3\" as enum ('1', '2', '3');\n-create type \"enum2\" as enum ('1', '2');\n-create type \"enum_entity_type2\" as enum ('LOCAL', 'GLOBAL');\n create type \"enum_entity_type\" as enum ('local', 'global');\n+create type \"enum_entity_type2\" as enum ('LOCAL', 'GLOBAL');\n+create type \"enum2\" as enum ('1', '2');\n+create type \"enum3\" as enum ('1', '2', '3');\n+create type \"enum4\" as enum ('a', 'b', 'c');\n+create type \"enum5\" as enum ('a');\n create table \"enum_entity\" (\"id\" serial primary key, \"type\" \"enum_entity_type\" not null default 'local', \"type2\" \"enum_entity_type2\" not null default 'LOCAL', \"enum2\" \"enum2\" null, \"enum3\" \"enum3\" null, \"enum4\" \"enum4\" null, \"enum5\" \"enum5\" null);\n \n set session_replication_role = 'origin';\n@@ -63,12 +64,12 @@ exports[`native enums in postgres generate schema from metadata [postgres]: post\n \"set names 'utf8';\n set session_replication_role = 'replica';\n \n-create type \"enum5\" as enum ('a');\n-create type \"enum4\" as enum ('a', 'b', 'c');\n-create type \"enum3\" as enum ('1', '2', '3');\n-create type \"enum2\" as enum ('1', '2');\n-create type \"enum_entity_type2\" as enum ('LOCAL', 'GLOBAL');\n create type \"enum_entity_type\" as enum ('local', 'global');\n+create type \"enum_entity_type2\" as enum ('LOCAL', 'GLOBAL');\n+create type \"enum2\" as enum ('1', '2');\n+create type \"enum3\" as enum ('1', '2', '3');\n+create type \"enum4\" as enum ('a', 'b', 'c');\n+create type \"enum5\" as enum ('a');\n create table \"enum_entity\" (\"id\" serial primary key, \"type\" \"enum_entity_type\" not null default 'local', \"type2\" \"enum_entity_type2\" not null default 'LOCAL', \"enum2\" \"enum2\" null, \"enum3\" \"enum3\" null, \"enum4\" \"enum4\" null, \"enum5\" \"enum5\" null);\n \n set session_replication_role = 'origin';\n", "native-enum-diffing.postgres.test.ts": "", "native-enums.postgres.test.ts": ""}
docs(arrays): document behavior of unnest in the presence of empty array rows
5526c402784879b76beb1d0bea46cfa7e628b8f5
docs
https://github.com/ibis-project/ibis/commit/5526c402784879b76beb1d0bea46cfa7e628b8f5
document behavior of unnest in the presence of empty array rows
{"arrays.py": "@@ -268,7 +268,7 @@ class ArrayValue(Value):\n \"\"\"Flatten an array into a column.\n \n ::: {.callout-note}\n- ## This operation changes the cardinality of the result\n+ ## Rows with empty arrays are dropped in the output.\n :::\n \n Examples\n"}
test(polars): xfail seemingly broken outer joins
6b1f53a01103dc72ea22919f95330b0ec53974ec
test
https://github.com/ibis-project/ibis/commit/6b1f53a01103dc72ea22919f95330b0ec53974ec
xfail seemingly broken outer joins
{"test_join.py": "@@ -64,16 +64,14 @@ def check_eq(left, right, how, **kwargs):\n + [\"sqlite\"] * (vparse(sqlite3.sqlite_version) < vparse(\"3.39\"))\n ),\n pytest.mark.xfail_version(datafusion=[\"datafusion<31\"]),\n+ pytest.mark.broken(\n+ [\"polars\"], reason=\"upstream outer joins are broken\"\n+ ),\n ],\n ),\n ],\n )\n @pytest.mark.notimpl([\"druid\"])\[email protected]_version(\n- polars=[\"polars>=0.18.6,<0.18.8\"],\n- reason=\"https://github.com/pola-rs/polars/issues/9955\",\n- raises=ColumnNotFoundError,\n-)\n @pytest.mark.notimpl([\"exasol\"], raises=AttributeError)\n def test_mutating_join(backend, batting, awards_players, how):\n left = batting[batting.yearID == 2015]\n"}
perf(duckdb): faster `to_parquet`/`to_csv` implementations
6071bb5f8238f3ebb159fc197efcd088cdc452a0
perf
https://github.com/rohankumardubey/ibis/commit/6071bb5f8238f3ebb159fc197efcd088cdc452a0
faster `to_parquet`/`to_csv` implementations
{"__init__.py": "@@ -137,6 +137,8 @@ class Backend(BaseAlchemyBackend):\n Path(temp_directory).mkdir(parents=True, exist_ok=True)\n config[\"temp_directory\"] = str(temp_directory)\n \n+ config.setdefault(\"experimental_parallel_csv\", 1)\n+\n engine = sa.create_engine(\n f\"duckdb:///{database}\",\n connect_args=dict(read_only=read_only, config=config),\n@@ -556,11 +558,80 @@ class Backend(BaseAlchemyBackend):\n else:\n raise ValueError\n \n- def fetch_from_cursor(\n+ @util.experimental\n+ def to_parquet(\n+ self,\n+ expr: ir.Table,\n+ path: str | Path,\n+ *,\n+ params: Mapping[ir.Scalar, Any] | None = None,\n+ **kwargs: Any,\n+ ) -> None:\n+ \"\"\"Write the results of executing the given expression to a parquet file.\n+\n+ This method is eager and will execute the associated expression\n+ immediately.\n+\n+ Parameters\n+ ----------\n+ expr\n+ The ibis expression to execute and persist to parquet.\n+ path\n+ The data source. A string or Path to the parquet file.\n+ params\n+ Mapping of scalar parameter expressions to value.\n+ kwargs\n+ DuckDB Parquet writer arguments. See\n+ https://duckdb.org/docs/data/parquet#writing-to-parquet-files for\n+ details\n+ \"\"\"\n+ query = self._to_sql(expr, params=params)\n+ args = [\"FORMAT 'parquet'\", *(f\"{k.upper()} {v!r}\" for k, v in kwargs.items())]\n+ copy_cmd = f\"COPY ({query}) TO {str(path)!r} ({', '.join(args)})\"\n+ with self.begin() as con:\n+ con.exec_driver_sql(copy_cmd)\n+\n+ @util.experimental\n+ def to_csv(\n self,\n- cursor: duckdb.DuckDBPyConnection,\n- schema: sch.Schema,\n- ):\n+ expr: ir.Table,\n+ path: str | Path,\n+ *,\n+ params: Mapping[ir.Scalar, Any] | None = None,\n+ header: bool = True,\n+ **kwargs: Any,\n+ ) -> None:\n+ \"\"\"Write the results of executing the given expression to a CSV file.\n+\n+ This method is eager and will execute the associated expression\n+ immediately.\n+\n+ Parameters\n+ ----------\n+ expr\n+ The ibis expression to execute and persist to CSV.\n+ path\n+ The data source. A string or Path to the CSV file.\n+ params\n+ Mapping of scalar parameter expressions to value.\n+ header\n+ Whether to write the column names as the first line of the CSV file.\n+ kwargs\n+ DuckDB CSV writer arguments. https://duckdb.org/docs/data/csv.html#parameters\n+ \"\"\"\n+ query = self._to_sql(expr, params=params)\n+ args = [\n+ \"FORMAT 'csv'\",\n+ f\"HEADER {int(header)}\",\n+ *(f\"{k.upper()} {v!r}\" for k, v in kwargs.items()),\n+ ]\n+ copy_cmd = f\"COPY ({query}) TO {str(path)!r} ({', '.join(args)})\"\n+ with self.begin() as con:\n+ con.exec_driver_sql(copy_cmd)\n+\n+ def fetch_from_cursor(\n+ self, cursor: duckdb.DuckDBPyConnection, schema: sch.Schema\n+ ) -> pd.DataFrame:\n import pandas as pd\n import pyarrow.types as pat\n \n", "sql.py": "@@ -346,7 +346,7 @@ class SQLString:\n \n \n @public\n-def to_sql(expr: ir.Expr, dialect: str | None = None) -> SQLString:\n+def to_sql(expr: ir.Expr, dialect: str | None = None, **kwargs) -> SQLString:\n \"\"\"Return the formatted SQL string for an expression.\n \n Parameters\n@@ -355,6 +355,8 @@ def to_sql(expr: ir.Expr, dialect: str | None = None) -> SQLString:\n Ibis expression.\n dialect\n SQL dialect to use for compilation.\n+ kwargs\n+ Scalar parameters\n \n Returns\n -------\n@@ -382,6 +384,6 @@ def to_sql(expr: ir.Expr, dialect: str | None = None) -> SQLString:\n else:\n read = write = getattr(backend, \"_sqlglot_dialect\", dialect)\n \n- sql = backend._to_sql(expr)\n+ sql = backend._to_sql(expr, **kwargs)\n (pretty,) = sg.transpile(sql, read=read, write=write, pretty=True)\n return SQLString(pretty)\n"}
feat: add restricted visibility syntax
d92f5284c86ad4fbce748e1f3aaeb666bd450632
feat
https://github.com/erg-lang/erg/commit/d92f5284c86ad4fbce748e1f3aaeb666bd450632
add restricted visibility syntax
{"hir_visitor.rs": "@@ -200,9 +200,9 @@ impl<'a> HIRVisitor<'a> {\n token: &Token,\n ) -> Option<&Expr> {\n match acc {\n- Accessor::Ident(ident) => self.return_expr_if_same(expr, ident.name.token(), token),\n+ Accessor::Ident(ident) => self.return_expr_if_same(expr, ident.raw.name.token(), token),\n Accessor::Attr(attr) => self\n- .return_expr_if_same(expr, attr.ident.name.token(), token)\n+ .return_expr_if_same(expr, attr.ident.raw.name.token(), token)\n .or_else(|| self.get_expr(&attr.obj, token)),\n }\n }\n@@ -234,7 +234,7 @@ impl<'a> HIRVisitor<'a> {\n .or_else(|| {\n call.attr_name\n .as_ref()\n- .and_then(|attr| self.return_expr_if_same(expr, attr.name.token(), token))\n+ .and_then(|attr| self.return_expr_if_same(expr, attr.raw.name.token(), token))\n })\n .or_else(|| self.get_expr(&call.obj, token))\n .or_else(|| self.get_expr_from_args(&call.args, token))\n@@ -266,7 +266,7 @@ impl<'a> HIRVisitor<'a> {\n def: &'e Def,\n token: &Token,\n ) -> Option<&Expr> {\n- self.return_expr_if_same(expr, def.sig.ident().name.token(), token)\n+ self.return_expr_if_same(expr, def.sig.ident().raw.name.token(), token)\n .or_else(|| self.get_expr_from_block(&def.body.block, token))\n .or_else(|| def.loc().contains(token.loc()).then_some(expr))\n }\n@@ -319,7 +319,7 @@ impl<'a> HIRVisitor<'a> {\n patch_def: &'e PatchDef,\n token: &Token,\n ) -> Option<&Expr> {\n- self.return_expr_if_same(expr, patch_def.sig.ident().name.token(), token)\n+ self.return_expr_if_same(expr, patch_def.sig.name().token(), token)\n .or_else(|| self.get_expr(&patch_def.base, token))\n .or_else(|| self.get_expr_from_block(&patch_def.methods, token))\n .or_else(|| patch_def.loc().contains(token.loc()).then_some(expr))\n@@ -489,10 +489,10 @@ impl<'a> HIRVisitor<'a> {\n fn get_acc_info(&self, acc: &Accessor, token: &Token) -> Option<VarInfo> {\n match acc {\n Accessor::Ident(ident) => {\n- self.return_var_info_if_same(ident, ident.name.token(), token)\n+ self.return_var_info_if_same(ident, ident.raw.name.token(), token)\n }\n Accessor::Attr(attr) => self\n- .return_var_info_if_same(&attr.ident, attr.ident.name.token(), token)\n+ .return_var_info_if_same(&attr.ident, attr.ident.raw.name.token(), token)\n .or_else(|| self.get_expr_info(&attr.obj, token)),\n }\n }\n@@ -504,7 +504,7 @@ impl<'a> HIRVisitor<'a> {\n \n fn get_call_info(&self, call: &Call, token: &Token) -> Option<VarInfo> {\n if let Some(attr) = &call.attr_name {\n- if let Some(t) = self.return_var_info_if_same(attr, attr.name.token(), token) {\n+ if let Some(t) = self.return_var_info_if_same(attr, attr.raw.name.token(), token) {\n return Some(t);\n }\n }\n@@ -534,10 +534,10 @@ impl<'a> HIRVisitor<'a> {\n fn get_sig_info(&self, sig: &Signature, token: &Token) -> Option<VarInfo> {\n match sig {\n Signature::Var(var) => {\n- self.return_var_info_if_same(&var.ident, var.ident.name.token(), token)\n+ self.return_var_info_if_same(&var.ident, var.name().token(), token)\n }\n Signature::Subr(subr) => self\n- .return_var_info_if_same(&subr.ident, subr.ident.name.token(), token)\n+ .return_var_info_if_same(&subr.ident, subr.name().token(), token)\n .or_else(|| self.get_params_info(&subr.params, token)),\n }\n }\n", "server.rs": "@@ -526,7 +526,7 @@ impl<Checker: BuildRunnable> Server<Checker> {\n ctxs.extend(type_ctxs);\n if let Ok(singular_ctx) = module\n .context\n- .get_singular_ctx_by_hir_expr(expr, &\"\".into())\n+ .get_singular_ctx_by_hir_expr(expr, &module.context)\n {\n ctxs.push(singular_ctx);\n }\n", "levenshtein.rs": "@@ -40,14 +40,17 @@ pub fn levenshtein(a: &str, b: &str, limit: usize) -> Option<usize> {\n (dcol[m] <= limit).then_some(dcol[m])\n }\n \n-pub fn get_similar_name<'a, I: Iterator<Item = &'a str> + Clone>(\n+pub fn get_similar_name<'a, S: ?Sized, I: Iterator<Item = &'a S> + Clone>(\n candidates: I,\n name: &str,\n-) -> Option<&'a str> {\n- let limit = (name.len() as f64).sqrt() as usize;\n+) -> Option<&'a S>\n+where\n+ S: std::borrow::Borrow<str>,\n+{\n+ let limit = (name.len() as f64).sqrt().round() as usize;\n let most_similar_name =\n- candidates.min_by_key(|v| levenshtein(v, name, limit).unwrap_or(usize::MAX))?;\n- let dist = levenshtein(most_similar_name, name, limit);\n+ candidates.min_by_key(|v| levenshtein(v.borrow(), name, limit).unwrap_or(usize::MAX))?;\n+ let dist = levenshtein(most_similar_name.borrow(), name, limit);\n if dist.is_none() || dist.unwrap() >= limit {\n None\n } else {\n@@ -55,6 +58,24 @@ pub fn get_similar_name<'a, I: Iterator<Item = &'a str> + Clone>(\n }\n }\n \n+pub fn get_similar_name_and_some<'a, S: ?Sized, T, I: Iterator<Item = (&'a T, &'a S)> + Clone>(\n+ candidates: I,\n+ name: &str,\n+) -> Option<(&'a T, &'a S)>\n+where\n+ S: std::borrow::Borrow<str>,\n+{\n+ let limit = (name.len() as f64).sqrt().round() as usize;\n+ let most_similar_name_and_some = candidates\n+ .min_by_key(|(_, v)| levenshtein(v.borrow(), name, limit).unwrap_or(usize::MAX))?;\n+ let dist = levenshtein(most_similar_name_and_some.1.borrow(), name, limit);\n+ if dist.is_none() || dist.unwrap() >= limit {\n+ None\n+ } else {\n+ Some(most_similar_name_and_some)\n+ }\n+}\n+\n #[cfg(test)]\n mod tests {\n use crate::levenshtein::get_similar_name;\n", "lib.rs": "@@ -31,9 +31,9 @@ pub mod stdin;\n pub mod str;\n pub mod style;\n pub mod traits;\n+pub mod triple;\n pub mod tsort;\n pub mod tty;\n-pub mod vis;\n \n use crate::set::Set;\n pub use crate::str::Str;\n", "str.rs": "@@ -199,6 +199,30 @@ impl Str {\n ret\n }\n \n+ /// ```\n+ /// use erg_common::str::Str;\n+ /// let s = Str::rc(\"a.b.c\");\n+ /// assert_eq!(s.rpartition_with(&[\".\", \"/\"]), (\"a.b\", \"c\"));\n+ /// let s = Str::rc(\"a::b.c\");\n+ /// assert_eq!(s.rpartition_with(&[\"/\", \"::\"]), (\"a\", \"b.c\"));\n+ /// ```\n+ pub fn rpartition_with(&self, seps: &[&str]) -> (&str, &str) {\n+ let mut i = self.len();\n+ while i > 0 {\n+ for sep in seps {\n+ if self[i..].starts_with(sep) {\n+ return (&self[..i], &self[i + sep.len()..]);\n+ }\n+ }\n+ i -= 1;\n+ }\n+ (&self[..], \"\")\n+ }\n+\n+ pub fn reversed(&self) -> Str {\n+ Str::rc(&self.chars().rev().collect::<String>())\n+ }\n+\n pub fn multi_replace(&self, paths: &[(&str, &str)]) -> Self {\n let mut self_ = self.to_string();\n for (from, to) in paths {\n@@ -237,11 +261,6 @@ impl Str {\n mod tests {\n use super::*;\n \n- use crate::dict;\n- // use crate::dict::Dict;\n-\n- use crate::vis::Field;\n-\n #[test]\n fn test_split_with() {\n assert_eq!(\n@@ -261,17 +280,4 @@ mod tests {\n vec![\"aa\", \"bb\", \"ff\"]\n );\n }\n-\n- #[test]\n- fn test_std_key() {\n- let dict = dict! {Str::ever(\"a\") => 1, Str::rc(\"b\") => 2};\n- assert_eq!(dict.get(\"a\"), Some(&1));\n- assert_eq!(dict.get(\"b\"), Some(&2));\n- assert_eq!(dict.get(&Str::ever(\"b\")), Some(&2));\n- assert_eq!(dict.get(&Str::rc(\"b\")), Some(&2));\n-\n- let dict = dict! {Field::private(Str::ever(\"a\")) => 1, Field::public(Str::ever(\"b\")) => 2};\n- assert_eq!(dict.get(\"a\"), Some(&1));\n- assert_eq!(dict.get(\"b\"), Some(&2));\n- }\n }\n", "triple.rs": "@@ -0,0 +1,82 @@\n+#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]\n+pub enum Triple<T, E> {\n+ Ok(T),\n+ Err(E),\n+ None,\n+}\n+\n+impl<T, E> Triple<T, E> {\n+ pub fn none_then(self, err: E) -> Result<T, E> {\n+ match self {\n+ Triple::None => Err(err),\n+ Triple::Ok(ok) => Ok(ok),\n+ Triple::Err(err) => Err(err),\n+ }\n+ }\n+\n+ pub fn none_or_result(self, f: impl FnOnce() -> E) -> Result<T, E> {\n+ match self {\n+ Triple::None => Err(f()),\n+ Triple::Ok(ok) => Ok(ok),\n+ Triple::Err(err) => Err(err),\n+ }\n+ }\n+\n+ pub fn none_or_else(self, f: impl FnOnce() -> Triple<T, E>) -> Triple<T, E> {\n+ match self {\n+ Triple::None => f(),\n+ Triple::Ok(ok) => Triple::Ok(ok),\n+ Triple::Err(err) => Triple::Err(err),\n+ }\n+ }\n+\n+ pub fn unwrap_to_result(self) -> Result<T, E> {\n+ match self {\n+ Triple::None => panic!(\"unwrapping Triple::None\"),\n+ Triple::Ok(ok) => Ok(ok),\n+ Triple::Err(err) => Err(err),\n+ }\n+ }\n+\n+ pub fn ok(self) -> Option<T> {\n+ match self {\n+ Triple::None => None,\n+ Triple::Ok(ok) => Some(ok),\n+ Triple::Err(_) => None,\n+ }\n+ }\n+\n+ pub fn or_else(self, f: impl FnOnce() -> Result<T, E>) -> Result<T, E> {\n+ match self {\n+ Triple::None => f(),\n+ Triple::Ok(ok) => Ok(ok),\n+ Triple::Err(err) => Err(err),\n+ }\n+ }\n+\n+ pub fn unwrap_or(self, default: T) -> T {\n+ match self {\n+ Triple::None => default,\n+ Triple::Ok(ok) => ok,\n+ Triple::Err(_) => default,\n+ }\n+ }\n+\n+ pub fn unwrap_err(self) -> E {\n+ match self {\n+ Triple::None => panic!(\"unwrapping Triple::None\"),\n+ Triple::Ok(_) => panic!(\"unwrapping Triple::Ok\"),\n+ Triple::Err(err) => err,\n+ }\n+ }\n+}\n+\n+impl<T, E: std::error::Error> Triple<T, E> {\n+ pub fn unwrap(self) -> T {\n+ match self {\n+ Triple::None => panic!(\"unwrapping Triple::None\"),\n+ Triple::Ok(ok) => ok,\n+ Triple::Err(err) => panic!(\"unwrapping Triple::Err({err})\"),\n+ }\n+ }\n+}\n", "vis.rs": "@@ -0,0 +1,233 @@\n+use std::borrow::Borrow;\n+use std::fmt;\n+\n+#[allow(unused_imports)]\n+use erg_common::log;\n+use erg_common::set::Set;\n+use erg_common::{switch_lang, Str};\n+\n+use erg_parser::ast::AccessModifier;\n+\n+use crate::context::Context;\n+use crate::ty::Type;\n+\n+#[derive(Debug, Clone, PartialEq, Eq, Hash)]\n+pub enum VisibilityModifier {\n+ Public,\n+ Private,\n+ Restricted(Set<Str>),\n+ SubtypeRestricted(Type),\n+}\n+\n+impl fmt::Display for VisibilityModifier {\n+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n+ match self {\n+ Self::Private => write!(f, \"::\"),\n+ Self::Public => write!(f, \".\"),\n+ Self::Restricted(namespaces) => write!(f, \"::[{namespaces}]\"),\n+ Self::SubtypeRestricted(typ) => write!(f, \"::[<: {typ}]\"),\n+ }\n+ }\n+}\n+\n+impl VisibilityModifier {\n+ pub const fn is_public(&self) -> bool {\n+ matches!(self, Self::Public)\n+ }\n+ pub const fn is_private(&self) -> bool {\n+ matches!(self, Self::Private)\n+ }\n+\n+ pub const fn display_as_accessor(&self) -> &'static str {\n+ match self {\n+ Self::Public => \".\",\n+ Self::Private | Self::Restricted(_) | Self::SubtypeRestricted(_) => \"::\",\n+ }\n+ }\n+\n+ pub fn display(&self) -> String {\n+ match self {\n+ Self::Private => switch_lang!(\n+ \"japanese\" => \"\u975e\u516c\u958b\",\n+ \"simplified_chinese\" => \"\u79c1\u6709\",\n+ \"traditional_chinese\" => \"\u79c1\u6709\",\n+ \"english\" => \"private\",\n+ )\n+ .into(),\n+ Self::Public => switch_lang!(\n+ \"japanese\" => \"\u516c\u958b\",\n+ \"simplified_chinese\" => \"\u516c\u5f00\",\n+ \"traditional_chinese\" => \"\u516c\u958b\",\n+ \"english\" => \"public\",\n+ )\n+ .into(),\n+ Self::Restricted(namespaces) => switch_lang!(\n+ \"japanese\" => format!(\"\u5236\u9650\u4ed8\u304d\u516c\u958b({namespaces}\u3067\u306e\u307f\u516c\u958b)\"),\n+ \"simplified_chinese\" => format!(\"\u53d7\u9650\u516c\u5f00({namespaces}\u4e2d\u53ef\u89c1)\"),\n+ \"traditional_chinese\" => format!(\"\u53d7\u9650\u516c\u958b({namespaces}\u4e2d\u53ef\u898b)\"),\n+ \"english\" => format!(\"restricted public ({namespaces} only)\"),\n+ ),\n+ Self::SubtypeRestricted(typ) => switch_lang!(\n+ \"japanese\" => format!(\"\u5236\u9650\u4ed8\u304d\u516c\u958b({typ}\u306e\u90e8\u5206\u578b\u3067\u306e\u307f\u516c\u958b)\"),\n+ \"simplified_chinese\" => format!(\"\u53d7\u9650\u516c\u5f00({typ}\u7684\u5b50\u7c7b\u578b\u4e2d\u53ef\u89c1)\"),\n+ \"traditional_chinese\" => format!(\"\u53d7\u9650\u516c\u958b({typ}\u7684\u5b50\u985e\u578b\u4e2d\u53ef\u898b)\"),\n+ \"english\" => format!(\"restricted public (subtypes of {typ} only)\"),\n+ ),\n+ }\n+ }\n+}\n+\n+#[derive(Debug, Clone, PartialEq, Eq, Hash)]\n+pub struct Visibility {\n+ pub modifier: VisibilityModifier,\n+ pub def_namespace: Str,\n+}\n+\n+impl Visibility {\n+ pub const DUMMY_PRIVATE: Self = Self {\n+ modifier: VisibilityModifier::Private,\n+ def_namespace: Str::ever(\"<dummy>\"),\n+ };\n+ pub const DUMMY_PUBLIC: Self = Self {\n+ modifier: VisibilityModifier::Public,\n+ def_namespace: Str::ever(\"<dummy>\"),\n+ };\n+ pub const BUILTIN_PRIVATE: Self = Self {\n+ modifier: VisibilityModifier::Private,\n+ def_namespace: Str::ever(\"<builtins>\"),\n+ };\n+ pub const BUILTIN_PUBLIC: Self = Self {\n+ modifier: VisibilityModifier::Public,\n+ def_namespace: Str::ever(\"<builtins>\"),\n+ };\n+\n+ pub const fn new(modifier: VisibilityModifier, def_namespace: Str) -> Self {\n+ Self {\n+ modifier,\n+ def_namespace,\n+ }\n+ }\n+\n+ pub fn private<S: Into<Str>>(namespace: S) -> Self {\n+ Self {\n+ modifier: VisibilityModifier::Private,\n+ def_namespace: namespace.into(),\n+ }\n+ }\n+\n+ pub const fn is_public(&self) -> bool {\n+ self.modifier.is_public()\n+ }\n+ pub const fn is_private(&self) -> bool {\n+ self.modifier.is_private()\n+ }\n+\n+ pub fn compatible(&self, access: &AccessModifier, namespace: &Context) -> bool {\n+ match (&self.modifier, access) {\n+ (_, AccessModifier::Force) => true,\n+ (VisibilityModifier::Public, AccessModifier::Auto | AccessModifier::Public) => true,\n+ // compatible example:\n+ // def_namespace: <module>::C\n+ // namespace: <module>::C::f\n+ (VisibilityModifier::Private, AccessModifier::Auto | AccessModifier::Private) => {\n+ &self.def_namespace[..] == \"<builtins>\"\n+ || namespace.name.starts_with(&self.def_namespace[..])\n+ }\n+ (\n+ VisibilityModifier::Restricted(namespaces),\n+ AccessModifier::Auto | AccessModifier::Private,\n+ ) => {\n+ namespace.name.starts_with(&self.def_namespace[..])\n+ || namespaces.contains(&namespace.name)\n+ }\n+ (\n+ VisibilityModifier::SubtypeRestricted(typ),\n+ AccessModifier::Auto | AccessModifier::Private,\n+ ) => {\n+ namespace.name.starts_with(&self.def_namespace[..]) || {\n+ let Some(space_t) = namespace.rec_get_self_t() else {\n+ return false;\n+ };\n+ namespace.subtype_of(&space_t, typ)\n+ }\n+ }\n+ _ => false,\n+ }\n+ }\n+}\n+\n+/// same structure as `Identifier`, but only for Record fields.\n+#[derive(Debug, Clone, Eq)]\n+pub struct Field {\n+ pub vis: VisibilityModifier,\n+ pub symbol: Str,\n+}\n+\n+impl PartialEq for Field {\n+ fn eq(&self, other: &Self) -> bool {\n+ self.symbol == other.symbol\n+ }\n+}\n+\n+impl std::hash::Hash for Field {\n+ fn hash<H: std::hash::Hasher>(&self, state: &mut H) {\n+ self.symbol.hash(state);\n+ }\n+}\n+\n+impl fmt::Display for Field {\n+ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {\n+ write!(f, \"{}{}\", self.vis, self.symbol)\n+ }\n+}\n+\n+impl Borrow<str> for Field {\n+ #[inline]\n+ fn borrow(&self) -> &str {\n+ &self.symbol[..]\n+ }\n+}\n+\n+impl Borrow<Str> for Field {\n+ #[inline]\n+ fn borrow(&self) -> &Str {\n+ &self.symbol\n+ }\n+}\n+\n+impl Field {\n+ pub const fn new(vis: VisibilityModifier, symbol: Str) -> Self {\n+ Field { vis, symbol }\n+ }\n+\n+ pub fn private(symbol: Str) -> Self {\n+ Field::new(VisibilityModifier::Private, symbol)\n+ }\n+\n+ pub fn public(symbol: Str) -> Self {\n+ Field::new(VisibilityModifier::Public, symbol)\n+ }\n+\n+ pub fn is_const(&self) -> bool {\n+ self.symbol.starts_with(char::is_uppercase)\n+ }\n+}\n+\n+#[cfg(test)]\n+mod tests {\n+ use super::*;\n+ use erg_common::dict;\n+\n+ #[test]\n+ fn test_std_key() {\n+ let dict = dict! {Str::ever(\"a\") => 1, Str::rc(\"b\") => 2};\n+ assert_eq!(dict.get(\"a\"), Some(&1));\n+ assert_eq!(dict.get(\"b\"), Some(&2));\n+ assert_eq!(dict.get(&Str::ever(\"b\")), Some(&2));\n+ assert_eq!(dict.get(&Str::rc(\"b\")), Some(&2));\n+\n+ let dict = dict! {Field::private(Str::ever(\"a\")) => 1, Field::public(Str::ever(\"b\")) => 2};\n+ assert_eq!(dict.get(\"a\"), Some(&1));\n+ assert_eq!(dict.get(\"b\"), Some(&2));\n+ }\n+}\n", "codegen.rs": "@@ -17,11 +17,11 @@ use erg_common::opcode311::{BinOpCode, Opcode311};\n use erg_common::option_enum_unwrap;\n use erg_common::python_util::{env_python_version, PythonVersion};\n use erg_common::traits::{Locational, Stream};\n-use erg_common::vis::Visibility;\n use erg_common::Str;\n use erg_common::{\n debug_power_assert, enum_unwrap, fn_name, fn_name_full, impl_stream, log, switch_unreachable,\n };\n+use erg_parser::ast::VisModifierSpec;\n use erg_parser::ast::{DefId, DefKind};\n use CommonOpcode::*;\n \n@@ -38,7 +38,7 @@ use crate::hir::{\n SubrSignature, Tuple, UnaryOp, VarSignature, HIR,\n };\n use crate::ty::value::ValueObj;\n-use crate::ty::{HasType, Type, TypeCode, TypePair};\n+use crate::ty::{HasType, Type, TypeCode, TypePair, VisibilityModifier};\n use crate::varinfo::VarInfo;\n use erg_common::fresh::fresh_varname;\n use AccessKind::*;\n@@ -70,7 +70,7 @@ fn debind(ident: &Identifier) -> Option<Str> {\n }\n }\n \n-fn escape_name(name: &str, vis: Visibility) -> Str {\n+fn escape_name(name: &str, vis: &VisibilityModifier) -> Str {\n let name = name.replace('!', \"__erg_proc__\");\n let name = name.replace('$', \"__erg_shared__\");\n if vis.is_private() {\n@@ -908,7 +908,7 @@ impl PyCodeGenerator {\n if s == \"_\" {\n format!(\"_{i}\")\n } else {\n- escape_name(s, Visibility::Private).to_string()\n+ escape_name(s, &VisibilityModifier::Private).to_string()\n }\n })\n .map(|s| self.get_cached(&s))\n@@ -930,11 +930,11 @@ impl PyCodeGenerator {\n // Since Erg does not allow the coexistence of private and public variables with the same name, there is no problem in this trick.\n let is_record = a.obj.ref_t().is_record();\n if is_record {\n- a.ident.dot = Some(DOT);\n+ a.ident.raw.vis = VisModifierSpec::Public(DOT);\n }\n if let Some(varname) = debind(&a.ident) {\n- a.ident.dot = None;\n- a.ident.name = VarName::from_str(varname);\n+ a.ident.raw.vis = VisModifierSpec::Private;\n+ a.ident.raw.name = VarName::from_str(varname);\n self.emit_load_name_instr(a.ident);\n } else {\n self.emit_expr(*a.obj);\n@@ -1153,9 +1153,9 @@ impl PyCodeGenerator {\n self.emit_load_const(code);\n if self.py_version.minor < Some(11) {\n if let Some(class) = class_name {\n- self.emit_load_const(Str::from(format!(\"{class}.{}\", ident.name.inspect())));\n+ self.emit_load_const(Str::from(format!(\"{class}.{}\", ident.inspect())));\n } else {\n- self.emit_load_const(ident.name.inspect().clone());\n+ self.emit_load_const(ident.inspect().clone());\n }\n } else {\n self.stack_inc();\n@@ -1213,8 +1213,8 @@ impl PyCodeGenerator {\n patch_def.sig.ident().to_string_notype(),\n def.sig.ident().to_string_notype()\n );\n- def.sig.ident_mut().name = VarName::from_str(Str::from(name));\n- def.sig.ident_mut().dot = None;\n+ def.sig.ident_mut().raw.name = VarName::from_str(Str::from(name));\n+ def.sig.ident_mut().raw.vis = VisModifierSpec::Private;\n self.emit_def(def);\n }\n }\n@@ -1925,7 +1925,8 @@ impl PyCodeGenerator {\n }\n match param.raw.pat {\n ParamPattern::VarName(name) => {\n- let ident = Identifier::bare(None, name);\n+ let ident = erg_parser::ast::Identifier::private_from_varname(name);\n+ let ident = Identifier::bare(ident);\n self.emit_store_instr(ident, AccessKind::Name);\n }\n ParamPattern::Discard(_) => {\n@@ -2190,7 +2191,7 @@ impl PyCodeGenerator {\n let kw = if is_py_api {\n arg.keyword.content\n } else {\n- escape_name(&arg.keyword.content, Visibility::Private)\n+ escape_name(&arg.keyword.content, &VisibilityModifier::Private)\n };\n kws.push(ValueObj::Str(kw));\n self.emit_expr(arg.expr);\n@@ -2301,7 +2302,7 @@ impl PyCodeGenerator {\n mut args: Args,\n ) {\n log!(info \"entered {}\", fn_name!());\n- method_name.dot = None;\n+ method_name.raw.vis = VisModifierSpec::Private;\n method_name.vi.py_name = Some(func_name);\n self.emit_push_null();\n self.emit_load_name_instr(method_name);\n@@ -2785,6 +2786,7 @@ impl PyCodeGenerator {\n let vi = VarInfo::nd_parameter(\n __new__.return_t().unwrap().clone(),\n ident.vi.def_loc.clone(),\n+ \"?\".into(),\n );\n let raw =\n erg_parser::ast::NonDefaultParamSignature::new(ParamPattern::VarName(self_param), None);\n@@ -2797,7 +2799,11 @@ impl PyCodeGenerator {\n let param = VarName::from_str_and_line(Str::from(param_name.clone()), line);\n let raw =\n erg_parser::ast::NonDefaultParamSignature::new(ParamPattern::VarName(param), None);\n- let vi = VarInfo::nd_parameter(new_first_param.typ().clone(), ident.vi.def_loc.clone());\n+ let vi = VarInfo::nd_parameter(\n+ new_first_param.typ().clone(),\n+ ident.vi.def_loc.clone(),\n+ \"?\".into(),\n+ );\n let param = NonDefaultParamSignature::new(raw, vi, None);\n let params = Params::new(vec![self_param, param], None, vec![], None);\n (param_name, params)\n@@ -2818,20 +2824,19 @@ impl PyCodeGenerator {\n for field in rec.keys() {\n let obj =\n Expr::Accessor(Accessor::private_with_line(Str::from(&param_name), line));\n- let expr = obj.attr_expr(Identifier::bare(\n- Some(DOT),\n- VarName::from_str(field.symbol.clone()),\n- ));\n+ let ident = erg_parser::ast::Identifier::public(field.symbol.clone());\n+ let expr = obj.attr_expr(Identifier::bare(ident));\n let obj = Expr::Accessor(Accessor::private_with_line(Str::ever(\"self\"), line));\n let dot = if field.vis.is_private() {\n- None\n+ VisModifierSpec::Private\n } else {\n- Some(DOT)\n+ VisModifierSpec::Public(DOT)\n };\n- let attr = obj.attr(Identifier::bare(\n+ let attr = erg_parser::ast::Identifier::new(\n dot,\n VarName::from_str(field.symbol.clone()),\n- ));\n+ );\n+ let attr = obj.attr(Identifier::bare(attr));\n let redef = ReDef::new(attr, Block::new(vec![expr]));\n attrs.push(Expr::ReDef(redef));\n }\n@@ -2865,8 +2870,7 @@ impl PyCodeGenerator {\n let line = sig.ln_begin().unwrap();\n let mut ident = Identifier::public_with_line(DOT, Str::ever(\"new\"), line);\n let class = Expr::Accessor(Accessor::Ident(class_ident.clone()));\n- let mut new_ident =\n- Identifier::bare(None, VarName::from_str_and_line(Str::ever(\"__new__\"), line));\n+ let mut new_ident = Identifier::private_with_line(Str::ever(\"__new__\"), line);\n new_ident.vi.py_name = Some(Str::ever(\"__call__\"));\n let class_new = class.attr_expr(new_ident);\n ident.vi.t = __new__;\n@@ -2876,7 +2880,11 @@ impl PyCodeGenerator {\n .map(|s| s.to_string())\n .unwrap_or_else(fresh_varname);\n let param = VarName::from_str_and_line(Str::from(param_name.clone()), line);\n- let vi = VarInfo::nd_parameter(new_first_param.typ().clone(), ident.vi.def_loc.clone());\n+ let vi = VarInfo::nd_parameter(\n+ new_first_param.typ().clone(),\n+ ident.vi.def_loc.clone(),\n+ \"?\".into(),\n+ );\n let raw =\n erg_parser::ast::NonDefaultParamSignature::new(ParamPattern::VarName(param), None);\n let param = NonDefaultParamSignature::new(raw, vi, None);\n", "compare.rs": "@@ -1,21 +1,20 @@\n //! provides type-comparison\n use std::option::Option; // conflicting to Type::Option\n \n+use erg_common::dict::Dict;\n use erg_common::error::MultiErrorDisplay;\n use erg_common::style::colors::DEBUG_ERROR;\n use erg_common::traits::StructuralEq;\n+use erg_common::{assume_unreachable, log};\n \n use crate::ty::constructors::{and, not, or, poly};\n use crate::ty::free::{Constraint, FreeKind};\n use crate::ty::typaram::{OpKind, TyParam, TyParamOrdering};\n use crate::ty::value::ValueObj;\n use crate::ty::value::ValueObj::Inf;\n-use crate::ty::{Predicate, RefinementType, SubrKind, SubrType, Type};\n+use crate::ty::{Field, Predicate, RefinementType, SubrKind, SubrType, Type};\n use Predicate as Pred;\n \n-use erg_common::dict::Dict;\n-use erg_common::vis::Field;\n-use erg_common::{assume_unreachable, log};\n use TyParamOrdering::*;\n use Type::*;\n \n@@ -705,7 +704,12 @@ impl Context {\n .unwrap_or_else(|| panic!(\"{other} is not found\"));\n ctx.type_dir()\n .into_iter()\n- .map(|(name, vi)| (Field::new(vi.vis, name.inspect().clone()), vi.t.clone()))\n+ .map(|(name, vi)| {\n+ (\n+ Field::new(vi.vis.modifier.clone(), name.inspect().clone()),\n+ vi.t.clone(),\n+ )\n+ })\n .collect()\n }\n }\n", "eval.rs": "@@ -7,7 +7,6 @@ use erg_common::log;\n use erg_common::set::Set;\n use erg_common::shared::Shared;\n use erg_common::traits::{Locational, Stream};\n-use erg_common::vis::Field;\n use erg_common::{dict, fn_name, option_enum_unwrap, set};\n use erg_common::{enum_unwrap, fmt_vec};\n use erg_common::{RcArray, Str};\n@@ -27,7 +26,7 @@ use crate::ty::typaram::{OpKind, TyParam};\n use crate::ty::value::{GenTypeObj, TypeObj, ValueObj};\n use crate::ty::{ConstSubr, HasType, Predicate, SubrKind, Type, UserConstSubr, ValueArgs};\n \n-use crate::context::instantiate::ParamKind;\n+use crate::context::instantiate_spec::ParamKind;\n use crate::context::{ClassDefType, Context, ContextKind, RegistrationMode};\n use crate::error::{EvalError, EvalErrors, EvalResult, SingleEvalResult};\n \n@@ -166,7 +165,10 @@ impl Context {\n }\n \n fn eval_attr(&self, obj: ValueObj, ident: &Identifier) -> SingleEvalResult<ValueObj> {\n- if let Some(val) = obj.try_get_attr(&Field::from(ident)) {\n+ let field = self\n+ .instantiate_field(ident)\n+ .map_err(|mut errs| errs.remove(0))?;\n+ if let Some(val) = obj.try_get_attr(&field) {\n return Ok(val);\n }\n if let ValueObj::Type(t) = &obj {\n@@ -301,7 +303,7 @@ impl Context {\n fn eval_const_def(&mut self, def: &Def) -> EvalResult<ValueObj> {\n if def.is_const() {\n let __name__ = def.sig.ident().unwrap().inspect();\n- let vis = def.sig.vis();\n+ let vis = self.instantiate_vis_modifier(def.sig.vis())?;\n let tv_cache = match &def.sig {\n Signature::Subr(subr) => {\n let ty_cache =\n@@ -430,7 +432,7 @@ impl Context {\n let elem = record_ctx.eval_const_block(&attr.body.block)?;\n let ident = match &attr.sig {\n Signature::Var(var) => match &var.pat {\n- VarPattern::Ident(ident) => Field::new(ident.vis(), ident.inspect().clone()),\n+ VarPattern::Ident(ident) => self.instantiate_field(ident)?,\n other => {\n return feature_error!(self, other.loc(), &format!(\"record field: {other}\"))\n }\n", "classes.rs": "@@ -1,12 +1,11 @@\n #[allow(unused_imports)]\n use erg_common::log;\n-use erg_common::vis::Visibility;\n use erg_common::Str as StrStruct;\n \n use crate::ty::constructors::*;\n use crate::ty::typaram::TyParam;\n use crate::ty::value::ValueObj;\n-use crate::ty::Type;\n+use crate::ty::{Type, Visibility};\n use ParamSpec as PS;\n use Type::*;\n \n@@ -14,14 +13,13 @@ use crate::context::initialize::*;\n use crate::context::{Context, ParamSpec};\n use crate::varinfo::Mutability;\n use Mutability::*;\n-use Visibility::*;\n \n impl Context {\n pub(super) fn init_builtin_classes(&mut self) {\n let vis = if cfg!(feature = \"py_compatible\") {\n- Public\n+ Visibility::BUILTIN_PUBLIC\n } else {\n- Private\n+ Visibility::BUILTIN_PRIVATE\n };\n let T = mono_q(TY_T, instanceof(Type));\n let U = mono_q(TY_U, instanceof(Type));\n@@ -62,12 +60,17 @@ impl Context {\n );\n obj.register_py_builtin(FUNDAMENTAL_STR, fn0_met(Obj, Str), Some(FUNDAMENTAL_STR), 9);\n let mut obj_in = Self::builtin_methods(Some(poly(IN, vec![ty_tp(Type)])), 2);\n- obj_in.register_builtin_erg_impl(OP_IN, fn1_met(Obj, Type, Bool), Const, Public);\n+ obj_in.register_builtin_erg_impl(\n+ OP_IN,\n+ fn1_met(Obj, Type, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n obj.register_trait(Obj, obj_in);\n let mut obj_mutizable = Self::builtin_methods(Some(mono(MUTIZABLE)), 1);\n obj_mutizable.register_builtin_const(\n MUTABLE_MUT_TYPE,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(mono(MUTABLE_OBJ)),\n );\n obj.register_trait(Obj, obj_mutizable);\n@@ -77,9 +80,25 @@ impl Context {\n let mut float = Self::builtin_mono_class(FLOAT, 2);\n float.register_superclass(Obj, &obj);\n // TODO: support multi platform\n- float.register_builtin_const(EPSILON, Public, ValueObj::Float(2.220446049250313e-16));\n- float.register_builtin_py_impl(REAL, Float, Const, Public, Some(FUNC_REAL));\n- float.register_builtin_py_impl(IMAG, Float, Const, Public, Some(FUNC_IMAG));\n+ float.register_builtin_const(\n+ EPSILON,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::Float(2.220446049250313e-16),\n+ );\n+ float.register_builtin_py_impl(\n+ REAL,\n+ Float,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_REAL),\n+ );\n+ float.register_builtin_py_impl(\n+ IMAG,\n+ Float,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_IMAG),\n+ );\n float.register_py_builtin(\n FUNC_AS_INTEGER_RATIO,\n fn0_met(Float, tuple_t(vec![Int, Int])),\n@@ -112,58 +131,139 @@ impl Context {\n OP_CMP,\n fn1_met(Float, Float, mono(ORDERING)),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n float.register_trait(Float, float_ord);\n // Float doesn't have an `Eq` implementation\n let op_t = fn1_met(Float, Float, Float);\n let mut float_add = Self::builtin_methods(Some(poly(ADD, vec![ty_tp(Float)])), 2);\n- float_add.register_builtin_erg_impl(OP_ADD, op_t.clone(), Const, Public);\n- float_add.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Float));\n+ float_add.register_builtin_erg_impl(\n+ OP_ADD,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ float_add.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n float.register_trait(Float, float_add);\n let mut float_sub = Self::builtin_methods(Some(poly(SUB, vec![ty_tp(Float)])), 2);\n- float_sub.register_builtin_erg_impl(OP_SUB, op_t.clone(), Const, Public);\n- float_sub.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Float));\n+ float_sub.register_builtin_erg_impl(\n+ OP_SUB,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ float_sub.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n float.register_trait(Float, float_sub);\n let mut float_mul = Self::builtin_methods(Some(poly(MUL, vec![ty_tp(Float)])), 2);\n- float_mul.register_builtin_erg_impl(OP_MUL, op_t.clone(), Const, Public);\n- float_mul.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Float));\n- float_mul.register_builtin_const(POW_OUTPUT, Public, ValueObj::builtin_t(Float));\n+ float_mul.register_builtin_erg_impl(\n+ OP_MUL,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ float_mul.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n+ float_mul.register_builtin_const(\n+ POW_OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n float.register_trait(Float, float_mul);\n let mut float_div = Self::builtin_methods(Some(poly(DIV, vec![ty_tp(Float)])), 2);\n- float_div.register_builtin_erg_impl(OP_DIV, op_t.clone(), Const, Public);\n- float_div.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Float));\n- float_div.register_builtin_const(MOD_OUTPUT, Public, ValueObj::builtin_t(Float));\n+ float_div.register_builtin_erg_impl(\n+ OP_DIV,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ float_div.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n+ float_div.register_builtin_const(\n+ MOD_OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n float.register_trait(Float, float_div);\n let mut float_floordiv =\n Self::builtin_methods(Some(poly(FLOOR_DIV, vec![ty_tp(Float)])), 2);\n- float_floordiv.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Public);\n- float_floordiv.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Float));\n+ float_floordiv.register_builtin_erg_impl(\n+ OP_FLOOR_DIV,\n+ op_t,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ float_floordiv.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n float.register_trait(Float, float_floordiv);\n let mut float_pos = Self::builtin_methods(Some(mono(POS)), 1);\n- float_pos.register_builtin_erg_impl(OP_POS, fn0_met(Float, Float), Const, Public);\n+ float_pos.register_builtin_erg_impl(\n+ OP_POS,\n+ fn0_met(Float, Float),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n float.register_trait(Float, float_pos);\n let mut float_neg = Self::builtin_methods(Some(mono(NEG)), 1);\n- float_neg.register_builtin_erg_impl(OP_NEG, fn0_met(Float, Float), Const, Public);\n+ float_neg.register_builtin_erg_impl(\n+ OP_NEG,\n+ fn0_met(Float, Float),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n float.register_trait(Float, float_neg);\n let mut float_mutizable = Self::builtin_methods(Some(mono(MUTIZABLE)), 2);\n float_mutizable.register_builtin_const(\n MUTABLE_MUT_TYPE,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(mono(MUT_FLOAT)),\n );\n float.register_trait(Float, float_mutizable);\n let mut float_show = Self::builtin_methods(Some(mono(SHOW)), 1);\n let t = fn0_met(Float, Str);\n- float_show.register_builtin_py_impl(TO_STR, t, Immutable, Public, Some(FUNDAMENTAL_STR));\n+ float_show.register_builtin_py_impl(\n+ TO_STR,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNDAMENTAL_STR),\n+ );\n float.register_trait(Float, float_show);\n \n /* Ratio */\n // TODO: Int, Nat, Bool\u306e\u7d99\u627f\u5143\u3092Ratio\u306b\u3059\u308b(\u4eca\u306fFloat)\n let mut ratio = Self::builtin_mono_class(RATIO, 2);\n ratio.register_superclass(Obj, &obj);\n- ratio.register_builtin_py_impl(REAL, Ratio, Const, Public, Some(FUNC_REAL));\n- ratio.register_builtin_py_impl(IMAG, Ratio, Const, Public, Some(FUNC_IMAG));\n+ ratio.register_builtin_py_impl(\n+ REAL,\n+ Ratio,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_REAL),\n+ );\n+ ratio.register_builtin_py_impl(\n+ IMAG,\n+ Ratio,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_IMAG),\n+ );\n ratio.register_marker_trait(mono(NUM));\n ratio.register_marker_trait(mono(ORD));\n let mut ratio_ord = Self::builtin_methods(Some(mono(ORD)), 2);\n@@ -171,46 +271,104 @@ impl Context {\n OP_CMP,\n fn1_met(Ratio, Ratio, mono(ORDERING)),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n ratio.register_trait(Ratio, ratio_ord);\n let mut ratio_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n- ratio_eq.register_builtin_erg_impl(OP_EQ, fn1_met(Ratio, Ratio, Bool), Const, Public);\n+ ratio_eq.register_builtin_erg_impl(\n+ OP_EQ,\n+ fn1_met(Ratio, Ratio, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n ratio.register_trait(Ratio, ratio_eq);\n let op_t = fn1_met(Ratio, Ratio, Ratio);\n let mut ratio_add = Self::builtin_methods(Some(poly(ADD, vec![ty_tp(Ratio)])), 2);\n- ratio_add.register_builtin_erg_impl(OP_ADD, op_t.clone(), Const, Public);\n- ratio_add.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Ratio));\n+ ratio_add.register_builtin_erg_impl(\n+ OP_ADD,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ ratio_add.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n ratio.register_trait(Ratio, ratio_add);\n let mut ratio_sub = Self::builtin_methods(Some(poly(SUB, vec![ty_tp(Ratio)])), 2);\n- ratio_sub.register_builtin_erg_impl(OP_SUB, op_t.clone(), Const, Public);\n- ratio_sub.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Ratio));\n+ ratio_sub.register_builtin_erg_impl(\n+ OP_SUB,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ ratio_sub.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n ratio.register_trait(Ratio, ratio_sub);\n let mut ratio_mul = Self::builtin_methods(Some(poly(MUL, vec![ty_tp(Ratio)])), 2);\n- ratio_mul.register_builtin_erg_impl(OP_MUL, op_t.clone(), Const, Public);\n- ratio_mul.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Ratio));\n- ratio_mul.register_builtin_const(POW_OUTPUT, Public, ValueObj::builtin_t(Ratio));\n+ ratio_mul.register_builtin_erg_impl(\n+ OP_MUL,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ ratio_mul.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n+ ratio_mul.register_builtin_const(\n+ POW_OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n ratio.register_trait(Ratio, ratio_mul);\n let mut ratio_div = Self::builtin_methods(Some(poly(DIV, vec![ty_tp(Ratio)])), 2);\n- ratio_div.register_builtin_erg_impl(OP_DIV, op_t.clone(), Const, Public);\n- ratio_div.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Ratio));\n- ratio_div.register_builtin_const(MOD_OUTPUT, Public, ValueObj::builtin_t(Ratio));\n+ ratio_div.register_builtin_erg_impl(\n+ OP_DIV,\n+ op_t.clone(),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ ratio_div.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n+ ratio_div.register_builtin_const(\n+ MOD_OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n ratio.register_trait(Ratio, ratio_div);\n let mut ratio_floordiv =\n Self::builtin_methods(Some(poly(FLOOR_DIV, vec![ty_tp(Ratio)])), 2);\n- ratio_floordiv.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Public);\n- ratio_floordiv.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Ratio));\n+ ratio_floordiv.register_builtin_erg_impl(\n+ OP_FLOOR_DIV,\n+ op_t,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ ratio_floordiv.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n ratio.register_trait(Ratio, ratio_floordiv);\n let mut ratio_mutizable = Self::builtin_methods(Some(mono(MUTIZABLE)), 2);\n ratio_mutizable.register_builtin_const(\n MUTABLE_MUT_TYPE,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(mono(MUT_RATIO)),\n );\n ratio.register_trait(Ratio, ratio_mutizable);\n let mut ratio_show = Self::builtin_methods(Some(mono(SHOW)), 1);\n let t = fn0_met(Ratio, Str);\n- ratio_show.register_builtin_erg_impl(TO_STR, t, Immutable, Public);\n+ ratio_show.register_builtin_erg_impl(TO_STR, t, Immutable, Visibility::BUILTIN_PUBLIC);\n ratio.register_trait(Ratio, ratio_show);\n \n /* Int */\n@@ -267,50 +425,108 @@ impl Context {\n OP_PARTIAL_CMP,\n fn1_met(Int, Int, or(mono(ORDERING), NoneType)),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n int.register_trait(Int, int_ord);\n let mut int_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n- int_eq.register_builtin_erg_impl(OP_EQ, fn1_met(Int, Int, Bool), Const, Public);\n+ int_eq.register_builtin_erg_impl(\n+ OP_EQ,\n+ fn1_met(Int, Int, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n int.register_trait(Int, int_eq);\n // __div__ is not included in Int (cast to Ratio)\n let op_t = fn1_met(Int, Int, Int);\n let mut int_add = Self::builtin_methods(Some(poly(ADD, vec![ty_tp(Int)])), 2);\n- int_add.register_builtin_erg_impl(OP_ADD, op_t.clone(), Const, Public);\n- int_add.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Int));\n+ int_add.register_builtin_erg_impl(OP_ADD, op_t.clone(), Const, Visibility::BUILTIN_PUBLIC);\n+ int_add.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Int),\n+ );\n int.register_trait(Int, int_add);\n let mut int_sub = Self::builtin_methods(Some(poly(SUB, vec![ty_tp(Int)])), 2);\n- int_sub.register_builtin_erg_impl(OP_SUB, op_t.clone(), Const, Public);\n- int_sub.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Int));\n+ int_sub.register_builtin_erg_impl(OP_SUB, op_t.clone(), Const, Visibility::BUILTIN_PUBLIC);\n+ int_sub.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Int),\n+ );\n int.register_trait(Int, int_sub);\n let mut int_mul = Self::builtin_methods(Some(poly(MUL, vec![ty_tp(Int)])), 2);\n- int_mul.register_builtin_erg_impl(OP_MUL, op_t.clone(), Const, Public);\n- int_mul.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Int));\n- int_mul.register_builtin_const(POW_OUTPUT, Public, ValueObj::builtin_t(Nat));\n+ int_mul.register_builtin_erg_impl(OP_MUL, op_t.clone(), Const, Visibility::BUILTIN_PUBLIC);\n+ int_mul.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Int),\n+ );\n+ int_mul.register_builtin_const(\n+ POW_OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Nat),\n+ );\n int.register_trait(Int, int_mul);\n let mut int_floordiv = Self::builtin_methods(Some(poly(FLOOR_DIV, vec![ty_tp(Int)])), 2);\n- int_floordiv.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Public);\n- int_floordiv.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Int));\n+ int_floordiv.register_builtin_erg_impl(\n+ OP_FLOOR_DIV,\n+ op_t,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ int_floordiv.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Int),\n+ );\n int.register_trait(Int, int_floordiv);\n let mut int_pos = Self::builtin_methods(Some(mono(POS)), 2);\n- int_pos.register_builtin_erg_impl(OP_POS, fn0_met(Int, Int), Const, Public);\n+ int_pos.register_builtin_erg_impl(\n+ OP_POS,\n+ fn0_met(Int, Int),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n int.register_trait(Int, int_pos);\n let mut int_neg = Self::builtin_methods(Some(mono(NEG)), 2);\n- int_neg.register_builtin_erg_impl(OP_NEG, fn0_met(Int, Int), Const, Public);\n+ int_neg.register_builtin_erg_impl(\n+ OP_NEG,\n+ fn0_met(Int, Int),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n int.register_trait(Int, int_neg);\n let mut int_mutizable = Self::builtin_methods(Some(mono(MUTIZABLE)), 2);\n int_mutizable.register_builtin_const(\n MUTABLE_MUT_TYPE,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(mono(MUT_INT)),\n );\n int.register_trait(Int, int_mutizable);\n let mut int_show = Self::builtin_methods(Some(mono(SHOW)), 1);\n let t = fn0_met(Int, Str);\n- int_show.register_builtin_py_impl(TO_STR, t, Immutable, Public, Some(FUNDAMENTAL_STR));\n+ int_show.register_builtin_py_impl(\n+ TO_STR,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNDAMENTAL_STR),\n+ );\n int.register_trait(Int, int_show);\n- int.register_builtin_py_impl(REAL, Int, Const, Public, Some(FUNC_REAL));\n- int.register_builtin_py_impl(IMAG, Int, Const, Public, Some(FUNC_IMAG));\n+ int.register_builtin_py_impl(\n+ REAL,\n+ Int,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_REAL),\n+ );\n+ int.register_builtin_py_impl(\n+ IMAG,\n+ Int,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_IMAG),\n+ );\n \n /* Nat */\n let mut nat = Self::builtin_mono_class(NAT, 10);\n@@ -331,63 +547,110 @@ impl Context {\n );\n nat.register_marker_trait(mono(NUM));\n let mut nat_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n- nat_eq.register_builtin_erg_impl(OP_EQ, fn1_met(Nat, Nat, Bool), Const, Public);\n+ nat_eq.register_builtin_erg_impl(\n+ OP_EQ,\n+ fn1_met(Nat, Nat, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n nat.register_trait(Nat, nat_eq);\n let mut nat_ord = Self::builtin_methods(Some(mono(ORD)), 2);\n- nat_ord.register_builtin_erg_impl(OP_CMP, fn1_met(Nat, Nat, mono(ORDERING)), Const, Public);\n+ nat_ord.register_builtin_erg_impl(\n+ OP_CMP,\n+ fn1_met(Nat, Nat, mono(ORDERING)),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n nat.register_trait(Nat, nat_ord);\n // __sub__, __div__ is not included in Nat (cast to Int/ Ratio)\n let op_t = fn1_met(Nat, Nat, Nat);\n let mut nat_add = Self::builtin_methods(Some(poly(ADD, vec![ty_tp(Nat)])), 2);\n- nat_add.register_builtin_erg_impl(OP_ADD, op_t.clone(), Const, Public);\n- nat_add.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Nat));\n+ nat_add.register_builtin_erg_impl(OP_ADD, op_t.clone(), Const, Visibility::BUILTIN_PUBLIC);\n+ nat_add.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Nat),\n+ );\n nat.register_trait(Nat, nat_add);\n let mut nat_mul = Self::builtin_methods(Some(poly(MUL, vec![ty_tp(Nat)])), 2);\n- nat_mul.register_builtin_erg_impl(OP_MUL, op_t.clone(), Const, Public);\n- nat_mul.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Nat));\n+ nat_mul.register_builtin_erg_impl(OP_MUL, op_t.clone(), Const, Visibility::BUILTIN_PUBLIC);\n+ nat_mul.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Nat),\n+ );\n nat.register_trait(Nat, nat_mul);\n let mut nat_floordiv = Self::builtin_methods(Some(poly(FLOOR_DIV, vec![ty_tp(Nat)])), 2);\n- nat_floordiv.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Public);\n- nat_floordiv.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Nat));\n+ nat_floordiv.register_builtin_erg_impl(\n+ OP_FLOOR_DIV,\n+ op_t,\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ nat_floordiv.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Nat),\n+ );\n nat.register_trait(Nat, nat_floordiv);\n let mut nat_mutizable = Self::builtin_methods(Some(mono(MUTIZABLE)), 2);\n nat_mutizable.register_builtin_const(\n MUTABLE_MUT_TYPE,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(mono(MUT_NAT)),\n );\n nat.register_trait(Nat, nat_mutizable);\n- nat.register_builtin_erg_impl(REAL, Nat, Const, Public);\n- nat.register_builtin_erg_impl(IMAG, Nat, Const, Public);\n+ nat.register_builtin_erg_impl(REAL, Nat, Const, Visibility::BUILTIN_PUBLIC);\n+ nat.register_builtin_erg_impl(IMAG, Nat, Const, Visibility::BUILTIN_PUBLIC);\n \n /* Bool */\n let mut bool_ = Self::builtin_mono_class(BOOL, 10);\n bool_.register_superclass(Nat, &nat);\n // class(\"Rational\"),\n // class(\"Integral\"),\n- bool_.register_builtin_erg_impl(OP_AND, fn1_met(Bool, Bool, Bool), Const, Public);\n- bool_.register_builtin_erg_impl(OP_OR, fn1_met(Bool, Bool, Bool), Const, Public);\n+ bool_.register_builtin_erg_impl(\n+ OP_AND,\n+ fn1_met(Bool, Bool, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ bool_.register_builtin_erg_impl(\n+ OP_OR,\n+ fn1_met(Bool, Bool, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n bool_.register_marker_trait(mono(NUM));\n let mut bool_ord = Self::builtin_methods(Some(mono(ORD)), 2);\n bool_ord.register_builtin_erg_impl(\n OP_CMP,\n fn1_met(Bool, Bool, mono(ORDERING)),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n bool_.register_trait(Bool, bool_ord);\n let mut bool_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n- bool_eq.register_builtin_erg_impl(OP_EQ, fn1_met(Bool, Bool, Bool), Const, Public);\n+ bool_eq.register_builtin_erg_impl(\n+ OP_EQ,\n+ fn1_met(Bool, Bool, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n bool_.register_trait(Bool, bool_eq);\n let mut bool_mutizable = Self::builtin_methods(Some(mono(MUTIZABLE)), 2);\n bool_mutizable.register_builtin_const(\n MUTABLE_MUT_TYPE,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(mono(MUT_BOOL)),\n );\n bool_.register_trait(Bool, bool_mutizable);\n let mut bool_show = Self::builtin_methods(Some(mono(SHOW)), 1);\n- bool_show.register_builtin_erg_impl(TO_STR, fn0_met(Bool, Str), Immutable, Public);\n+ bool_show.register_builtin_erg_impl(\n+ TO_STR,\n+ fn0_met(Bool, Str),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n bool_.register_trait(Bool, bool_show);\n let t = fn0_met(Bool, Bool);\n bool_.register_py_builtin(FUNC_INVERT, t, Some(FUNC_INVERT), 9);\n@@ -406,7 +669,7 @@ impl Context {\n Str,\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n str_.register_builtin_erg_impl(\n FUNC_ENCODE,\n@@ -418,44 +681,44 @@ impl Context {\n mono(BYTES),\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n str_.register_builtin_erg_impl(\n FUNC_FORMAT,\n fn_met(Str, vec![], Some(kw(KW_ARGS, Obj)), vec![], Str),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n str_.register_builtin_erg_impl(\n FUNC_LOWER,\n fn_met(Str, vec![], None, vec![], Str),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n str_.register_builtin_erg_impl(\n FUNC_UPPER,\n fn_met(Str, vec![], None, vec![], Str),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n str_.register_builtin_erg_impl(\n FUNC_TO_INT,\n fn_met(Str, vec![], None, vec![], or(Int, NoneType)),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n str_.register_builtin_py_impl(\n FUNC_STARTSWITH,\n fn1_met(Str, Str, Bool),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_STARTSWITH),\n );\n str_.register_builtin_py_impl(\n FUNC_ENDSWITH,\n fn1_met(Str, Str, Bool),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_ENDSWITH),\n );\n str_.register_builtin_py_impl(\n@@ -468,7 +731,7 @@ impl Context {\n unknown_len_array_t(Str),\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_SPLIT),\n );\n str_.register_builtin_py_impl(\n@@ -481,14 +744,14 @@ impl Context {\n unknown_len_array_t(Str),\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_SPLITLINES),\n );\n str_.register_builtin_py_impl(\n FUNC_JOIN,\n fn1_met(unknown_len_array_t(Str), Str, Str),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_JOIN),\n );\n str_.register_builtin_py_impl(\n@@ -501,7 +764,7 @@ impl Context {\n or(Nat, Never),\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_INDEX),\n );\n str_.register_builtin_py_impl(\n@@ -514,7 +777,7 @@ impl Context {\n or(Nat, Never),\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_RINDEX),\n );\n str_.register_builtin_py_impl(\n@@ -527,7 +790,7 @@ impl Context {\n or(Nat, v_enum(set! {(-1).into()})),\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_FIND),\n );\n str_.register_builtin_py_impl(\n@@ -540,7 +803,7 @@ impl Context {\n or(Nat, v_enum(set! {(-1).into()})),\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_RFIND),\n );\n str_.register_builtin_py_impl(\n@@ -553,7 +816,7 @@ impl Context {\n Nat,\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_COUNT),\n );\n str_.register_py_builtin(\n@@ -562,43 +825,95 @@ impl Context {\n Some(FUNC_CAPITALIZE),\n 13,\n );\n- str_.register_builtin_erg_impl(FUNC_CONTAINS, fn1_met(Str, Str, Bool), Immutable, Public);\n+ str_.register_builtin_erg_impl(\n+ FUNC_CONTAINS,\n+ fn1_met(Str, Str, Bool),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n let str_getitem_t = fn1_kw_met(Str, kw(KW_IDX, Nat), Str);\n- str_.register_builtin_erg_impl(FUNDAMENTAL_GETITEM, str_getitem_t, Immutable, Public);\n+ str_.register_builtin_erg_impl(\n+ FUNDAMENTAL_GETITEM,\n+ str_getitem_t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n let mut str_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n- str_eq.register_builtin_erg_impl(OP_EQ, fn1_met(Str, Str, Bool), Const, Public);\n+ str_eq.register_builtin_erg_impl(\n+ OP_EQ,\n+ fn1_met(Str, Str, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n str_.register_trait(Str, str_eq);\n let mut str_seq = Self::builtin_methods(Some(poly(SEQ, vec![ty_tp(Str)])), 2);\n- str_seq.register_builtin_erg_impl(FUNC_LEN, fn0_met(Str, Nat), Const, Public);\n- str_seq.register_builtin_erg_impl(FUNC_GET, fn1_met(Str, Nat, Str), Const, Public);\n+ str_seq.register_builtin_erg_impl(\n+ FUNC_LEN,\n+ fn0_met(Str, Nat),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ str_seq.register_builtin_erg_impl(\n+ FUNC_GET,\n+ fn1_met(Str, Nat, Str),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n str_.register_trait(Str, str_seq);\n let mut str_add = Self::builtin_methods(Some(poly(ADD, vec![ty_tp(Str)])), 2);\n- str_add.register_builtin_erg_impl(OP_ADD, fn1_met(Str, Str, Str), Const, Public);\n- str_add.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Str));\n+ str_add.register_builtin_erg_impl(\n+ OP_ADD,\n+ fn1_met(Str, Str, Str),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ str_add.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Str),\n+ );\n str_.register_trait(Str, str_add);\n let mut str_mul = Self::builtin_methods(Some(poly(MUL, vec![ty_tp(Nat)])), 2);\n- str_mul.register_builtin_erg_impl(OP_MUL, fn1_met(Str, Nat, Str), Const, Public);\n- str_mul.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(Str));\n+ str_mul.register_builtin_erg_impl(\n+ OP_MUL,\n+ fn1_met(Str, Nat, Str),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ str_mul.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Str),\n+ );\n str_.register_trait(Str, str_mul);\n let mut str_mutizable = Self::builtin_methods(Some(mono(MUTIZABLE)), 2);\n str_mutizable.register_builtin_const(\n MUTABLE_MUT_TYPE,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(mono(MUT_STR)),\n );\n str_.register_trait(Str, str_mutizable);\n let mut str_show = Self::builtin_methods(Some(mono(SHOW)), 1);\n- str_show.register_builtin_erg_impl(TO_STR, fn0_met(Str, Str), Immutable, Public);\n+ str_show.register_builtin_erg_impl(\n+ TO_STR,\n+ fn0_met(Str, Str),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n str_.register_trait(Str, str_show);\n let mut str_iterable = Self::builtin_methods(Some(poly(ITERABLE, vec![ty_tp(Str)])), 2);\n str_iterable.register_builtin_py_impl(\n FUNC_ITER,\n fn0_met(Str, mono(STR_ITERATOR)),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_ITER),\n );\n- str_iterable.register_builtin_const(ITERATOR, vis, ValueObj::builtin_t(mono(STR_ITERATOR)));\n+ str_iterable.register_builtin_const(\n+ ITERATOR,\n+ vis.clone(),\n+ ValueObj::builtin_t(mono(STR_ITERATOR)),\n+ );\n str_.register_trait(Str, str_iterable);\n /* NoneType */\n let mut nonetype = Self::builtin_mono_class(NONE_TYPE, 10);\n@@ -608,11 +923,16 @@ impl Context {\n OP_EQ,\n fn1_met(NoneType, NoneType, Bool),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n nonetype.register_trait(NoneType, nonetype_eq);\n let mut nonetype_show = Self::builtin_methods(Some(mono(SHOW)), 1);\n- nonetype_show.register_builtin_erg_impl(TO_STR, fn0_met(NoneType, Str), Immutable, Public);\n+ nonetype_show.register_builtin_erg_impl(\n+ TO_STR,\n+ fn0_met(NoneType, Str),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n nonetype.register_trait(NoneType, nonetype_show);\n /* Type */\n let mut type_ = Self::builtin_mono_class(TYPE, 2);\n@@ -621,11 +941,16 @@ impl Context {\n FUNC_MRO,\n array_t(Type, TyParam::erased(Nat)),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n type_.register_marker_trait(mono(NAMED));\n let mut type_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n- type_eq.register_builtin_erg_impl(OP_EQ, fn1_met(Type, Type, Bool), Const, Public);\n+ type_eq.register_builtin_erg_impl(\n+ OP_EQ,\n+ fn1_met(Type, Type, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n type_.register_trait(Type, type_eq);\n let mut class_type = Self::builtin_mono_class(CLASS_TYPE, 2);\n class_type.register_superclass(Type, &type_);\n@@ -635,7 +960,7 @@ impl Context {\n OP_EQ,\n fn1_met(ClassType, ClassType, Bool),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n class_type.register_trait(ClassType, class_eq);\n let mut trait_type = Self::builtin_mono_class(TRAIT_TYPE, 2);\n@@ -646,54 +971,99 @@ impl Context {\n OP_EQ,\n fn1_met(TraitType, TraitType, Bool),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n trait_type.register_trait(TraitType, trait_eq);\n let mut code = Self::builtin_mono_class(CODE, 10);\n code.register_superclass(Obj, &obj);\n- code.register_builtin_erg_impl(FUNC_CO_ARGCOUNT, Nat, Immutable, Public);\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_ARGCOUNT,\n+ Nat,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n code.register_builtin_erg_impl(\n FUNC_CO_VARNAMES,\n array_t(Str, TyParam::erased(Nat)),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n code.register_builtin_erg_impl(\n FUNC_CO_CONSTS,\n array_t(Obj, TyParam::erased(Nat)),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n code.register_builtin_erg_impl(\n FUNC_CO_NAMES,\n array_t(Str, TyParam::erased(Nat)),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n code.register_builtin_erg_impl(\n FUNC_CO_FREEVARS,\n array_t(Str, TyParam::erased(Nat)),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n code.register_builtin_erg_impl(\n FUNC_CO_CELLVARS,\n array_t(Str, TyParam::erased(Nat)),\n Immutable,\n- Public,\n- );\n- code.register_builtin_erg_impl(FUNC_CO_FILENAME, Str, Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_NAME, Str, Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_FIRSTLINENO, Nat, Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_STACKSIZE, Nat, Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_FLAGS, Nat, Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_CODE, mono(BYTES), Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_LNOTAB, mono(BYTES), Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_NLOCALS, Nat, Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_KWONLYARGCOUNT, Nat, Immutable, Public);\n- code.register_builtin_erg_impl(FUNC_CO_POSONLYARGCOUNT, Nat, Immutable, Public);\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_FILENAME,\n+ Str,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ code.register_builtin_erg_impl(FUNC_CO_NAME, Str, Immutable, Visibility::BUILTIN_PUBLIC);\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_FIRSTLINENO,\n+ Nat,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_STACKSIZE,\n+ Nat,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ code.register_builtin_erg_impl(FUNC_CO_FLAGS, Nat, Immutable, Visibility::BUILTIN_PUBLIC);\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_CODE,\n+ mono(BYTES),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_LNOTAB,\n+ mono(BYTES),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ code.register_builtin_erg_impl(FUNC_CO_NLOCALS, Nat, Immutable, Visibility::BUILTIN_PUBLIC);\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_KWONLYARGCOUNT,\n+ Nat,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n+ code.register_builtin_erg_impl(\n+ FUNC_CO_POSONLYARGCOUNT,\n+ Nat,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n let mut code_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n- code_eq.register_builtin_erg_impl(OP_EQ, fn1_met(Code, Code, Bool), Const, Public);\n+ code_eq.register_builtin_erg_impl(\n+ OP_EQ,\n+ fn1_met(Code, Code, Bool),\n+ Const,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n code.register_trait(Code, code_eq);\n let g_module_t = mono(GENERIC_MODULE);\n let mut generic_module = Self::builtin_mono_class(GENERIC_MODULE, 2);\n@@ -704,7 +1074,7 @@ impl Context {\n OP_EQ,\n fn1_met(g_module_t.clone(), g_module_t.clone(), Bool),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n generic_module.register_trait(g_module_t.clone(), generic_module_eq);\n let Path = mono_q_tp(PATH, instanceof(Str));\n@@ -741,9 +1111,13 @@ impl Context {\n Some(poly(ADD, vec![ty_tp(array_t(T.clone(), M.clone()))])),\n 2,\n );\n- array_add.register_builtin_erg_impl(OP_ADD, t, Immutable, Public);\n+ array_add.register_builtin_erg_impl(OP_ADD, t, Immutable, Visibility::BUILTIN_PUBLIC);\n let out_t = array_t(T.clone(), N.clone() + M.clone());\n- array_add.register_builtin_const(OUTPUT, Public, ValueObj::builtin_t(out_t));\n+ array_add.register_builtin_const(\n+ OUTPUT,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(out_t),\n+ );\n array_.register_trait(arr_t.clone(), array_add);\n let t = fn_met(\n arr_t.clone(),\n@@ -753,13 +1127,13 @@ impl Context {\n array_t(T.clone(), N.clone() + value(1usize)),\n )\n .quantify();\n- array_.register_builtin_erg_impl(FUNC_PUSH, t, Immutable, Public);\n+ array_.register_builtin_erg_impl(FUNC_PUSH, t, Immutable, Visibility::BUILTIN_PUBLIC);\n // [T; N].MutType! = [T; !N] (neither [T!; N] nor [T; N]!)\n let mut_type = ValueObj::builtin_t(poly(\n MUT_ARRAY,\n vec![TyParam::t(T.clone()), N.clone().mutate()],\n ));\n- array_.register_builtin_const(MUTABLE_MUT_TYPE, Public, mut_type);\n+ array_.register_builtin_const(MUTABLE_MUT_TYPE, Visibility::BUILTIN_PUBLIC, mut_type);\n let var = StrStruct::from(fresh_varname());\n let input = refinement(\n var.clone(),\n@@ -775,13 +1149,13 @@ impl Context {\n array_getitem_t,\n None,\n )));\n- array_.register_builtin_const(FUNDAMENTAL_GETITEM, Public, get_item);\n+ array_.register_builtin_const(FUNDAMENTAL_GETITEM, Visibility::BUILTIN_PUBLIC, get_item);\n let mut array_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n array_eq.register_builtin_erg_impl(\n OP_EQ,\n fn1_met(arr_t.clone(), arr_t.clone(), Bool).quantify(),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n array_.register_trait(arr_t.clone(), array_eq);\n array_.register_marker_trait(mono(MUTIZABLE));\n@@ -791,7 +1165,7 @@ impl Context {\n TO_STR,\n fn0_met(arr_t.clone(), Str).quantify(),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_STR),\n );\n array_.register_trait(arr_t.clone(), array_show);\n@@ -803,10 +1177,14 @@ impl Context {\n FUNC_ITER,\n t,\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_ITER),\n );\n- array_iterable.register_builtin_const(ITERATOR, vis, ValueObj::builtin_t(array_iter));\n+ array_iterable.register_builtin_const(\n+ ITERATOR,\n+ vis.clone(),\n+ ValueObj::builtin_t(array_iter),\n+ );\n array_.register_trait(arr_t.clone(), array_iterable);\n let t = fn1_met(\n array_t(T.clone(), TyParam::erased(Nat)),\n@@ -842,18 +1220,18 @@ impl Context {\n array_t(T.clone(), N.clone() + M),\n )\n .quantify();\n- set_.register_builtin_erg_impl(FUNC_CONCAT, t, Immutable, Public);\n+ set_.register_builtin_erg_impl(FUNC_CONCAT, t, Immutable, Visibility::BUILTIN_PUBLIC);\n let mut_type = ValueObj::builtin_t(poly(\n MUT_SET,\n vec![TyParam::t(T.clone()), N.clone().mutate()],\n ));\n- set_.register_builtin_const(MUTABLE_MUT_TYPE, Public, mut_type);\n+ set_.register_builtin_const(MUTABLE_MUT_TYPE, Visibility::BUILTIN_PUBLIC, mut_type);\n let mut set_eq = Self::builtin_methods(Some(mono(EQ)), 2);\n set_eq.register_builtin_erg_impl(\n OP_EQ,\n fn1_met(set_t.clone(), set_t.clone(), Bool).quantify(),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n set_.register_trait(set_t.clone(), set_eq);\n set_.register_marker_trait(mono(MUTIZABLE));\n@@ -863,7 +1241,7 @@ impl Context {\n TO_STR,\n fn0_met(set_t.clone(), Str).quantify(),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n set_.register_trait(set_t.clone(), set_show);\n let g_dict_t = mono(GENERIC_DICT);\n@@ -874,13 +1252,18 @@ impl Context {\n OP_EQ,\n fn1_met(g_dict_t.clone(), g_dict_t.clone(), Bool).quantify(),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n generic_dict.register_trait(g_dict_t.clone(), generic_dict_eq);\n let D = mono_q_tp(TY_D, instanceof(mono(GENERIC_DICT)));\n // .get: _: T -> T or None\n let dict_get_t = fn1_met(g_dict_t.clone(), T.clone(), or(T.clone(), NoneType)).quantify();\n- generic_dict.register_builtin_erg_impl(FUNC_GET, dict_get_t, Immutable, Public);\n+ generic_dict.register_builtin_erg_impl(\n+ FUNC_GET,\n+ dict_get_t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n let dict_t = poly(DICT, vec![D.clone()]);\n let mut dict_ =\n // TODO: D <: GenericDict\n@@ -900,7 +1283,7 @@ impl Context {\n dict_getitem_t,\n None,\n )));\n- dict_.register_builtin_const(FUNDAMENTAL_GETITEM, Public, get_item);\n+ dict_.register_builtin_const(FUNDAMENTAL_GETITEM, Visibility::BUILTIN_PUBLIC, get_item);\n /* Bytes */\n let mut bytes = Self::builtin_mono_class(BYTES, 2);\n bytes.register_superclass(Obj, &obj);\n@@ -920,7 +1303,7 @@ impl Context {\n OP_EQ,\n fn1_met(mono(GENERIC_TUPLE), mono(GENERIC_TUPLE), Bool),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n generic_tuple.register_trait(mono(GENERIC_TUPLE), tuple_eq);\n let Ts = mono_q_tp(TY_TS, instanceof(array_t(Type, N.clone())));\n@@ -941,7 +1324,7 @@ impl Context {\n FUNDAMENTAL_TUPLE_GETITEM,\n tuple_getitem_t.clone(),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_GETITEM),\n );\n // `__Tuple_getitem__` and `__getitem__` are the same thing\n@@ -950,7 +1333,7 @@ impl Context {\n FUNDAMENTAL_GETITEM,\n tuple_getitem_t,\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_GETITEM),\n );\n /* record */\n@@ -1005,7 +1388,11 @@ impl Context {\n let mut obj_mut = Self::builtin_mono_class(MUTABLE_OBJ, 2);\n obj_mut.register_superclass(Obj, &obj);\n let mut obj_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- obj_mut_mutable.register_builtin_const(IMMUT_TYPE, Public, ValueObj::builtin_t(Obj));\n+ obj_mut_mutable.register_builtin_const(\n+ IMMUT_TYPE,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Obj),\n+ );\n let f_t = kw(KW_FUNC, func(vec![kw(KW_OLD, Int)], None, vec![], Int));\n let t = pr_met(\n ref_mut(mono(MUTABLE_OBJ), None),\n@@ -1014,13 +1401,22 @@ impl Context {\n vec![],\n NoneType,\n );\n- obj_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ obj_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n obj_mut.register_trait(mono(MUTABLE_OBJ), obj_mut_mutable);\n /* Float! */\n let mut float_mut = Self::builtin_mono_class(MUT_FLOAT, 2);\n float_mut.register_superclass(Float, &float);\n let mut float_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- float_mut_mutable.register_builtin_const(IMMUT_TYPE, Public, ValueObj::builtin_t(Float));\n+ float_mut_mutable.register_builtin_const(\n+ IMMUT_TYPE,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Float),\n+ );\n let f_t = kw(KW_FUNC, func(vec![kw(KW_OLD, Float)], None, vec![], Float));\n let t = pr_met(\n ref_mut(mono(MUT_FLOAT), None),\n@@ -1029,13 +1425,22 @@ impl Context {\n vec![],\n NoneType,\n );\n- float_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ float_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n float_mut.register_trait(mono(MUT_FLOAT), float_mut_mutable);\n /* Ratio! */\n let mut ratio_mut = Self::builtin_mono_class(MUT_RATIO, 2);\n ratio_mut.register_superclass(Ratio, &ratio);\n let mut ratio_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- ratio_mut_mutable.register_builtin_const(IMMUT_TYPE, Public, ValueObj::builtin_t(Ratio));\n+ ratio_mut_mutable.register_builtin_const(\n+ IMMUT_TYPE,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Ratio),\n+ );\n let f_t = kw(KW_FUNC, func(vec![kw(KW_OLD, Ratio)], None, vec![], Ratio));\n let t = pr_met(\n ref_mut(mono(MUT_RATIO), None),\n@@ -1044,17 +1449,38 @@ impl Context {\n vec![],\n NoneType,\n );\n- ratio_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ ratio_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n ratio_mut.register_trait(mono(MUT_RATIO), ratio_mut_mutable);\n /* Int! */\n let mut int_mut = Self::builtin_mono_class(MUT_INT, 2);\n int_mut.register_superclass(Int, &int);\n int_mut.register_superclass(mono(MUT_FLOAT), &float_mut);\n let t = pr_met(mono(MUT_INT), vec![], None, vec![kw(\"i\", Int)], NoneType);\n- int_mut.register_builtin_py_impl(PROC_INC, t.clone(), Immutable, Public, Some(FUNC_INC));\n- int_mut.register_builtin_py_impl(PROC_DEC, t, Immutable, Public, Some(FUNC_DEC));\n+ int_mut.register_builtin_py_impl(\n+ PROC_INC,\n+ t.clone(),\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_INC),\n+ );\n+ int_mut.register_builtin_py_impl(\n+ PROC_DEC,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_DEC),\n+ );\n let mut int_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- int_mut_mutable.register_builtin_const(IMMUT_TYPE, Public, ValueObj::builtin_t(Int));\n+ int_mut_mutable.register_builtin_const(\n+ IMMUT_TYPE,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Int),\n+ );\n let f_t = kw(KW_FUNC, func(vec![kw(KW_OLD, Int)], None, vec![], Int));\n let t = pr_met(\n ref_mut(mono(MUT_INT), None),\n@@ -1063,14 +1489,23 @@ impl Context {\n vec![],\n NoneType,\n );\n- int_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ int_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n int_mut.register_trait(mono(MUT_INT), int_mut_mutable);\n let mut nat_mut = Self::builtin_mono_class(MUT_NAT, 2);\n nat_mut.register_superclass(Nat, &nat);\n nat_mut.register_superclass(mono(MUT_INT), &int_mut);\n /* Nat! */\n let mut nat_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- nat_mut_mutable.register_builtin_const(IMMUT_TYPE, Public, ValueObj::builtin_t(Nat));\n+ nat_mut_mutable.register_builtin_const(\n+ IMMUT_TYPE,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Nat),\n+ );\n let f_t = kw(KW_FUNC, func(vec![kw(KW_OLD, Nat)], None, vec![], Nat));\n let t = pr_met(\n ref_mut(mono(MUT_NAT), None),\n@@ -1079,14 +1514,23 @@ impl Context {\n vec![],\n NoneType,\n );\n- nat_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ nat_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n nat_mut.register_trait(mono(MUT_NAT), nat_mut_mutable);\n /* Bool! */\n let mut bool_mut = Self::builtin_mono_class(MUT_BOOL, 2);\n bool_mut.register_superclass(Bool, &bool_);\n bool_mut.register_superclass(mono(MUT_NAT), &nat_mut);\n let mut bool_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- bool_mut_mutable.register_builtin_const(IMMUT_TYPE, Public, ValueObj::builtin_t(Bool));\n+ bool_mut_mutable.register_builtin_const(\n+ IMMUT_TYPE,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Bool),\n+ );\n let f_t = kw(KW_FUNC, func(vec![kw(KW_OLD, Bool)], None, vec![], Bool));\n let t = pr_met(\n ref_mut(mono(MUT_BOOL), None),\n@@ -1095,15 +1539,30 @@ impl Context {\n vec![],\n NoneType,\n );\n- bool_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ bool_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n bool_mut.register_trait(mono(MUT_BOOL), bool_mut_mutable);\n let t = pr0_met(mono(MUT_BOOL), NoneType);\n- bool_mut.register_builtin_py_impl(PROC_INVERT, t, Immutable, Public, Some(FUNC_INVERT));\n+ bool_mut.register_builtin_py_impl(\n+ PROC_INVERT,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_INVERT),\n+ );\n /* Str! */\n let mut str_mut = Self::builtin_mono_class(MUT_STR, 2);\n str_mut.register_superclass(Str, &nonetype);\n let mut str_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- str_mut_mutable.register_builtin_const(IMMUT_TYPE, Public, ValueObj::builtin_t(Str));\n+ str_mut_mutable.register_builtin_const(\n+ IMMUT_TYPE,\n+ Visibility::BUILTIN_PUBLIC,\n+ ValueObj::builtin_t(Str),\n+ );\n let f_t = kw(KW_FUNC, func(vec![kw(KW_OLD, Str)], None, vec![], Str));\n let t = pr_met(\n ref_mut(mono(MUT_STR), None),\n@@ -1112,7 +1571,12 @@ impl Context {\n vec![],\n NoneType,\n );\n- str_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ str_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n str_mut.register_trait(mono(MUT_STR), str_mut_mutable);\n let t = pr_met(\n ref_mut(mono(MUT_STR), None),\n@@ -1121,11 +1585,29 @@ impl Context {\n vec![],\n NoneType,\n );\n- str_mut.register_builtin_py_impl(PROC_PUSH, t, Immutable, Public, Some(FUNC_PUSH));\n+ str_mut.register_builtin_py_impl(\n+ PROC_PUSH,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_PUSH),\n+ );\n let t = pr0_met(ref_mut(mono(MUT_STR), None), Str);\n- str_mut.register_builtin_py_impl(PROC_POP, t, Immutable, Public, Some(FUNC_POP));\n+ str_mut.register_builtin_py_impl(\n+ PROC_POP,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_POP),\n+ );\n let t = pr0_met(ref_mut(mono(MUT_STR), None), NoneType);\n- str_mut.register_builtin_py_impl(PROC_CLEAR, t, Immutable, Public, Some(FUNC_CLEAR));\n+ str_mut.register_builtin_py_impl(\n+ PROC_CLEAR,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_CLEAR),\n+ );\n let t = pr_met(\n ref_mut(mono(MUT_STR), None),\n vec![kw(\"idx\", Nat), kw(\"s\", Str)],\n@@ -1133,7 +1615,13 @@ impl Context {\n vec![],\n NoneType,\n );\n- str_mut.register_builtin_py_impl(PROC_INSERT, t, Immutable, Public, Some(FUNC_INSERT));\n+ str_mut.register_builtin_py_impl(\n+ PROC_INSERT,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_INSERT),\n+ );\n let t = pr_met(\n ref_mut(mono(MUT_STR), None),\n vec![kw(\"idx\", Nat)],\n@@ -1141,7 +1629,13 @@ impl Context {\n vec![],\n Str,\n );\n- str_mut.register_builtin_py_impl(PROC_REMOVE, t, Immutable, Public, Some(FUNC_REMOVE));\n+ str_mut.register_builtin_py_impl(\n+ PROC_REMOVE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_REMOVE),\n+ );\n /* File! */\n let mut file_mut = Self::builtin_mono_class(MUT_FILE, 2);\n let mut file_mut_readable = Self::builtin_methods(Some(mono(MUT_READABLE)), 1);\n@@ -1155,7 +1649,7 @@ impl Context {\n Str,\n ),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_READ),\n );\n file_mut.register_trait(mono(MUT_FILE), file_mut_readable);\n@@ -1164,7 +1658,7 @@ impl Context {\n PROC_WRITE,\n pr1_kw_met(ref_mut(mono(MUT_FILE), None), kw(KW_S, Str), Nat),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_WRITE),\n );\n file_mut.register_trait(mono(MUT_FILE), file_mut_writable);\n@@ -1194,7 +1688,13 @@ impl Context {\n NoneType,\n )\n .quantify();\n- array_mut_.register_builtin_py_impl(PROC_PUSH, t, Immutable, Public, Some(FUNC_APPEND));\n+ array_mut_.register_builtin_py_impl(\n+ PROC_PUSH,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_APPEND),\n+ );\n let t_extend = pr_met(\n ref_mut(\n array_mut_t.clone(),\n@@ -1213,7 +1713,7 @@ impl Context {\n PROC_EXTEND,\n t_extend,\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_EXTEND),\n );\n let t_insert = pr_met(\n@@ -1234,7 +1734,7 @@ impl Context {\n PROC_INSERT,\n t_insert,\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_INSERT),\n );\n let t_remove = pr_met(\n@@ -1255,7 +1755,7 @@ impl Context {\n PROC_REMOVE,\n t_remove,\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_REMOVE),\n );\n let t_pop = pr_met(\n@@ -1272,7 +1772,13 @@ impl Context {\n T.clone(),\n )\n .quantify();\n- array_mut_.register_builtin_py_impl(PROC_POP, t_pop, Immutable, Public, Some(FUNC_POP));\n+ array_mut_.register_builtin_py_impl(\n+ PROC_POP,\n+ t_pop,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_POP),\n+ );\n let t_clear = pr0_met(\n ref_mut(\n array_mut_t.clone(),\n@@ -1285,7 +1791,7 @@ impl Context {\n PROC_CLEAR,\n t_clear,\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_CLEAR),\n );\n let t_sort = pr_met(\n@@ -1299,13 +1805,19 @@ impl Context {\n NoneType,\n )\n .quantify();\n- array_mut_.register_builtin_py_impl(PROC_SORT, t_sort, Immutable, Public, Some(FUNC_SORT));\n+ array_mut_.register_builtin_py_impl(\n+ PROC_SORT,\n+ t_sort,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_SORT),\n+ );\n let t_reverse = pr0_met(ref_mut(array_mut_t.clone(), None), NoneType).quantify();\n array_mut_.register_builtin_py_impl(\n PROC_REVERSE,\n t_reverse,\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNC_REVERSE),\n );\n let t = pr_met(\n@@ -1316,7 +1828,12 @@ impl Context {\n NoneType,\n )\n .quantify();\n- array_mut_.register_builtin_erg_impl(PROC_STRICT_MAP, t, Immutable, Public);\n+ array_mut_.register_builtin_erg_impl(\n+ PROC_STRICT_MAP,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n let f_t = kw(\n KW_FUNC,\n func(vec![kw(KW_OLD, arr_t.clone())], None, vec![], arr_t.clone()),\n@@ -1330,7 +1847,12 @@ impl Context {\n )\n .quantify();\n let mut array_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- array_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ array_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n array_mut_.register_trait(array_mut_t.clone(), array_mut_mutable);\n /* Set! */\n let set_mut_t = poly(MUT_SET, vec![ty_tp(T.clone()), N_MUT]);\n@@ -1355,7 +1877,13 @@ impl Context {\n NoneType,\n )\n .quantify();\n- set_mut_.register_builtin_py_impl(PROC_ADD, t, Immutable, Public, Some(FUNC_ADD));\n+ set_mut_.register_builtin_py_impl(\n+ PROC_ADD,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_ADD),\n+ );\n let t = pr_met(\n set_mut_t.clone(),\n vec![kw(KW_FUNC, nd_func(vec![anon(T.clone())], None, T.clone()))],\n@@ -1364,7 +1892,12 @@ impl Context {\n NoneType,\n )\n .quantify();\n- set_mut_.register_builtin_erg_impl(PROC_STRICT_MAP, t, Immutable, Public);\n+ set_mut_.register_builtin_erg_impl(\n+ PROC_STRICT_MAP,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n let f_t = kw(\n KW_FUNC,\n func(vec![kw(KW_OLD, set_t.clone())], None, vec![], set_t.clone()),\n@@ -1378,7 +1911,12 @@ impl Context {\n )\n .quantify();\n let mut set_mut_mutable = Self::builtin_methods(Some(mono(MUTABLE)), 2);\n- set_mut_mutable.register_builtin_erg_impl(PROC_UPDATE, t, Immutable, Public);\n+ set_mut_mutable.register_builtin_erg_impl(\n+ PROC_UPDATE,\n+ t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n set_mut_.register_trait(set_mut_t.clone(), set_mut_mutable);\n /* Range */\n let range_t = poly(RANGE, vec![TyParam::t(T.clone())]);\n@@ -1392,7 +1930,7 @@ impl Context {\n OP_EQ,\n fn1_met(range_t.clone(), range_t.clone(), Bool).quantify(),\n Const,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n );\n range.register_trait(range_t.clone(), range_eq);\n let mut range_iterable =\n@@ -1402,10 +1940,14 @@ impl Context {\n FUNC_ITER,\n fn0_met(range_t.clone(), range_iter.clone()).quantify(),\n Immutable,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_ITER),\n );\n- range_iterable.register_builtin_const(ITERATOR, vis, ValueObj::builtin_t(range_iter));\n+ range_iterable.register_builtin_const(\n+ ITERATOR,\n+ vis.clone(),\n+ ValueObj::builtin_t(range_iter),\n+ );\n range.register_trait(range_t.clone(), range_iterable);\n let range_getitem_t = fn1_kw_met(range_t.clone(), anon(T.clone()), T.clone()).quantify();\n let get_item = ValueObj::Subr(ConstSubr::Builtin(BuiltinConstSubr::new(\n@@ -1414,15 +1956,25 @@ impl Context {\n range_getitem_t,\n None,\n )));\n- range.register_builtin_const(FUNDAMENTAL_GETITEM, Public, get_item);\n+ range.register_builtin_const(FUNDAMENTAL_GETITEM, Visibility::BUILTIN_PUBLIC, get_item);\n let mut g_callable = Self::builtin_mono_class(GENERIC_CALLABLE, 2);\n g_callable.register_superclass(Obj, &obj);\n let t_return = fn1_met(mono(GENERIC_CALLABLE), Obj, Never).quantify();\n- g_callable.register_builtin_erg_impl(FUNC_RETURN, t_return, Immutable, Public);\n+ g_callable.register_builtin_erg_impl(\n+ FUNC_RETURN,\n+ t_return,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n let mut g_generator = Self::builtin_mono_class(GENERIC_GENERATOR, 2);\n g_generator.register_superclass(mono(GENERIC_CALLABLE), &g_callable);\n let t_yield = fn1_met(mono(GENERIC_GENERATOR), Obj, Never).quantify();\n- g_generator.register_builtin_erg_impl(FUNC_YIELD, t_yield, Immutable, Public);\n+ g_generator.register_builtin_erg_impl(\n+ FUNC_YIELD,\n+ t_yield,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ );\n /* Proc */\n let mut proc = Self::builtin_mono_class(PROC, 2);\n proc.register_superclass(mono(GENERIC_CALLABLE), &g_callable);\n@@ -1439,167 +1991,191 @@ impl Context {\n quant.register_superclass(mono(PROC), &proc);\n let mut qfunc = Self::builtin_mono_class(QUANTIFIED_FUNC, 2);\n qfunc.register_superclass(mono(FUNC), &func);\n- self.register_builtin_type(Never, never, vis, Const, Some(NEVER));\n- self.register_builtin_type(Obj, obj, vis, Const, Some(FUNC_OBJECT));\n- // self.register_type(mono(RECORD), vec![], record, Private, Const);\n+ self.register_builtin_type(Never, never, vis.clone(), Const, Some(NEVER));\n+ self.register_builtin_type(Obj, obj, vis.clone(), Const, Some(FUNC_OBJECT));\n+ // self.register_type(mono(RECORD), vec![], record, Visibility::BUILTIN_PRIVATE, Const);\n let name = if cfg!(feature = \"py_compatible\") {\n FUNC_INT\n } else {\n INT\n };\n- self.register_builtin_type(Int, int, vis, Const, Some(name));\n- self.register_builtin_type(Nat, nat, vis, Const, Some(NAT));\n+ self.register_builtin_type(Int, int, vis.clone(), Const, Some(name));\n+ self.register_builtin_type(Nat, nat, vis.clone(), Const, Some(NAT));\n let name = if cfg!(feature = \"py_compatible\") {\n FUNC_FLOAT\n } else {\n FLOAT\n };\n- self.register_builtin_type(Float, float, vis, Const, Some(name));\n- self.register_builtin_type(Ratio, ratio, vis, Const, Some(RATIO));\n+ self.register_builtin_type(Float, float, vis.clone(), Const, Some(name));\n+ self.register_builtin_type(Ratio, ratio, vis.clone(), Const, Some(RATIO));\n let name = if cfg!(feature = \"py_compatible\") {\n FUNC_BOOL\n } else {\n BOOL\n };\n- self.register_builtin_type(Bool, bool_, vis, Const, Some(name));\n+ self.register_builtin_type(Bool, bool_, vis.clone(), Const, Some(name));\n let name = if cfg!(feature = \"py_compatible\") {\n FUNC_STR\n } else {\n STR\n };\n- self.register_builtin_type(Str, str_, vis, Const, Some(name));\n- self.register_builtin_type(NoneType, nonetype, vis, Const, Some(NONE_TYPE));\n- self.register_builtin_type(Type, type_, vis, Const, Some(FUNC_TYPE));\n- self.register_builtin_type(ClassType, class_type, vis, Const, Some(CLASS_TYPE));\n- self.register_builtin_type(TraitType, trait_type, vis, Const, Some(TRAIT_TYPE));\n- self.register_builtin_type(Code, code, vis, Const, Some(CODE_TYPE));\n+ self.register_builtin_type(Str, str_, vis.clone(), Const, Some(name));\n+ self.register_builtin_type(NoneType, nonetype, vis.clone(), Const, Some(NONE_TYPE));\n+ self.register_builtin_type(Type, type_, vis.clone(), Const, Some(FUNC_TYPE));\n+ self.register_builtin_type(ClassType, class_type, vis.clone(), Const, Some(CLASS_TYPE));\n+ self.register_builtin_type(TraitType, trait_type, vis.clone(), Const, Some(TRAIT_TYPE));\n+ self.register_builtin_type(Code, code, vis.clone(), Const, Some(CODE_TYPE));\n self.register_builtin_type(\n g_module_t,\n generic_module,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(MODULE_TYPE),\n );\n- self.register_builtin_type(py_module_t, py_module, vis, Const, Some(MODULE_TYPE));\n- self.register_builtin_type(arr_t, array_, vis, Const, Some(FUNC_LIST));\n- self.register_builtin_type(set_t, set_, vis, Const, Some(FUNC_SET));\n- self.register_builtin_type(g_dict_t, generic_dict, vis, Const, Some(FUNC_DICT));\n- self.register_builtin_type(dict_t, dict_, vis, Const, Some(FUNC_DICT));\n- self.register_builtin_type(mono(BYTES), bytes, vis, Const, Some(BYTES));\n+ self.register_builtin_type(\n+ py_module_t,\n+ py_module,\n+ vis.clone(),\n+ Const,\n+ Some(MODULE_TYPE),\n+ );\n+ self.register_builtin_type(arr_t, array_, vis.clone(), Const, Some(FUNC_LIST));\n+ self.register_builtin_type(set_t, set_, vis.clone(), Const, Some(FUNC_SET));\n+ self.register_builtin_type(g_dict_t, generic_dict, vis.clone(), Const, Some(FUNC_DICT));\n+ self.register_builtin_type(dict_t, dict_, vis.clone(), Const, Some(FUNC_DICT));\n+ self.register_builtin_type(mono(BYTES), bytes, vis.clone(), Const, Some(BYTES));\n self.register_builtin_type(\n mono(GENERIC_TUPLE),\n generic_tuple,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_TUPLE),\n );\n- self.register_builtin_type(_tuple_t, tuple_, vis, Const, Some(FUNC_TUPLE));\n- self.register_builtin_type(mono(RECORD), record, vis, Const, Some(RECORD));\n- self.register_builtin_type(or_t, or, vis, Const, Some(UNION));\n+ self.register_builtin_type(_tuple_t, tuple_, vis.clone(), Const, Some(FUNC_TUPLE));\n+ self.register_builtin_type(mono(RECORD), record, vis.clone(), Const, Some(RECORD));\n+ self.register_builtin_type(or_t, or, vis.clone(), Const, Some(UNION));\n self.register_builtin_type(\n mono(STR_ITERATOR),\n str_iterator,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_STR_ITERATOR),\n );\n self.register_builtin_type(\n poly(ARRAY_ITERATOR, vec![ty_tp(T.clone())]),\n array_iterator,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_ARRAY_ITERATOR),\n );\n self.register_builtin_type(\n poly(RANGE_ITERATOR, vec![ty_tp(T.clone())]),\n range_iterator,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(RANGE_ITERATOR),\n );\n self.register_builtin_type(\n poly(ENUMERATE, vec![ty_tp(T.clone())]),\n enumerate,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_ENUMERATE),\n );\n self.register_builtin_type(\n poly(FILTER, vec![ty_tp(T.clone())]),\n filter,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_FILTER),\n );\n self.register_builtin_type(\n poly(MAP, vec![ty_tp(T.clone())]),\n map,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_MAP),\n );\n self.register_builtin_type(\n poly(REVERSED, vec![ty_tp(T.clone())]),\n reversed,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_REVERSED),\n );\n self.register_builtin_type(\n poly(ZIP, vec![ty_tp(T), ty_tp(U)]),\n zip,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(FUNC_ZIP),\n );\n- self.register_builtin_type(mono(MUT_FILE), file_mut, vis, Const, Some(FILE));\n- self.register_builtin_type(array_mut_t, array_mut_, vis, Const, Some(FUNC_LIST));\n- self.register_builtin_type(set_mut_t, set_mut_, vis, Const, Some(FUNC_SET));\n+ self.register_builtin_type(mono(MUT_FILE), file_mut, vis.clone(), Const, Some(FILE));\n+ self.register_builtin_type(array_mut_t, array_mut_, vis.clone(), Const, Some(FUNC_LIST));\n+ self.register_builtin_type(set_mut_t, set_mut_, vis.clone(), Const, Some(FUNC_SET));\n self.register_builtin_type(\n mono(GENERIC_CALLABLE),\n g_callable,\n- vis,\n+ vis.clone(),\n Const,\n Some(CALLABLE),\n );\n self.register_builtin_type(\n mono(GENERIC_GENERATOR),\n g_generator,\n- vis,\n+ vis.clone(),\n Const,\n Some(GENERATOR),\n );\n- self.register_builtin_type(mono(PROC), proc, vis, Const, Some(PROC));\n- self.register_builtin_type(mono(FUNC), func, vis, Const, Some(FUNC));\n- self.register_builtin_type(range_t, range, vis, Const, Some(FUNC_RANGE));\n+ self.register_builtin_type(mono(PROC), proc, vis.clone(), Const, Some(PROC));\n+ self.register_builtin_type(mono(FUNC), func, vis.clone(), Const, Some(FUNC));\n+ self.register_builtin_type(range_t, range, vis.clone(), Const, Some(FUNC_RANGE));\n if !cfg!(feature = \"py_compatible\") {\n- self.register_builtin_type(module_t, module, vis, Const, Some(MODULE_TYPE));\n- self.register_builtin_type(mono(MUTABLE_OBJ), obj_mut, vis, Const, Some(FUNC_OBJECT));\n- self.register_builtin_type(mono(MUT_INT), int_mut, vis, Const, Some(FUNC_INT));\n- self.register_builtin_type(mono(MUT_NAT), nat_mut, vis, Const, Some(NAT));\n- self.register_builtin_type(mono(MUT_FLOAT), float_mut, vis, Const, Some(FUNC_FLOAT));\n- self.register_builtin_type(mono(MUT_RATIO), ratio_mut, vis, Const, Some(RATIO));\n- self.register_builtin_type(mono(MUT_BOOL), bool_mut, vis, Const, Some(BOOL));\n+ self.register_builtin_type(module_t, module, vis.clone(), Const, Some(MODULE_TYPE));\n+ self.register_builtin_type(\n+ mono(MUTABLE_OBJ),\n+ obj_mut,\n+ vis.clone(),\n+ Const,\n+ Some(FUNC_OBJECT),\n+ );\n+ self.register_builtin_type(mono(MUT_INT), int_mut, vis.clone(), Const, Some(FUNC_INT));\n+ self.register_builtin_type(mono(MUT_NAT), nat_mut, vis.clone(), Const, Some(NAT));\n+ self.register_builtin_type(\n+ mono(MUT_FLOAT),\n+ float_mut,\n+ vis.clone(),\n+ Const,\n+ Some(FUNC_FLOAT),\n+ );\n+ self.register_builtin_type(mono(MUT_RATIO), ratio_mut, vis.clone(), Const, Some(RATIO));\n+ self.register_builtin_type(mono(MUT_BOOL), bool_mut, vis.clone(), Const, Some(BOOL));\n self.register_builtin_type(mono(MUT_STR), str_mut, vis, Const, Some(STR));\n self.register_builtin_type(\n mono(NAMED_PROC),\n named_proc,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(NAMED_PROC),\n );\n self.register_builtin_type(\n mono(NAMED_FUNC),\n named_func,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(NAMED_FUNC),\n );\n- self.register_builtin_type(mono(QUANTIFIED), quant, Private, Const, Some(QUANTIFIED));\n+ self.register_builtin_type(\n+ mono(QUANTIFIED),\n+ quant,\n+ Visibility::BUILTIN_PRIVATE,\n+ Const,\n+ Some(QUANTIFIED),\n+ );\n self.register_builtin_type(\n mono(QUANTIFIED_FUNC),\n qfunc,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(QUANTIFIED_FUNC),\n );\n", "funcs.rs": "@@ -1,25 +1,23 @@\n #[allow(unused_imports)]\n use erg_common::log;\n-use erg_common::vis::{Field, Visibility};\n \n use crate::ty::constructors::*;\n use crate::ty::typaram::TyParam;\n use crate::ty::value::ValueObj;\n-use crate::ty::Type;\n+use crate::ty::{Field, Type, Visibility};\n use Type::*;\n \n use crate::context::initialize::*;\n use crate::context::Context;\n use crate::varinfo::Mutability;\n use Mutability::*;\n-use Visibility::*;\n \n impl Context {\n pub(super) fn init_builtin_funcs(&mut self) {\n let vis = if cfg!(feature = \"py_compatible\") {\n- Public\n+ Visibility::BUILTIN_PUBLIC\n } else {\n- Private\n+ Visibility::BUILTIN_PRIVATE\n };\n let T = mono_q(TY_T, instanceof(Type));\n let U = mono_q(TY_U, instanceof(Type));\n@@ -222,96 +220,144 @@ impl Context {\n self.register_py_builtin(FUNC_ANY, t_any, Some(FUNC_ANY), 33);\n self.register_py_builtin(FUNC_ASCII, t_ascii, Some(FUNC_ASCII), 53);\n // Leave as `Const`, as it may negatively affect assert casting.\n- self.register_builtin_erg_impl(FUNC_ASSERT, t_assert, Const, vis);\n- self.register_builtin_py_impl(FUNC_BIN, t_bin, Immutable, vis, Some(FUNC_BIN));\n- self.register_builtin_py_impl(FUNC_BYTES, t_bytes, Immutable, vis, Some(FUNC_BYTES));\n- self.register_builtin_py_impl(FUNC_CHR, t_chr, Immutable, vis, Some(FUNC_CHR));\n- self.register_builtin_py_impl(FUNC_CLASSOF, t_classof, Immutable, vis, Some(FUNC_TYPE));\n- self.register_builtin_py_impl(FUNC_COMPILE, t_compile, Immutable, vis, Some(FUNC_COMPILE));\n- self.register_builtin_erg_impl(KW_COND, t_cond, Immutable, vis);\n+ self.register_builtin_erg_impl(FUNC_ASSERT, t_assert, Const, vis.clone());\n+ self.register_builtin_py_impl(FUNC_BIN, t_bin, Immutable, vis.clone(), Some(FUNC_BIN));\n+ self.register_builtin_py_impl(\n+ FUNC_BYTES,\n+ t_bytes,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_BYTES),\n+ );\n+ self.register_builtin_py_impl(FUNC_CHR, t_chr, Immutable, vis.clone(), Some(FUNC_CHR));\n+ self.register_builtin_py_impl(\n+ FUNC_CLASSOF,\n+ t_classof,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_TYPE),\n+ );\n+ self.register_builtin_py_impl(\n+ FUNC_COMPILE,\n+ t_compile,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_COMPILE),\n+ );\n+ self.register_builtin_erg_impl(KW_COND, t_cond, Immutable, vis.clone());\n self.register_builtin_py_impl(\n FUNC_ENUMERATE,\n t_enumerate,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNC_ENUMERATE),\n );\n- self.register_builtin_py_impl(FUNC_EXIT, t_exit, Immutable, vis, Some(FUNC_EXIT));\n+ self.register_builtin_py_impl(FUNC_EXIT, t_exit, Immutable, vis.clone(), Some(FUNC_EXIT));\n self.register_builtin_py_impl(\n FUNC_ISINSTANCE,\n t_isinstance,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNC_ISINSTANCE),\n );\n self.register_builtin_py_impl(\n FUNC_ISSUBCLASS,\n t_issubclass,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNC_ISSUBCLASS),\n );\n- self.register_builtin_py_impl(FUNC_ITER, t_iter, Immutable, vis, Some(FUNC_ITER));\n- self.register_builtin_py_impl(FUNC_LEN, t_len, Immutable, vis, Some(FUNC_LEN));\n- self.register_builtin_py_impl(FUNC_MAP, t_map, Immutable, vis, Some(FUNC_MAP));\n- self.register_builtin_py_impl(FUNC_MAX, t_max, Immutable, vis, Some(FUNC_MAX));\n- self.register_builtin_py_impl(FUNC_MIN, t_min, Immutable, vis, Some(FUNC_MIN));\n- self.register_builtin_py_impl(FUNC_NOT, t_not, Immutable, vis, None); // `not` is not a function in Python\n- self.register_builtin_py_impl(FUNC_OCT, t_oct, Immutable, vis, Some(FUNC_OCT));\n- self.register_builtin_py_impl(FUNC_ORD, t_ord, Immutable, vis, Some(FUNC_ORD));\n- self.register_builtin_py_impl(FUNC_POW, t_pow, Immutable, vis, Some(FUNC_POW));\n+ self.register_builtin_py_impl(FUNC_ITER, t_iter, Immutable, vis.clone(), Some(FUNC_ITER));\n+ self.register_builtin_py_impl(FUNC_LEN, t_len, Immutable, vis.clone(), Some(FUNC_LEN));\n+ self.register_builtin_py_impl(FUNC_MAP, t_map, Immutable, vis.clone(), Some(FUNC_MAP));\n+ self.register_builtin_py_impl(FUNC_MAX, t_max, Immutable, vis.clone(), Some(FUNC_MAX));\n+ self.register_builtin_py_impl(FUNC_MIN, t_min, Immutable, vis.clone(), Some(FUNC_MIN));\n+ self.register_builtin_py_impl(FUNC_NOT, t_not, Immutable, vis.clone(), None); // `not` is not a function in Python\n+ self.register_builtin_py_impl(FUNC_OCT, t_oct, Immutable, vis.clone(), Some(FUNC_OCT));\n+ self.register_builtin_py_impl(FUNC_ORD, t_ord, Immutable, vis.clone(), Some(FUNC_ORD));\n+ self.register_builtin_py_impl(FUNC_POW, t_pow, Immutable, vis.clone(), Some(FUNC_POW));\n self.register_builtin_py_impl(\n PYIMPORT,\n t_pyimport.clone(),\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNDAMENTAL_IMPORT),\n );\n- self.register_builtin_py_impl(FUNC_QUIT, t_quit, Immutable, vis, Some(FUNC_QUIT));\n- self.register_builtin_py_impl(FUNC_REPR, t_repr, Immutable, vis, Some(FUNC_REPR));\n+ self.register_builtin_py_impl(FUNC_QUIT, t_quit, Immutable, vis.clone(), Some(FUNC_QUIT));\n+ self.register_builtin_py_impl(FUNC_REPR, t_repr, Immutable, vis.clone(), Some(FUNC_REPR));\n self.register_builtin_py_impl(\n FUNC_REVERSED,\n t_reversed,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNC_REVERSED),\n );\n- self.register_builtin_py_impl(FUNC_ROUND, t_round, Immutable, vis, Some(FUNC_ROUND));\n- self.register_builtin_py_impl(FUNC_SORTED, t_sorted, Immutable, vis, Some(FUNC_SORTED));\n- self.register_builtin_py_impl(FUNC_STR, t_str, Immutable, vis, Some(FUNC_STR__));\n- self.register_builtin_py_impl(FUNC_SUM, t_sum, Immutable, vis, Some(FUNC_SUM));\n- self.register_builtin_py_impl(FUNC_ZIP, t_zip, Immutable, vis, Some(FUNC_ZIP));\n+ self.register_builtin_py_impl(\n+ FUNC_ROUND,\n+ t_round,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_ROUND),\n+ );\n+ self.register_builtin_py_impl(\n+ FUNC_SORTED,\n+ t_sorted,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_SORTED),\n+ );\n+ self.register_builtin_py_impl(FUNC_STR, t_str, Immutable, vis.clone(), Some(FUNC_STR__));\n+ self.register_builtin_py_impl(FUNC_SUM, t_sum, Immutable, vis.clone(), Some(FUNC_SUM));\n+ self.register_builtin_py_impl(FUNC_ZIP, t_zip, Immutable, vis.clone(), Some(FUNC_ZIP));\n let name = if cfg!(feature = \"py_compatible\") {\n FUNC_INT\n } else {\n FUNC_INT__\n };\n- self.register_builtin_py_impl(FUNC_INT, t_int, Immutable, vis, Some(name));\n+ self.register_builtin_py_impl(FUNC_INT, t_int, Immutable, vis.clone(), Some(name));\n if !cfg!(feature = \"py_compatible\") {\n- self.register_builtin_py_impl(FUNC_IF, t_if, Immutable, vis, Some(FUNC_IF__));\n+ self.register_builtin_py_impl(FUNC_IF, t_if, Immutable, vis.clone(), Some(FUNC_IF__));\n self.register_builtin_py_impl(\n FUNC_DISCARD,\n t_discard,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNC_DISCARD__),\n );\n self.register_builtin_py_impl(\n FUNC_IMPORT,\n t_import,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNDAMENTAL_IMPORT),\n );\n- self.register_builtin_py_impl(FUNC_LOG, t_log, Immutable, vis, Some(FUNC_PRINT));\n- self.register_builtin_py_impl(FUNC_NAT, t_nat, Immutable, vis, Some(FUNC_NAT__));\n- self.register_builtin_py_impl(FUNC_PANIC, t_panic, Immutable, vis, Some(FUNC_QUIT));\n+ self.register_builtin_py_impl(\n+ FUNC_LOG,\n+ t_log,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_PRINT),\n+ );\n+ self.register_builtin_py_impl(\n+ FUNC_NAT,\n+ t_nat,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_NAT__),\n+ );\n+ self.register_builtin_py_impl(\n+ FUNC_PANIC,\n+ t_panic,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_QUIT),\n+ );\n if cfg!(feature = \"debug\") {\n self.register_builtin_py_impl(\n PY,\n t_pyimport,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNDAMENTAL_IMPORT),\n );\n }\n@@ -319,7 +365,7 @@ impl Context {\n PYCOMPILE,\n t_pycompile,\n Immutable,\n- vis,\n+ vis.clone(),\n Some(FUNC_COMPILE),\n );\n // TODO: original implementation\n@@ -340,7 +386,13 @@ impl Context {\n ],\n poly(RANGE, vec![ty_tp(Int)]),\n );\n- self.register_builtin_py_impl(FUNC_RANGE, t_range, Immutable, vis, Some(FUNC_RANGE));\n+ self.register_builtin_py_impl(\n+ FUNC_RANGE,\n+ t_range,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_RANGE),\n+ );\n let t_list = func(\n vec![],\n None,\n@@ -348,7 +400,13 @@ impl Context {\n poly(ARRAY, vec![ty_tp(T.clone()), TyParam::erased(Nat)]),\n )\n .quantify();\n- self.register_builtin_py_impl(FUNC_LIST, t_list, Immutable, vis, Some(FUNC_LIST));\n+ self.register_builtin_py_impl(\n+ FUNC_LIST,\n+ t_list,\n+ Immutable,\n+ vis.clone(),\n+ Some(FUNC_LIST),\n+ );\n let t_dict = func(\n vec![],\n None,\n@@ -365,9 +423,9 @@ impl Context {\n \n pub(super) fn init_builtin_const_funcs(&mut self) {\n let vis = if cfg!(feature = \"py_compatible\") {\n- Public\n+ Visibility::BUILTIN_PUBLIC\n } else {\n- Private\n+ Visibility::BUILTIN_PRIVATE\n };\n let class_t = func(\n vec![],\n@@ -376,7 +434,7 @@ impl Context {\n ClassType,\n );\n let class = ConstSubr::Builtin(BuiltinConstSubr::new(CLASS, class_func, class_t, None));\n- self.register_builtin_const(CLASS, vis, ValueObj::Subr(class));\n+ self.register_builtin_const(CLASS, vis.clone(), ValueObj::Subr(class));\n let inherit_t = func(\n vec![kw(KW_SUPER, ClassType)],\n None,\n@@ -389,7 +447,7 @@ impl Context {\n inherit_t,\n None,\n ));\n- self.register_builtin_const(INHERIT, vis, ValueObj::Subr(inherit));\n+ self.register_builtin_const(INHERIT, vis.clone(), ValueObj::Subr(inherit));\n let trait_t = func(\n vec![kw(KW_REQUIREMENT, Type)],\n None,\n@@ -397,7 +455,7 @@ impl Context {\n TraitType,\n );\n let trait_ = ConstSubr::Builtin(BuiltinConstSubr::new(TRAIT, trait_func, trait_t, None));\n- self.register_builtin_const(TRAIT, vis, ValueObj::Subr(trait_));\n+ self.register_builtin_const(TRAIT, vis.clone(), ValueObj::Subr(trait_));\n let subsume_t = func(\n vec![kw(KW_SUPER, TraitType)],\n None,\n@@ -410,14 +468,14 @@ impl Context {\n subsume_t,\n None,\n ));\n- self.register_builtin_const(SUBSUME, vis, ValueObj::Subr(subsume));\n+ self.register_builtin_const(SUBSUME, vis.clone(), ValueObj::Subr(subsume));\n let structural = ConstSubr::Builtin(BuiltinConstSubr::new(\n STRUCTURAL,\n structural_func,\n func1(Type, Type),\n None,\n ));\n- self.register_builtin_const(STRUCTURAL, vis, ValueObj::Subr(structural));\n+ self.register_builtin_const(STRUCTURAL, vis.clone(), ValueObj::Subr(structural));\n // decorators\n let inheritable_t = func1(ClassType, ClassType);\n let inheritable = ConstSubr::Builtin(BuiltinConstSubr::new(\n@@ -426,10 +484,10 @@ impl Context {\n inheritable_t,\n None,\n ));\n- self.register_builtin_const(INHERITABLE, vis, ValueObj::Subr(inheritable));\n+ self.register_builtin_const(INHERITABLE, vis.clone(), ValueObj::Subr(inheritable));\n // TODO: register Del function object\n let t_del = nd_func(vec![kw(KW_OBJ, Obj)], None, NoneType);\n- self.register_builtin_erg_impl(DEL, t_del, Immutable, vis);\n+ self.register_builtin_erg_impl(DEL, t_del, Immutable, vis.clone());\n let patch_t = func(\n vec![kw(KW_REQUIREMENT, Type)],\n None,\n@@ -451,65 +509,65 @@ impl Context {\n proj(L, OUTPUT),\n )\n .quantify();\n- self.register_builtin_erg_impl(OP_ADD, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_ADD, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let L = mono_q(TY_L, subtypeof(poly(SUB, params.clone())));\n let op_t = bin_op(L.clone(), R.clone(), proj(L, OUTPUT)).quantify();\n- self.register_builtin_erg_impl(OP_SUB, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_SUB, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let L = mono_q(TY_L, subtypeof(poly(MUL, params.clone())));\n let op_t = bin_op(L.clone(), R.clone(), proj(L, OUTPUT)).quantify();\n- self.register_builtin_erg_impl(OP_MUL, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_MUL, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let L = mono_q(TY_L, subtypeof(poly(DIV, params.clone())));\n let op_t = bin_op(L.clone(), R.clone(), proj(L, OUTPUT)).quantify();\n- self.register_builtin_erg_impl(OP_DIV, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_DIV, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let L = mono_q(TY_L, subtypeof(poly(FLOOR_DIV, params)));\n let op_t = bin_op(L.clone(), R, proj(L, OUTPUT)).quantify();\n- self.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let P = mono_q(TY_P, Constraint::Uninited);\n let P = mono_q(TY_P, subtypeof(poly(MUL, vec![ty_tp(P)])));\n let op_t = bin_op(P.clone(), P.clone(), proj(P, POW_OUTPUT)).quantify();\n // TODO: add bound: M == M.Output\n- self.register_builtin_erg_impl(OP_POW, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_POW, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let M = mono_q(TY_M, Constraint::Uninited);\n let M = mono_q(TY_M, subtypeof(poly(DIV, vec![ty_tp(M)])));\n let op_t = bin_op(M.clone(), M.clone(), proj(M, MOD_OUTPUT)).quantify();\n- self.register_builtin_erg_impl(OP_MOD, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_MOD, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = nd_proc(vec![kw(KW_LHS, Obj), kw(KW_RHS, Obj)], None, Bool);\n- self.register_builtin_erg_impl(OP_IS, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_IS_NOT, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_IS, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_IS_NOT, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let E = mono_q(TY_E, subtypeof(mono(EQ)));\n let op_t = bin_op(E.clone(), E, Bool).quantify();\n- self.register_builtin_erg_impl(OP_EQ, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_NE, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_EQ, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_NE, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let O = mono_q(TY_O, subtypeof(mono(ORD)));\n let op_t = bin_op(O.clone(), O.clone(), Bool).quantify();\n- self.register_builtin_erg_impl(OP_LT, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_LE, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_GT, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_GE, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_LT, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_LE, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_GT, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_GE, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let BT = mono_q(TY_BT, subtypeof(or(Bool, Type)));\n let op_t = bin_op(BT.clone(), BT.clone(), BT).quantify();\n- self.register_builtin_erg_impl(OP_AND, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_OR, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_AND, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_OR, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = bin_op(O.clone(), O.clone(), range(O)).quantify();\n- self.register_builtin_erg_decl(OP_RNG, op_t.clone(), Private);\n- self.register_builtin_erg_decl(OP_LORNG, op_t.clone(), Private);\n- self.register_builtin_erg_decl(OP_RORNG, op_t.clone(), Private);\n- self.register_builtin_erg_decl(OP_ORNG, op_t, Private);\n+ self.register_builtin_erg_decl(OP_RNG, op_t.clone(), Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_decl(OP_LORNG, op_t.clone(), Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_decl(OP_RORNG, op_t.clone(), Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_decl(OP_ORNG, op_t, Visibility::BUILTIN_PRIVATE);\n // TODO: use existential type: |T: Type| (T, In(T)) -> Bool\n let T = mono_q(TY_T, instanceof(Type));\n let I = mono_q(KW_I, subtypeof(poly(IN, vec![ty_tp(T.clone())])));\n let op_t = bin_op(I, T, Bool).quantify();\n- self.register_builtin_erg_impl(OP_IN, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_NOT_IN, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_IN, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_NOT_IN, op_t, Const, Visibility::BUILTIN_PRIVATE);\n /* unary */\n // TODO: +/- Bool would like to be warned\n let M = mono_q(TY_M, subtypeof(mono(MUTIZABLE)));\n let op_t = func1(M.clone(), proj(M, MUTABLE_MUT_TYPE)).quantify();\n- self.register_builtin_erg_impl(OP_MUTATE, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_MUTATE, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let N = mono_q(TY_N, subtypeof(mono(NUM)));\n let op_t = func1(N.clone(), N).quantify();\n- self.register_builtin_erg_decl(OP_POS, op_t.clone(), Private);\n- self.register_builtin_erg_decl(OP_NEG, op_t, Private);\n+ self.register_builtin_erg_decl(OP_POS, op_t.clone(), Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_decl(OP_NEG, op_t, Visibility::BUILTIN_PRIVATE);\n }\n \n pub(super) fn init_py_builtin_operators(&mut self) {\n@@ -525,7 +583,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_ADD, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_ADD, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__sub__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -533,7 +591,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_SUB, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_SUB, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__mul__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -541,7 +599,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_MUL, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_MUL, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__div__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -549,7 +607,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_DIV, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_DIV, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__floordiv__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -557,7 +615,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_FLOOR_DIV, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__pow__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -565,7 +623,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_POW, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_POW, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__mod__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -573,10 +631,10 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_MOD, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_MOD, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = nd_proc(vec![kw(KW_LHS, Obj), kw(KW_RHS, Obj)], None, Bool);\n- self.register_builtin_erg_impl(OP_IS, op_t.clone(), Const, Private);\n- self.register_builtin_erg_impl(OP_IS_NOT, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_IS, op_t.clone(), Const, Visibility::BUILTIN_PRIVATE);\n+ self.register_builtin_erg_impl(OP_IS_NOT, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__eq__\".into()) => fn1_met(Never, R.clone(), Bool) },\n@@ -584,7 +642,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), Bool).quantify()\n };\n- self.register_builtin_erg_impl(OP_EQ, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_EQ, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__ne__\".into()) => fn1_met(Never, R.clone(), Bool) },\n@@ -592,7 +650,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), Bool).quantify()\n };\n- self.register_builtin_erg_impl(OP_NE, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_NE, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__lt__\".into()) => fn1_met(Never, R.clone(), Bool) },\n@@ -600,7 +658,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), Bool).quantify()\n };\n- self.register_builtin_erg_impl(OP_LT, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_LT, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__le__\".into()) => fn1_met(Never, R.clone(), Bool) },\n@@ -608,7 +666,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), Bool).quantify()\n };\n- self.register_builtin_erg_impl(OP_LE, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_LE, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__gt__\".into()) => fn1_met(Never, R.clone(), Bool) },\n@@ -616,7 +674,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), Bool).quantify()\n };\n- self.register_builtin_erg_impl(OP_GT, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_GT, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__ge__\".into()) => fn1_met(Never, R.clone(), Bool) },\n@@ -624,7 +682,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), Bool).quantify()\n };\n- self.register_builtin_erg_impl(OP_GE, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_GE, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__and__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -632,7 +690,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O.clone()).quantify()\n };\n- self.register_builtin_erg_impl(OP_AND, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_AND, op_t, Const, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S = Type::from(\n dict! { Field::public(\"__or__\".into()) => fn1_met(Never, R.clone(), O.clone()) },\n@@ -640,7 +698,7 @@ impl Context {\n .structuralize();\n bin_op(S, R.clone(), O).quantify()\n };\n- self.register_builtin_erg_impl(OP_OR, op_t, Const, Private);\n+ self.register_builtin_erg_impl(OP_OR, op_t, Const, Visibility::BUILTIN_PRIVATE);\n /* unary */\n let op_t = {\n let S =\n@@ -648,13 +706,13 @@ impl Context {\n .structuralize();\n func1(S, R.clone()).quantify()\n };\n- self.register_builtin_erg_decl(OP_POS, op_t, Private);\n+ self.register_builtin_erg_decl(OP_POS, op_t, Visibility::BUILTIN_PRIVATE);\n let op_t = {\n let S =\n Type::from(dict! { Field::public(\"__neg__\".into()) => fn0_met(Never, R.clone()) })\n .structuralize();\n func1(S, R).quantify()\n };\n- self.register_builtin_erg_decl(OP_NEG, op_t, Private);\n+ self.register_builtin_erg_decl(OP_NEG, op_t, Visibility::BUILTIN_PRIVATE);\n }\n }\n", "mod.rs": "@@ -11,6 +11,7 @@ pub mod free;\n pub mod predicate;\n pub mod typaram;\n pub mod value;\n+pub mod vis;\n \n use std::fmt;\n use std::ops::{BitAnd, BitOr, Deref, Not, Range, RangeInclusive};\n@@ -22,7 +23,6 @@ use erg_common::fresh::fresh_varname;\n use erg_common::log;\n use erg_common::set::Set;\n use erg_common::traits::{LimitedDisplay, StructuralEq};\n-use erg_common::vis::Field;\n use erg_common::{enum_unwrap, fmt_option, ref_addr_eq, set, Str};\n \n use erg_parser::token::TokenKind;\n@@ -35,6 +35,7 @@ use typaram::{IntervalOp, TyParam};\n use value::value_set::*;\n use value::ValueObj;\n use value::ValueObj::{Inf, NegInf};\n+pub use vis::*;\n \n /// clone\u306e\u30b3\u30b9\u30c8\u304c\u3042\u308b\u305f\u3081\u306a\u308b\u3079\u304f.ref_t\u3092\u4f7f\u3046\u3088\u3046\u306b\u3059\u308b\u3053\u3068\n /// \u3044\u304f\u3064\u304b\u306e\u69cb\u9020\u4f53\u306f\u76f4\u63a5Type\u3092\u4fdd\u6301\u3057\u3066\u3044\u306a\u3044\u306e\u3067\u3001\u305d\u306e\u5834\u5408\u306f.t\u3092\u4f7f\u3046\n@@ -534,9 +535,6 @@ impl LimitedDisplay for RefinementType {\n write!(f, \"{rhs}, \")?;\n }\n write!(f, \"}}\")?;\n- if cfg!(feature = \"debug\") {\n- write!(f, \"(<: {})\", self.t)?;\n- }\n Ok(())\n } else {\n write!(f, \"{{{}: \", self.var)?;\n", "patches.rs": "@@ -1,18 +1,16 @@\n #[allow(unused_imports)]\n use erg_common::log;\n-use erg_common::vis::Visibility;\n \n use crate::ty::constructors::*;\n use crate::ty::typaram::TyParam;\n use crate::ty::value::ValueObj;\n-use crate::ty::Type;\n+use crate::ty::{Type, Visibility};\n use Type::*;\n \n use crate::context::initialize::*;\n use crate::context::Context;\n use crate::varinfo::Mutability;\n use Mutability::*;\n-use Visibility::*;\n \n impl Context {\n pub(super) fn init_builtin_patches(&mut self) {\n@@ -38,10 +36,10 @@ impl Context {\n )\n .quantify();\n let mut interval_add = Self::builtin_methods(Some(impls), 2);\n- interval_add.register_builtin_erg_impl(\"__add__\", op_t, Const, Public);\n+ interval_add.register_builtin_erg_impl(\"__add__\", op_t, Const, Visibility::BUILTIN_PUBLIC);\n interval_add.register_builtin_const(\n \"Output\",\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(Type::from(m.clone() + o.clone()..=n.clone() + p.clone())),\n );\n interval.register_trait(class.clone(), interval_add);\n@@ -53,18 +51,18 @@ impl Context {\n Type::from(m.clone() - p.clone()..=n.clone() - o.clone()),\n )\n .quantify();\n- interval_sub.register_builtin_erg_impl(\"__sub__\", op_t, Const, Public);\n+ interval_sub.register_builtin_erg_impl(\"__sub__\", op_t, Const, Visibility::BUILTIN_PUBLIC);\n interval_sub.register_builtin_const(\n \"Output\",\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n ValueObj::builtin_t(Type::from(m - p..=n - o)),\n );\n interval.register_trait(class, interval_sub);\n- self.register_builtin_patch(\"Interval\", interval, Private, Const);\n- // eq.register_impl(\"__ne__\", op_t, Const, Public);\n- // ord.register_impl(\"__le__\", op_t.clone(), Const, Public);\n- // ord.register_impl(\"__gt__\", op_t.clone(), Const, Public);\n- // ord.register_impl(\"__ge__\", op_t, Const, Public);\n+ self.register_builtin_patch(\"Interval\", interval, Visibility::BUILTIN_PRIVATE, Const);\n+ // eq.register_impl(\"__ne__\", op_t, Const, Visibility::BUILTIN_PUBLIC);\n+ // ord.register_impl(\"__le__\", op_t.clone(), Const, Visibility::BUILTIN_PUBLIC);\n+ // ord.register_impl(\"__gt__\", op_t.clone(), Const, Visibility::BUILTIN_PUBLIC);\n+ // ord.register_impl(\"__ge__\", op_t, Const, Visibility::BUILTIN_PUBLIC);\n let E = mono_q(\"E\", subtypeof(mono(\"Eq\")));\n let base = or(E, NoneType);\n let impls = mono(\"Eq\");\n@@ -73,8 +71,8 @@ impl Context {\n Self::builtin_poly_glue_patch(\"OptionEq\", base.clone(), impls.clone(), params, 1);\n let mut option_eq_impl = Self::builtin_methods(Some(impls), 1);\n let op_t = fn1_met(base.clone(), base.clone(), Bool).quantify();\n- option_eq_impl.register_builtin_erg_impl(\"__eq__\", op_t, Const, Public);\n+ option_eq_impl.register_builtin_erg_impl(\"__eq__\", op_t, Const, Visibility::BUILTIN_PUBLIC);\n option_eq.register_trait(base, option_eq_impl);\n- self.register_builtin_patch(\"OptionEq\", option_eq, Private, Const);\n+ self.register_builtin_patch(\"OptionEq\", option_eq, Visibility::BUILTIN_PRIVATE, Const);\n }\n }\n", "procs.rs": "@@ -1,24 +1,22 @@\n #[allow(unused_imports)]\n use erg_common::log;\n-use erg_common::vis::Visibility;\n \n use crate::ty::constructors::*;\n use crate::ty::typaram::TyParam;\n-use crate::ty::Type;\n+use crate::ty::{Type, Visibility};\n use Type::*;\n \n use crate::context::initialize::*;\n use crate::context::Context;\n use crate::varinfo::Mutability;\n use Mutability::*;\n-use Visibility::*;\n \n impl Context {\n pub(super) fn init_builtin_procs(&mut self) {\n let vis = if cfg!(feature = \"py_compatible\") {\n- Public\n+ Visibility::BUILTIN_PUBLIC\n } else {\n- Private\n+ Visibility::BUILTIN_PRIVATE\n };\n let T = mono_q(\"T\", instanceof(Type));\n let U = mono_q(\"U\", instanceof(Type));\n@@ -119,32 +117,38 @@ impl Context {\n U,\n )\n .quantify();\n- self.register_builtin_py_impl(\"dir!\", t_dir, Immutable, vis, Some(\"dir\"));\n+ self.register_builtin_py_impl(\"dir!\", t_dir, Immutable, vis.clone(), Some(\"dir\"));\n self.register_py_builtin(\"print!\", t_print, Some(\"print\"), 81);\n- self.register_builtin_py_impl(\"id!\", t_id, Immutable, vis, Some(\"id\"));\n- self.register_builtin_py_impl(\"input!\", t_input, Immutable, vis, Some(\"input\"));\n- self.register_builtin_py_impl(\"globals!\", t_globals, Immutable, vis, Some(\"globals\"));\n- self.register_builtin_py_impl(\"locals!\", t_locals, Immutable, vis, Some(\"locals\"));\n- self.register_builtin_py_impl(\"next!\", t_next, Immutable, vis, Some(\"next\"));\n+ self.register_builtin_py_impl(\"id!\", t_id, Immutable, vis.clone(), Some(\"id\"));\n+ self.register_builtin_py_impl(\"input!\", t_input, Immutable, vis.clone(), Some(\"input\"));\n+ self.register_builtin_py_impl(\n+ \"globals!\",\n+ t_globals,\n+ Immutable,\n+ vis.clone(),\n+ Some(\"globals\"),\n+ );\n+ self.register_builtin_py_impl(\"locals!\", t_locals, Immutable, vis.clone(), Some(\"locals\"));\n+ self.register_builtin_py_impl(\"next!\", t_next, Immutable, vis.clone(), Some(\"next\"));\n self.register_py_builtin(\"open!\", t_open, Some(\"open\"), 198);\n let name = if cfg!(feature = \"py_compatible\") {\n \"if\"\n } else {\n \"if__\"\n };\n- self.register_builtin_py_impl(\"if!\", t_if, Immutable, vis, Some(name));\n+ self.register_builtin_py_impl(\"if!\", t_if, Immutable, vis.clone(), Some(name));\n let name = if cfg!(feature = \"py_compatible\") {\n \"for\"\n } else {\n \"for__\"\n };\n- self.register_builtin_py_impl(\"for!\", t_for, Immutable, vis, Some(name));\n+ self.register_builtin_py_impl(\"for!\", t_for, Immutable, vis.clone(), Some(name));\n let name = if cfg!(feature = \"py_compatible\") {\n \"while\"\n } else {\n \"while__\"\n };\n- self.register_builtin_py_impl(\"while!\", t_while, Immutable, vis, Some(name));\n+ self.register_builtin_py_impl(\"while!\", t_while, Immutable, vis.clone(), Some(name));\n let name = if cfg!(feature = \"py_compatible\") {\n \"with\"\n } else {\n", "traits.rs": "@@ -1,11 +1,10 @@\n #[allow(unused_imports)]\n use erg_common::log;\n-use erg_common::vis::Visibility;\n \n use crate::ty::constructors::*;\n use crate::ty::typaram::TyParam;\n use crate::ty::value::ValueObj;\n-use crate::ty::Type;\n+use crate::ty::{Type, Visibility};\n use ParamSpec as PS;\n use Type::*;\n \n@@ -14,7 +13,6 @@ use crate::context::{ConstTemplate, Context, DefaultInfo, ParamSpec};\n use crate::varinfo::Mutability;\n use DefaultInfo::*;\n use Mutability::*;\n-use Visibility::*;\n \n impl Context {\n /// see std/prelude.er\n@@ -24,9 +22,9 @@ impl Context {\n // push_subtype_bound\u306a\u3069\u306f\u30e6\u30fc\u30b6\u30fc\u5b9a\u7fa9API\u306e\u578b\u5883\u754c\u6c7a\u5b9a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\n pub(super) fn init_builtin_traits(&mut self) {\n let vis = if cfg!(feature = \"py_compatible\") {\n- Public\n+ Visibility::BUILTIN_PUBLIC\n } else {\n- Private\n+ Visibility::BUILTIN_PRIVATE\n };\n let unpack = Self::builtin_mono_trait(UNPACK, 2);\n let inheritable_type = Self::builtin_mono_trait(INHERITABLE_TYPE, 2);\n@@ -36,25 +34,35 @@ impl Context {\n let immut_t = proj(Slf.clone(), IMMUT_TYPE);\n let f_t = func(vec![kw(KW_OLD, immut_t.clone())], None, vec![], immut_t);\n let t = pr1_met(ref_mut(Slf, None), f_t, NoneType).quantify();\n- mutable.register_builtin_erg_decl(PROC_UPDATE, t, Public);\n+ mutable.register_builtin_erg_decl(PROC_UPDATE, t, Visibility::BUILTIN_PUBLIC);\n // REVIEW: Immutatable?\n let mut immutizable = Self::builtin_mono_trait(IMMUTIZABLE, 2);\n immutizable.register_superclass(mono(MUTABLE), &mutable);\n- immutizable.register_builtin_erg_decl(IMMUT_TYPE, Type, Public);\n+ immutizable.register_builtin_erg_decl(IMMUT_TYPE, Type, Visibility::BUILTIN_PUBLIC);\n // REVIEW: Mutatable?\n let mut mutizable = Self::builtin_mono_trait(MUTIZABLE, 2);\n- mutizable.register_builtin_erg_decl(MUTABLE_MUT_TYPE, Type, Public);\n+ mutizable.register_builtin_erg_decl(MUTABLE_MUT_TYPE, Type, Visibility::BUILTIN_PUBLIC);\n let pathlike = Self::builtin_mono_trait(PATH_LIKE, 2);\n /* Readable */\n let mut readable = Self::builtin_mono_trait(MUTABLE_READABLE, 2);\n let Slf = mono_q(SELF, subtypeof(mono(MUTABLE_READABLE)));\n let t_read = pr_met(ref_mut(Slf, None), vec![], None, vec![kw(KW_N, Int)], Str).quantify();\n- readable.register_builtin_py_decl(PROC_READ, t_read, Public, Some(FUNC_READ));\n+ readable.register_builtin_py_decl(\n+ PROC_READ,\n+ t_read,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_READ),\n+ );\n /* Writable */\n let mut writable = Self::builtin_mono_trait(MUTABLE_WRITABLE, 2);\n let Slf = mono_q(SELF, subtypeof(mono(MUTABLE_WRITABLE)));\n let t_write = pr1_kw_met(ref_mut(Slf, None), kw(\"s\", Str), Nat).quantify();\n- writable.register_builtin_py_decl(PROC_WRITE, t_write, Public, Some(FUNC_WRITE));\n+ writable.register_builtin_py_decl(\n+ PROC_WRITE,\n+ t_write,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNC_WRITE),\n+ );\n // TODO: Add required methods\n let mut filelike = Self::builtin_mono_trait(FILE_LIKE, 2);\n filelike.register_superclass(mono(READABLE), &readable);\n@@ -65,7 +73,12 @@ impl Context {\n let mut show = Self::builtin_mono_trait(SHOW, 2);\n let Slf = mono_q(SELF, subtypeof(mono(SHOW)));\n let t_show = fn0_met(ref_(Slf), Str).quantify();\n- show.register_builtin_py_decl(TO_STR, t_show, Public, Some(FUNDAMENTAL_STR));\n+ show.register_builtin_py_decl(\n+ TO_STR,\n+ t_show,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNDAMENTAL_STR),\n+ );\n /* In */\n let mut in_ = Self::builtin_poly_trait(IN, vec![PS::t_nd(TY_T)], 2);\n let params = vec![PS::t_nd(TY_T)];\n@@ -75,7 +88,7 @@ impl Context {\n let I = mono_q(TY_I, subtypeof(poly(IN, vec![ty_tp(T.clone())])));\n in_.register_superclass(poly(INPUT, vec![ty_tp(T.clone())]), &input);\n let op_t = fn1_met(T.clone(), I, Bool).quantify();\n- in_.register_builtin_erg_decl(OP_IN, op_t, Public);\n+ in_.register_builtin_erg_decl(OP_IN, op_t, Visibility::BUILTIN_PUBLIC);\n /* Eq */\n // Erg does not have a trait equivalent to `PartialEq` in Rust\n // This means, Erg's `Float` cannot be compared with other `Float`\n@@ -84,13 +97,13 @@ impl Context {\n let Slf = mono_q(SELF, subtypeof(mono(EQ)));\n // __eq__: |Self <: Eq| (self: Self, other: Self) -> Bool\n let op_t = fn1_met(Slf.clone(), Slf, Bool).quantify();\n- eq.register_builtin_erg_decl(OP_EQ, op_t, Public);\n+ eq.register_builtin_erg_decl(OP_EQ, op_t, Visibility::BUILTIN_PUBLIC);\n /* Ord */\n let mut ord = Self::builtin_mono_trait(ORD, 2);\n ord.register_superclass(mono(EQ), &eq);\n let Slf = mono_q(SELF, subtypeof(mono(ORD)));\n let op_t = fn1_met(Slf.clone(), Slf, or(mono(ORDERING), NoneType)).quantify();\n- ord.register_builtin_erg_decl(OP_CMP, op_t, Public);\n+ ord.register_builtin_erg_decl(OP_CMP, op_t, Visibility::BUILTIN_PUBLIC);\n // FIXME: poly trait\n /* Num */\n let num = Self::builtin_mono_trait(NUM, 2);\n@@ -104,24 +117,29 @@ impl Context {\n seq.register_superclass(poly(OUTPUT, vec![ty_tp(T.clone())]), &output);\n let Slf = mono_q(SELF, subtypeof(poly(SEQ, vec![TyParam::erased(Type)])));\n let t = fn0_met(Slf.clone(), Nat).quantify();\n- seq.register_builtin_erg_decl(FUNC_LEN, t, Public);\n+ seq.register_builtin_erg_decl(FUNC_LEN, t, Visibility::BUILTIN_PUBLIC);\n let t = fn1_met(Slf, Nat, T.clone()).quantify();\n // Seq.get: |Self <: Seq(T)| Self.(Nat) -> T\n- seq.register_builtin_erg_decl(FUNC_GET, t, Public);\n+ seq.register_builtin_erg_decl(FUNC_GET, t, Visibility::BUILTIN_PUBLIC);\n /* Iterable */\n let mut iterable = Self::builtin_poly_trait(ITERABLE, vec![PS::t_nd(TY_T)], 2);\n iterable.register_superclass(poly(OUTPUT, vec![ty_tp(T.clone())]), &output);\n let Slf = mono_q(SELF, subtypeof(poly(ITERABLE, vec![ty_tp(T.clone())])));\n let t = fn0_met(Slf.clone(), proj(Slf, ITER)).quantify();\n- iterable.register_builtin_py_decl(FUNC_ITER, t, Public, Some(FUNDAMENTAL_ITER));\n- iterable.register_builtin_erg_decl(ITER, Type, Public);\n+ iterable.register_builtin_py_decl(\n+ FUNC_ITER,\n+ t,\n+ Visibility::BUILTIN_PUBLIC,\n+ Some(FUNDAMENTAL_ITER),\n+ );\n+ iterable.register_builtin_erg_decl(ITER, Type, Visibility::BUILTIN_PUBLIC);\n let mut context_manager = Self::builtin_mono_trait(CONTEXT_MANAGER, 2);\n let Slf = mono_q(SELF, subtypeof(mono(CONTEXT_MANAGER)));\n let t = fn0_met(Slf.clone(), NoneType).quantify();\n context_manager.register_builtin_py_decl(\n FUNDAMENTAL_ENTER,\n t,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_ENTER),\n );\n let t = fn_met(\n@@ -139,7 +157,7 @@ impl Context {\n context_manager.register_builtin_py_decl(\n FUNDAMENTAL_EXIT,\n t,\n- Public,\n+ Visibility::BUILTIN_PUBLIC,\n Some(FUNDAMENTAL_EXIT),\n );\n let R = mono_q(TY_R, instanceof(Type));\n@@ -152,111 +170,141 @@ impl Context {\n add.register_superclass(poly(OUTPUT, vec![ty_tp(R.clone())]), &output);\n let Slf = mono_q(SELF, subtypeof(poly(ADD, ty_params.clone())));\n let op_t = fn1_met(Slf.clone(), R.clone(), proj(Slf, OUTPUT)).quantify();\n- add.register_builtin_erg_decl(OP_ADD, op_t, Public);\n- add.register_builtin_erg_decl(OUTPUT, Type, Public);\n+ add.register_builtin_erg_decl(OP_ADD, op_t, Visibility::BUILTIN_PUBLIC);\n+ add.register_builtin_erg_decl(OUTPUT, Type, Visibility::BUILTIN_PUBLIC);\n /* Sub */\n let mut sub = Self::builtin_poly_trait(SUB, params.clone(), 2);\n sub.register_superclass(poly(OUTPUT, vec![ty_tp(R.clone())]), &output);\n let Slf = mono_q(SELF, subtypeof(poly(SUB, ty_params.clone())));\n let op_t = fn1_met(Slf.clone(), R.clone(), proj(Slf, OUTPUT)).quantify();\n- sub.register_builtin_erg_decl(OP_SUB, op_t, Public);\n- sub.register_builtin_erg_decl(OUTPUT, Type, Public);\n+ sub.register_builtin_erg_decl(OP_SUB, op_t, Visibility::BUILTIN_PUBLIC);\n+ sub.register_builtin_erg_decl(OUTPUT, Type, Visibility::BUILTIN_PUBLIC);\n /* Mul */\n let mut mul = Self::builtin_poly_trait(MUL, params.clone(), 2);\n mul.register_superclass(poly(OUTPUT, vec![ty_tp(R.clone())]), &output);\n let Slf = mono_q(SELF, subtypeof(poly(MUL, ty_params.clone())));\n let op_t = fn1_met(Slf.clone(), R.clone(), proj(Slf, OUTPUT)).quantify();\n- mul.register_builtin_erg_decl(OP_MUL, op_t, Public);\n- mul.register_builtin_erg_decl(OUTPUT, Type, Public);\n+ mul.register_builtin_erg_decl(OP_MUL, op_t, Visibility::BUILTIN_PUBLIC);\n+ mul.register_builtin_erg_decl(OUTPUT, Type, Visibility::BUILTIN_PUBLIC);\n /* Div */\n let mut div = Self::builtin_poly_trait(DIV, params.clone(), 2);\n div.register_superclass(poly(OUTPUT, vec![ty_tp(R.clone())]), &output);\n let Slf = mono_q(SELF, subtypeof(poly(DIV, ty_params.clone())));\n let op_t = fn1_met(Slf.clone(), R.clone(), proj(Slf, OUTPUT)).quantify();\n- div.register_builtin_erg_decl(OP_DIV, op_t, Public);\n- div.register_builtin_erg_decl(OUTPUT, Type, Public);\n+ div.register_builtin_erg_decl(OP_DIV, op_t, Visibility::BUILTIN_PUBLIC);\n+ div.register_builtin_erg_decl(OUTPUT, Type, Visibility::BUILTIN_PUBLIC);\n /* FloorDiv */\n let mut floor_div = Self::builtin_poly_trait(FLOOR_DIV, params, 2);\n floor_div.register_superclass(poly(OUTPUT, vec![ty_tp(R.clone())]), &output);\n let Slf = mono_q(SELF, subtypeof(poly(FLOOR_DIV, ty_params.clone())));\n let op_t = fn1_met(Slf.clone(), R, proj(Slf.clone(), OUTPUT)).quantify();\n- floor_div.register_builtin_erg_decl(OP_FLOOR_DIV, op_t, Public);\n- floor_div.register_builtin_erg_decl(OUTPUT, Type, Public);\n+ floor_div.register_builtin_erg_decl(OP_FLOOR_DIV, op_t, Visibility::BUILTIN_PUBLIC);\n+ floor_div.register_builtin_erg_decl(OUTPUT, Type, Visibility::BUILTIN_PUBLIC);\n /* Pos */\n let mut pos = Self::builtin_mono_trait(POS, 2);\n let _Slf = mono_q(SELF, subtypeof(mono(POS)));\n let op_t = fn0_met(_Slf.clone(), proj(_Slf, OUTPUT)).quantify();\n- pos.register_builtin_erg_decl(OP_POS, op_t, Public);\n- pos.register_builtin_erg_decl(OUTPUT, Type, Public);\n+ pos.register_builtin_erg_decl(OP_POS, op_t, Visibility::BUILTIN_PUBLIC);\n+ pos.register_builtin_erg_decl(OUTPUT, Type, Visibility::BUILTIN_PUBLIC);\n /* Neg */\n let mut neg = Self::builtin_mono_trait(NEG, 2);\n let _Slf = mono_q(SELF, subtypeof(mono(NEG)));\n let op_t = fn0_met(_Slf.clone(), proj(_Slf, OUTPUT)).quantify();\n- neg.register_builtin_erg_decl(OP_NEG, op_t, Public);\n- neg.register_builtin_erg_decl(OUTPUT, Type, Public);\n- self.register_builtin_type(mono(UNPACK), unpack, vis, Const, None);\n+ neg.register_builtin_erg_decl(OP_NEG, op_t, Visibility::BUILTIN_PUBLIC);\n+ neg.register_builtin_erg_decl(OUTPUT, Type, Visibility::BUILTIN_PUBLIC);\n+ self.register_builtin_type(mono(UNPACK), unpack, vis.clone(), Const, None);\n self.register_builtin_type(\n mono(INHERITABLE_TYPE),\n inheritable_type,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n None,\n );\n- self.register_builtin_type(mono(NAMED), named, vis, Const, None);\n- self.register_builtin_type(mono(MUTABLE), mutable, vis, Const, None);\n- self.register_builtin_type(mono(IMMUTIZABLE), immutizable, vis, Const, None);\n- self.register_builtin_type(mono(MUTIZABLE), mutizable, vis, Const, None);\n- self.register_builtin_type(mono(PATH_LIKE), pathlike, vis, Const, None);\n+ self.register_builtin_type(mono(NAMED), named, vis.clone(), Const, None);\n+ self.register_builtin_type(mono(MUTABLE), mutable, vis.clone(), Const, None);\n+ self.register_builtin_type(mono(IMMUTIZABLE), immutizable, vis.clone(), Const, None);\n+ self.register_builtin_type(mono(MUTIZABLE), mutizable, vis.clone(), Const, None);\n+ self.register_builtin_type(mono(PATH_LIKE), pathlike, vis.clone(), Const, None);\n self.register_builtin_type(\n mono(MUTABLE_READABLE),\n readable,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(READABLE),\n );\n self.register_builtin_type(\n mono(MUTABLE_WRITABLE),\n writable,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n Some(WRITABLE),\n );\n- self.register_builtin_type(mono(FILE_LIKE), filelike, vis, Const, None);\n- self.register_builtin_type(mono(MUTABLE_FILE_LIKE), filelike_mut, vis, Const, None);\n- self.register_builtin_type(mono(SHOW), show, vis, Const, None);\n+ self.register_builtin_type(mono(FILE_LIKE), filelike, vis.clone(), Const, None);\n+ self.register_builtin_type(\n+ mono(MUTABLE_FILE_LIKE),\n+ filelike_mut,\n+ vis.clone(),\n+ Const,\n+ None,\n+ );\n+ self.register_builtin_type(mono(SHOW), show, vis.clone(), Const, None);\n self.register_builtin_type(\n poly(INPUT, vec![ty_tp(T.clone())]),\n input,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n None,\n );\n self.register_builtin_type(\n poly(OUTPUT, vec![ty_tp(T.clone())]),\n output,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n+ Const,\n+ None,\n+ );\n+ self.register_builtin_type(\n+ poly(IN, vec![ty_tp(T.clone())]),\n+ in_,\n+ Visibility::BUILTIN_PRIVATE,\n+ Const,\n+ None,\n+ );\n+ self.register_builtin_type(mono(EQ), eq, vis.clone(), Const, None);\n+ self.register_builtin_type(mono(ORD), ord, vis.clone(), Const, None);\n+ self.register_builtin_type(mono(NUM), num, vis.clone(), Const, None);\n+ self.register_builtin_type(\n+ poly(SEQ, vec![ty_tp(T.clone())]),\n+ seq,\n+ Visibility::BUILTIN_PRIVATE,\n Const,\n None,\n );\n- self.register_builtin_type(poly(IN, vec![ty_tp(T.clone())]), in_, Private, Const, None);\n- self.register_builtin_type(mono(EQ), eq, vis, Const, None);\n- self.register_builtin_type(mono(ORD), ord, vis, Const, None);\n- self.register_builtin_type(mono(NUM), num, vis, Const, None);\n- self.register_builtin_type(poly(SEQ, vec![ty_tp(T.clone())]), seq, Private, Const, None);\n self.register_builtin_type(\n poly(ITERABLE, vec![ty_tp(T)]),\n iterable,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n+ Const,\n+ None,\n+ );\n+ self.register_builtin_type(\n+ mono(CONTEXT_MANAGER),\n+ context_manager,\n+ Visibility::BUILTIN_PRIVATE,\n+ Const,\n+ None,\n+ );\n+ self.register_builtin_type(poly(ADD, ty_params.clone()), add, vis.clone(), Const, None);\n+ self.register_builtin_type(poly(SUB, ty_params.clone()), sub, vis.clone(), Const, None);\n+ self.register_builtin_type(poly(MUL, ty_params.clone()), mul, vis.clone(), Const, None);\n+ self.register_builtin_type(poly(DIV, ty_params.clone()), div, vis.clone(), Const, None);\n+ self.register_builtin_type(\n+ poly(FLOOR_DIV, ty_params),\n+ floor_div,\n+ vis.clone(),\n Const,\n None,\n );\n- self.register_builtin_type(mono(CONTEXT_MANAGER), context_manager, Private, Const, None);\n- self.register_builtin_type(poly(ADD, ty_params.clone()), add, vis, Const, None);\n- self.register_builtin_type(poly(SUB, ty_params.clone()), sub, vis, Const, None);\n- self.register_builtin_type(poly(MUL, ty_params.clone()), mul, vis, Const, None);\n- self.register_builtin_type(poly(DIV, ty_params.clone()), div, vis, Const, None);\n- self.register_builtin_type(poly(FLOOR_DIV, ty_params), floor_div, vis, Const, None);\n- self.register_builtin_type(mono(POS), pos, vis, Const, None);\n+ self.register_builtin_type(mono(POS), pos, vis.clone(), Const, None);\n self.register_builtin_type(mono(NEG), neg, vis, Const, None);\n self.register_const_param_defaults(\n ADD,\n", "inquire.rs": "@@ -5,28 +5,27 @@ use std::path::{Path, PathBuf};\n use erg_common::config::{ErgConfig, Input};\n use erg_common::env::{erg_py_external_lib_path, erg_pystd_path, erg_std_path};\n use erg_common::error::{ErrorCore, ErrorKind, Location, SubMessage};\n-use erg_common::levenshtein::get_similar_name;\n+use erg_common::levenshtein;\n use erg_common::pathutil::add_postfix_foreach;\n use erg_common::set::Set;\n use erg_common::traits::{Locational, NoTypeDisplay, Stream};\n-use erg_common::vis::Visibility;\n+use erg_common::triple::Triple;\n use erg_common::Str;\n use erg_common::{\n fmt_option, fmt_slice, log, normalize_path, option_enum_unwrap, set, switch_lang,\n };\n-use Type::*;\n \n-use ast::VarName;\n-use erg_parser::ast::{self, Identifier};\n+use erg_parser::ast::{self, Identifier, VarName};\n use erg_parser::token::Token;\n \n use crate::ty::constructors::{anon, free_var, func, mono, poly, proc, proj, ref_, subr_t};\n use crate::ty::free::Constraint;\n use crate::ty::typaram::TyParam;\n use crate::ty::value::{GenTypeObj, TypeObj, ValueObj};\n-use crate::ty::{HasType, ParamTy, SubrKind, SubrType, Type};\n+use crate::ty::{HasType, ParamTy, SubrKind, SubrType, Type, Visibility};\n+use Type::*;\n \n-use crate::context::instantiate::ConstTemplate;\n+use crate::context::instantiate_spec::ConstTemplate;\n use crate::context::{Context, RegistrationMode, TraitImpl, TyVarCache, Variance};\n use crate::error::{\n binop_to_dname, readable_name, unaryop_to_dname, SingleTyCheckResult, TyCheckError,\n@@ -36,9 +35,8 @@ use crate::varinfo::{AbsLocation, Mutability, VarInfo, VarKind};\n use crate::{feature_error, hir};\n use crate::{unreachable_error, AccessKind};\n use RegistrationMode::*;\n-use Visibility::*;\n \n-use super::instantiate::ParamKind;\n+use super::instantiate_spec::ParamKind;\n use super::{ContextKind, MethodInfo};\n \n #[derive(Debug, Clone, PartialEq, Eq, Hash)]\n@@ -105,7 +103,7 @@ impl Context {\n pub fn get_singular_ctx_by_hir_expr(\n &self,\n obj: &hir::Expr,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> SingleTyCheckResult<&Context> {\n match obj {\n hir::Expr::Accessor(hir::Accessor::Ident(ident)) => {\n@@ -132,19 +130,22 @@ impl Context {\n pub(crate) fn get_singular_ctx_by_ident(\n &self,\n ident: &ast::Identifier,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> SingleTyCheckResult<&Context> {\n self.get_mod(ident.inspect())\n .or_else(|| self.rec_local_get_type(ident.inspect()).map(|(_, ctx)| ctx))\n .or_else(|| self.rec_get_patch(ident.inspect()))\n .ok_or_else(|| {\n- TyCheckError::no_var_error(\n+ let (similar_info, similar_name) =\n+ self.get_similar_name_and_info(ident.inspect()).unzip();\n+ TyCheckError::detailed_no_var_error(\n self.cfg.input.clone(),\n line!() as usize,\n ident.loc(),\n- namespace.into(),\n+ namespace.name.to_string(),\n ident.inspect(),\n- self.get_similar_name(ident.inspect()),\n+ similar_name,\n+ similar_info,\n )\n })\n }\n@@ -170,7 +171,7 @@ impl Context {\n pub(crate) fn get_singular_ctx(\n &self,\n obj: &ast::Expr,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> SingleTyCheckResult<&Context> {\n match obj {\n ast::Expr::Accessor(ast::Accessor::Ident(ident)) => {\n@@ -342,16 +343,16 @@ impl Context {\n ident: &Identifier,\n acc_kind: AccessKind,\n input: &Input,\n- namespace: &Str,\n- ) -> SingleTyCheckResult<VarInfo> {\n+ namespace: &Context,\n+ ) -> Triple<VarInfo, TyCheckError> {\n if let Some(vi) = self.get_current_scope_var(&ident.name) {\n match self.validate_visibility(ident, vi, input, namespace) {\n Ok(()) => {\n- return Ok(vi.clone());\n+ return Triple::Ok(vi.clone());\n }\n Err(err) => {\n if !acc_kind.is_local() {\n- return Err(err);\n+ return Triple::Err(err);\n }\n }\n }\n@@ -359,21 +360,21 @@ impl Context {\n .future_defined_locals\n .get_key_value(&ident.inspect()[..])\n {\n- return Err(TyCheckError::access_before_def_error(\n+ return Triple::Err(TyCheckError::access_before_def_error(\n input.clone(),\n line!() as usize,\n ident.loc(),\n- namespace.into(),\n+ namespace.name.to_string(),\n ident.inspect(),\n name.ln_begin().unwrap_or(0),\n self.get_similar_name(ident.inspect()),\n ));\n } else if let Some((name, _vi)) = self.deleted_locals.get_key_value(&ident.inspect()[..]) {\n- return Err(TyCheckError::access_deleted_var_error(\n+ return Triple::Err(TyCheckError::access_deleted_var_error(\n input.clone(),\n line!() as usize,\n ident.loc(),\n- namespace.into(),\n+ namespace.name.to_string(),\n ident.inspect(),\n name.ln_begin().unwrap_or(0),\n self.get_similar_name(ident.inspect()),\n@@ -381,20 +382,22 @@ impl Context {\n }\n if acc_kind.is_local() {\n if let Some(parent) = self.get_outer().or_else(|| self.get_builtins()) {\n- return match parent.rec_get_var_info(ident, acc_kind, input, namespace) {\n- Ok(vi) => Ok(vi),\n- Err(err) => Err(err),\n- };\n+ return parent.rec_get_var_info(ident, acc_kind, input, namespace);\n }\n }\n- Err(TyCheckError::no_var_error(\n+ /*\n+ let (similar_info, similar_name) = self.get_similar_name_and_info(ident.inspect()).unzip();\n+ Err(TyCheckError::detailed_no_var_error(\n input.clone(),\n line!() as usize,\n ident.loc(),\n namespace.into(),\n ident.inspect(),\n- self.get_similar_name(ident.inspect()),\n+ similar_name,\n+ similar_info,\n ))\n+ */\n+ Triple::None\n }\n \n pub(crate) fn rec_get_decl_info(\n@@ -402,8 +405,8 @@ impl Context {\n ident: &Identifier,\n acc_kind: AccessKind,\n input: &Input,\n- namespace: &Str,\n- ) -> SingleTyCheckResult<VarInfo> {\n+ namespace: &Context,\n+ ) -> Triple<VarInfo, TyCheckError> {\n if let Some(vi) = self\n .decls\n .get(&ident.inspect()[..])\n@@ -411,11 +414,11 @@ impl Context {\n {\n match self.validate_visibility(ident, vi, input, namespace) {\n Ok(()) => {\n- return Ok(vi.clone());\n+ return Triple::Ok(vi.clone());\n }\n Err(err) => {\n if !acc_kind.is_local() {\n- return Err(err);\n+ return Triple::Err(err);\n }\n }\n }\n@@ -425,14 +428,15 @@ impl Context {\n return parent.rec_get_decl_info(ident, acc_kind, input, namespace);\n }\n }\n- Err(TyCheckError::no_var_error(\n+ /*Err(TyCheckError::no_var_error(\n input.clone(),\n line!() as usize,\n ident.loc(),\n namespace.into(),\n ident.inspect(),\n self.get_similar_name(ident.inspect()),\n- ))\n+ ))*/\n+ Triple::None\n }\n \n pub(crate) fn get_attr_info(\n@@ -440,42 +444,48 @@ impl Context {\n obj: &hir::Expr,\n ident: &Identifier,\n input: &Input,\n- namespace: &Str,\n- ) -> SingleTyCheckResult<VarInfo> {\n+ namespace: &Context,\n+ ) -> Triple<VarInfo, TyCheckError> {\n let self_t = obj.t();\n- let name = ident.name.token();\n- match self.get_attr_info_from_attributive(&self_t, ident, namespace) {\n- Ok(vi) => {\n- return Ok(vi);\n+ match self.get_attr_info_from_attributive(&self_t, ident) {\n+ Triple::Ok(vi) => {\n+ return Triple::Ok(vi);\n }\n- Err(e) if e.core.kind == ErrorKind::AttributeError => {}\n- Err(e) => {\n- return Err(e);\n+ Triple::Err(e) => {\n+ return Triple::Err(e);\n }\n+ _ => {}\n }\n if let Ok(singular_ctx) = self.get_singular_ctx_by_hir_expr(obj, namespace) {\n match singular_ctx.rec_get_var_info(ident, AccessKind::Attr, input, namespace) {\n- Ok(vi) => {\n- return Ok(vi);\n+ Triple::Ok(vi) => {\n+ return Triple::Ok(vi);\n }\n- Err(e) if e.core.kind == ErrorKind::NameError => {}\n- Err(e) => {\n- return Err(e);\n+ Triple::Err(e) => {\n+ return Triple::Err(e);\n }\n+ Triple::None => {}\n }\n }\n match self.get_attr_from_nominal_t(obj, ident, input, namespace) {\n- Ok(vi) => {\n+ Triple::Ok(vi) => {\n if let Some(self_t) = vi.t.self_t() {\n- self.sub_unify(obj.ref_t(), self_t, obj, Some(&\"self\".into()))\n- .map_err(|mut e| e.remove(0))?;\n+ match self\n+ .sub_unify(obj.ref_t(), self_t, obj, Some(&\"self\".into()))\n+ .map_err(|mut e| e.remove(0))\n+ {\n+ Ok(_) => {}\n+ Err(e) => {\n+ return Triple::Err(e);\n+ }\n+ }\n }\n- return Ok(vi);\n+ return Triple::Ok(vi);\n }\n- Err(e) if e.core.kind == ErrorKind::AttributeError => {}\n- Err(e) => {\n- return Err(e);\n+ Triple::Err(e) => {\n+ return Triple::Err(e);\n }\n+ _ => {}\n }\n for patch in self.find_patches_of(obj.ref_t()) {\n if let Some(vi) = patch\n@@ -483,8 +493,10 @@ impl Context {\n .get(ident.inspect())\n .or_else(|| patch.decls.get(ident.inspect()))\n {\n- self.validate_visibility(ident, vi, input, namespace)?;\n- return Ok(vi.clone());\n+ return match self.validate_visibility(ident, vi, input, namespace) {\n+ Ok(_) => Triple::Ok(vi.clone()),\n+ Err(e) => Triple::Err(e),\n+ };\n }\n for (_, methods_ctx) in patch.methods_list.iter() {\n if let Some(vi) = methods_ctx\n@@ -492,12 +504,15 @@ impl Context {\n .get(ident.inspect())\n .or_else(|| methods_ctx.decls.get(ident.inspect()))\n {\n- self.validate_visibility(ident, vi, input, namespace)?;\n- return Ok(vi.clone());\n+ return match self.validate_visibility(ident, vi, input, namespace) {\n+ Ok(_) => Triple::Ok(vi.clone()),\n+ Err(e) => Triple::Err(e),\n+ };\n }\n }\n }\n- Err(TyCheckError::no_attr_error(\n+ Triple::None\n+ /*Err(TyCheckError::no_attr_error(\n input.clone(),\n line!() as usize,\n name.loc(),\n@@ -505,7 +520,7 @@ impl Context {\n &self_t,\n name.inspect(),\n self.get_similar_attr(&self_t, name.inspect()),\n- ))\n+ ))*/\n }\n \n fn get_attr_from_nominal_t(\n@@ -513,39 +528,45 @@ impl Context {\n obj: &hir::Expr,\n ident: &Identifier,\n input: &Input,\n- namespace: &Str,\n- ) -> SingleTyCheckResult<VarInfo> {\n+ namespace: &Context,\n+ ) -> Triple<VarInfo, TyCheckError> {\n let self_t = obj.t();\n if let Some(sups) = self.get_nominal_super_type_ctxs(&self_t) {\n for ctx in sups {\n match ctx.rec_get_var_info(ident, AccessKind::Attr, input, namespace) {\n- Ok(vi) => {\n- return Ok(vi);\n+ Triple::Ok(vi) => {\n+ return Triple::Ok(vi);\n }\n- Err(e) if e.core.kind == ErrorKind::NameError => {}\n- Err(e) => {\n- return Err(e);\n+ Triple::Err(e) => {\n+ return Triple::Err(e);\n }\n+ _ => {}\n }\n // if self is a methods context\n if let Some(ctx) = self.get_same_name_context(&ctx.name) {\n match ctx.rec_get_var_info(ident, AccessKind::Method, input, namespace) {\n- Ok(vi) => {\n- return Ok(vi);\n+ Triple::Ok(vi) => {\n+ return Triple::Ok(vi);\n }\n- Err(e) if e.core.kind == ErrorKind::NameError => {}\n- Err(e) => {\n- return Err(e);\n+ Triple::Err(e) => {\n+ return Triple::Err(e);\n }\n+ _ => {}\n }\n }\n }\n }\n- let coerced = self\n+ let coerced = match self\n .deref_tyvar(obj.t(), Variance::Covariant, &set! {}, &())\n- .map_err(|mut es| es.remove(0))?;\n+ .map_err(|mut es| es.remove(0))\n+ {\n+ Ok(t) => t,\n+ Err(e) => {\n+ return Triple::Err(e);\n+ }\n+ };\n if obj.ref_t() != &coerced {\n- for ctx in self.get_nominal_super_type_ctxs(&coerced).ok_or_else(|| {\n+ let ctxs = match self.get_nominal_super_type_ctxs(&coerced).ok_or_else(|| {\n TyCheckError::type_not_found(\n self.cfg.input.clone(),\n line!() as usize,\n@@ -553,31 +574,37 @@ impl Context {\n self.caused_by(),\n &coerced,\n )\n- })? {\n+ }) {\n+ Ok(ctxs) => ctxs,\n+ Err(e) => {\n+ return Triple::Err(e);\n+ }\n+ };\n+ for ctx in ctxs {\n match ctx.rec_get_var_info(ident, AccessKind::Attr, input, namespace) {\n- Ok(vi) => {\n+ Triple::Ok(vi) => {\n obj.ref_t().coerce();\n- return Ok(vi);\n+ return Triple::Ok(vi);\n }\n- Err(e) if e.core.kind == ErrorKind::NameError => {}\n- Err(e) => {\n- return Err(e);\n+ Triple::Err(e) => {\n+ return Triple::Err(e);\n }\n+ _ => {}\n }\n if let Some(ctx) = self.get_same_name_context(&ctx.name) {\n match ctx.rec_get_var_info(ident, AccessKind::Method, input, namespace) {\n- Ok(vi) => {\n- return Ok(vi);\n+ Triple::Ok(vi) => {\n+ return Triple::Ok(vi);\n }\n- Err(e) if e.core.kind == ErrorKind::NameError => {}\n- Err(e) => {\n- return Err(e);\n+ Triple::Err(e) => {\n+ return Triple::Err(e);\n }\n+ _ => {}\n }\n }\n }\n }\n- Err(TyCheckError::no_attr_error(\n+ /*Err(TyCheckError::no_attr_error(\n self.cfg.input.clone(),\n line!() as usize,\n ident.loc(),\n@@ -585,7 +612,8 @@ impl Context {\n &self_t,\n ident.inspect(),\n self.get_similar_attr(&self_t, ident.inspect()),\n- ))\n+ ))*/\n+ Triple::None\n }\n \n /// get type from given attributive type (Record).\n@@ -594,105 +622,43 @@ impl Context {\n &self,\n t: &Type,\n ident: &Identifier,\n- namespace: &Str,\n- ) -> SingleTyCheckResult<VarInfo> {\n+ ) -> Triple<VarInfo, TyCheckError> {\n match t {\n // (obj: Never).foo: Never\n- Type::Never => Ok(VarInfo::ILLEGAL.clone()),\n+ Type::Never => Triple::Ok(VarInfo::ILLEGAL.clone()),\n Type::FreeVar(fv) if fv.is_linked() => {\n- self.get_attr_info_from_attributive(&fv.crack(), ident, namespace)\n+ self.get_attr_info_from_attributive(&fv.crack(), ident)\n }\n Type::FreeVar(fv) /* if fv.is_unbound() */ => {\n let sup = fv.get_super().unwrap();\n- self.get_attr_info_from_attributive(&sup, ident, namespace)\n+ self.get_attr_info_from_attributive(&sup, ident)\n }\n- Type::Ref(t) => self.get_attr_info_from_attributive(t, ident, namespace),\n+ Type::Ref(t) => self.get_attr_info_from_attributive(t, ident),\n Type::RefMut { before, .. } => {\n- self.get_attr_info_from_attributive(before, ident, namespace)\n+ self.get_attr_info_from_attributive(before, ident)\n }\n Type::Refinement(refine) => {\n- self.get_attr_info_from_attributive(&refine.t, ident, namespace)\n+ self.get_attr_info_from_attributive(&refine.t, ident)\n }\n Type::Record(record) => {\n- if let Some(attr_t) = record.get(ident.inspect()) {\n+ if let Some((field, attr_t)) = record.get_key_value(ident.inspect()) {\n let muty = Mutability::from(&ident.inspect()[..]);\n let vi = VarInfo::new(\n attr_t.clone(),\n muty,\n- Public,\n+ Visibility::new(field.vis.clone(), Str::ever(\"<dummy>\")),\n VarKind::Builtin,\n None,\n None,\n None,\n AbsLocation::unknown(),\n );\n- Ok(vi)\n- } else {\n- Err(TyCheckError::no_attr_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- ident.loc(),\n- namespace.into(),\n- t,\n- ident.inspect(),\n- self.get_similar_attr(t, ident.inspect()),\n- ))\n- }\n- }\n- Type::Structural(t) => self.get_attr_info_from_attributive(t, ident, namespace),\n- other => {\n- if let Some(v) = self.rec_get_const_obj(&other.local_name()) {\n- match v {\n- ValueObj::Type(TypeObj::Generated(gen)) => self\n- .get_gen_t_require_attr_t(gen, &ident.inspect()[..])\n- .map(|attr_t| {\n- let muty = Mutability::from(&ident.inspect()[..]);\n- VarInfo::new(\n- attr_t.clone(),\n- muty,\n- Public,\n- VarKind::Builtin,\n- None,\n- None,\n- None,\n- AbsLocation::unknown(),\n- )\n- })\n- .ok_or_else(|| {\n- TyCheckError::no_attr_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- ident.loc(),\n- namespace.into(),\n- t,\n- ident.inspect(),\n- self.get_similar_attr(t, ident.inspect()),\n- )\n- }),\n- ValueObj::Type(TypeObj::Builtin(_t)) => {\n- // FIXME:\n- Err(TyCheckError::no_attr_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- ident.loc(),\n- namespace.into(),\n- _t,\n- ident.inspect(),\n- self.get_similar_attr(_t, ident.inspect()),\n- ))\n- }\n- _other => Err(TyCheckError::no_attr_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- ident.loc(),\n- namespace.into(),\n- t,\n- ident.inspect(),\n- self.get_similar_attr(t, ident.inspect()),\n- )),\n+ if let Err(err) = self.validate_visibility(ident, &vi, &self.cfg.input, self) {\n+ return Triple::Err(err);\n }\n+ Triple::Ok(vi)\n } else {\n- Err(TyCheckError::no_attr_error(\n+ /*Err(TyCheckError::no_attr_error(\n self.cfg.input.clone(),\n line!() as usize,\n ident.loc(),\n@@ -700,9 +666,12 @@ impl Context {\n t,\n ident.inspect(),\n self.get_similar_attr(t, ident.inspect()),\n- ))\n+ ))*/\n+ Triple::None\n }\n }\n+ Type::Structural(t) => self.get_attr_info_from_attributive(t, ident),\n+ _other => Triple::None,\n }\n }\n \n@@ -712,7 +681,7 @@ impl Context {\n obj: &hir::Expr,\n attr_name: &Option<Identifier>,\n input: &Input,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> SingleTyCheckResult<VarInfo> {\n if obj.ref_t() == Type::FAILURE {\n // (...Obj) -> Failure\n@@ -750,10 +719,16 @@ impl Context {\n obj: &hir::Expr,\n attr_name: &Identifier,\n input: &Input,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> SingleTyCheckResult<VarInfo> {\n- if let Ok(vi) = self.get_attr_info_from_attributive(obj.ref_t(), attr_name, namespace) {\n- return Ok(vi);\n+ match self.get_attr_info_from_attributive(obj.ref_t(), attr_name) {\n+ Triple::Ok(vi) => {\n+ return Ok(vi);\n+ }\n+ Triple::Err(e) => {\n+ return Err(e);\n+ }\n+ _ => {}\n }\n for ctx in self\n .get_nominal_super_type_ctxs(obj.ref_t())\n@@ -787,13 +762,13 @@ impl Context {\n }\n if let Some(ctx) = self.get_same_name_context(&ctx.name) {\n match ctx.rec_get_var_info(attr_name, AccessKind::Method, input, namespace) {\n- Ok(t) => {\n+ Triple::Ok(t) => {\n return Ok(t);\n }\n- Err(e) if e.core.kind == ErrorKind::NameError => {}\n- Err(e) => {\n+ Triple::Err(e) => {\n return Err(e);\n }\n+ Triple::None => {}\n }\n }\n }\n@@ -820,7 +795,7 @@ impl Context {\n self.cfg.input.clone(),\n line!() as usize,\n attr_name.loc(),\n- namespace.into(),\n+ namespace.name.to_string(),\n obj.qual_name().unwrap_or(\"?\"),\n obj.ref_t(),\n attr_name.inspect(),\n@@ -863,7 +838,7 @@ impl Context {\n self.cfg.input.clone(),\n line!() as usize,\n attr_name.loc(),\n- namespace.into(),\n+ namespace.name.to_string(),\n obj.ref_t(),\n attr_name.inspect(),\n self.get_similar_attr(obj.ref_t(), attr_name.inspect()),\n@@ -875,34 +850,19 @@ impl Context {\n ident: &Identifier,\n vi: &VarInfo,\n input: &Input,\n- namespace: &str,\n+ namespace: &Context,\n ) -> SingleTyCheckResult<()> {\n- if ident.vis() != vi.vis {\n- Err(TyCheckError::visibility_error(\n- input.clone(),\n- line!() as usize,\n- ident.loc(),\n- self.caused_by(),\n- ident.inspect(),\n- vi.vis,\n- ))\n- // check if the private variable is loaded from the other scope\n- } else if vi.vis.is_private()\n- && &self.name[..] != \"<builtins>\"\n- && &self.name[..] != namespace\n- && !namespace.contains(&self.name[..])\n- {\n- log!(err \"{namespace}/{}\", self.name);\n+ if vi.vis.compatible(&ident.acc_kind(), namespace) {\n+ Ok(())\n+ } else {\n Err(TyCheckError::visibility_error(\n input.clone(),\n line!() as usize,\n ident.loc(),\n self.caused_by(),\n ident.inspect(),\n- Private,\n+ vi.vis.clone(),\n ))\n- } else {\n- Ok(())\n }\n }\n \n@@ -931,18 +891,20 @@ impl Context {\n op: &Token,\n args: &[hir::PosArg],\n input: &Input,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> TyCheckResult<VarInfo> {\n erg_common::debug_power_assert!(args.len() == 2);\n let cont = binop_to_dname(op.inspect());\n // not a `Token::from_str(op.kind, cont)` because ops are defined as symbols\n let symbol = Token::symbol(cont);\n- let t = self.rec_get_var_info(\n- &Identifier::new(None, VarName::new(symbol.clone())),\n- AccessKind::Name,\n- input,\n- namespace,\n- )?;\n+ let t = self\n+ .rec_get_var_info(\n+ &Identifier::private_from_token(symbol.clone()),\n+ AccessKind::Name,\n+ input,\n+ namespace,\n+ )\n+ .unwrap_to_result()?;\n let op = hir::Expr::Accessor(hir::Accessor::private(symbol, t));\n self.get_call_t(&op, &None, args, &[], input, namespace)\n .map_err(|(_, errs)| {\n@@ -952,7 +914,7 @@ impl Context {\n let vi = op_ident.vi.clone();\n let lhs = args[0].expr.clone();\n let rhs = args[1].expr.clone();\n- let bin = hir::BinOp::new(op_ident.name.into_token(), lhs, rhs, vi);\n+ let bin = hir::BinOp::new(op_ident.raw.name.into_token(), lhs, rhs, vi);\n let errs = errs\n .into_iter()\n .map(|e| self.append_loc_info(e, bin.loc()))\n@@ -966,17 +928,19 @@ impl Context {\n op: &Token,\n args: &[hir::PosArg],\n input: &Input,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> TyCheckResult<VarInfo> {\n erg_common::debug_power_assert!(args.len() == 1);\n let cont = unaryop_to_dname(op.inspect());\n let symbol = Token::symbol(cont);\n- let vi = self.rec_get_var_info(\n- &Identifier::new(None, VarName::new(symbol.clone())),\n- AccessKind::Name,\n- input,\n- namespace,\n- )?;\n+ let vi = self\n+ .rec_get_var_info(\n+ &Identifier::private_from_token(symbol.clone()),\n+ AccessKind::Name,\n+ input,\n+ namespace,\n+ )\n+ .unwrap_to_result()?;\n let op = hir::Expr::Accessor(hir::Accessor::private(symbol, vi));\n self.get_call_t(&op, &None, args, &[], input, namespace)\n .map_err(|(_, errs)| {\n@@ -985,7 +949,7 @@ impl Context {\n };\n let vi = op_ident.vi.clone();\n let expr = args[0].expr.clone();\n- let unary = hir::UnaryOp::new(op_ident.name.into_token(), expr, vi);\n+ let unary = hir::UnaryOp::new(op_ident.raw.name.into_token(), expr, vi);\n let errs = errs\n .into_iter()\n .map(|e| self.append_loc_info(e, unary.loc()))\n@@ -1118,10 +1082,8 @@ impl Context {\n if is_method {\n obj.clone()\n } else {\n- let attr = hir::Attribute::new(\n- obj.clone(),\n- hir::Identifier::bare(ident.dot.clone(), ident.name.clone()),\n- );\n+ let attr =\n+ hir::Attribute::new(obj.clone(), hir::Identifier::bare(ident.clone()));\n hir::Expr::Accessor(hir::Accessor::Attr(attr))\n }\n } else {\n@@ -1272,10 +1234,10 @@ impl Context {\n }\n }\n other => {\n- let one = self.get_singular_ctx_by_hir_expr(obj, &self.name).ok();\n+ let one = self.get_singular_ctx_by_hir_expr(obj, self).ok();\n let one = one\n .zip(attr_name.as_ref())\n- .and_then(|(ctx, attr)| ctx.get_singular_ctx_by_ident(attr, &self.name).ok())\n+ .and_then(|(ctx, attr)| ctx.get_singular_ctx_by_ident(attr, self).ok())\n .or(one);\n let two = obj\n .qual_name()\n@@ -1354,7 +1316,8 @@ impl Context {\n ))\n } else {\n let unknown_arg_errors = unknown_args.into_iter().map(|arg| {\n- let similar = get_similar_name(subr_ty.param_names(), arg.keyword.inspect());\n+ let similar =\n+ levenshtein::get_similar_name(subr_ty.param_names(), arg.keyword.inspect());\n TyCheckError::unexpected_kw_arg_error(\n self.cfg.input.clone(),\n line!() as usize,\n@@ -1550,7 +1513,8 @@ impl Context {\n )\n })?;\n } else {\n- let similar = get_similar_name(subr_ty.param_names(), arg.keyword.inspect());\n+ let similar =\n+ levenshtein::get_similar_name(subr_ty.param_names(), arg.keyword.inspect());\n return Err(TyCheckErrors::from(TyCheckError::unexpected_kw_arg_error(\n self.cfg.input.clone(),\n line!() as usize,\n@@ -1571,7 +1535,7 @@ impl Context {\n pos_args: &[hir::PosArg],\n kw_args: &[hir::KwArg],\n input: &Input,\n- namespace: &Str,\n+ namespace: &Context,\n ) -> Result<VarInfo, (Option<VarInfo>, TyCheckErrors)> {\n if let hir::Expr::Accessor(hir::Accessor::Ident(local)) = obj {\n if local.vis().is_private() {\n@@ -1692,18 +1656,27 @@ impl Context {\n }\n \n pub(crate) fn get_similar_name(&self, name: &str) -> Option<&str> {\n- get_similar_name(\n+ levenshtein::get_similar_name(\n self.dir().into_iter().map(|(vn, _)| &vn.inspect()[..]),\n name,\n )\n }\n \n+ pub(crate) fn get_similar_name_and_info(&self, name: &str) -> Option<(&VarInfo, &str)> {\n+ levenshtein::get_similar_name_and_some(\n+ self.dir()\n+ .into_iter()\n+ .map(|(vn, vi)| (vi, &vn.inspect()[..])),\n+ name,\n+ )\n+ }\n+\n pub(crate) fn get_similar_attr_from_singular<'a>(\n &'a self,\n obj: &hir::Expr,\n name: &str,\n ) -> Option<&'a str> {\n- if let Ok(ctx) = self.get_singular_ctx_by_hir_expr(obj, &self.name) {\n+ if let Ok(ctx) = self.get_singular_ctx_by_hir_expr(obj, self) {\n if let Some(name) = ctx.get_similar_name(name) {\n return Some(name);\n }\n@@ -1720,6 +1693,19 @@ impl Context {\n None\n }\n \n+ pub(crate) fn get_similar_attr_and_info<'a>(\n+ &'a self,\n+ self_t: &'a Type,\n+ name: &str,\n+ ) -> Option<(&'a VarInfo, &'a str)> {\n+ for ctx in self.get_nominal_super_type_ctxs(self_t)? {\n+ if let Some((vi, name)) = ctx.get_similar_name_and_info(name) {\n+ return Some((vi, name));\n+ }\n+ }\n+ None\n+ }\n+\n // Returns what kind of variance the type has for each parameter Type.\n // Invariant for types not specified\n // self\u304c\u793a\u3059\u578b\u304c\u3001\u5404\u30d1\u30e9\u30e1\u30fc\u30bfType\u306b\u5bfe\u3057\u3066\u3069\u306e\u3088\u3046\u306a\u5909\u6027Variance\u3092\u6301\u3064\u304b\u3092\u8fd4\u3059\n@@ -2166,7 +2152,7 @@ impl Context {\n {\n normalize_path(path)\n } else {\n- todo!(\"{} {}\", path.display(), add.display())\n+ todo!(\"{} // {}\", path.display(), add.display())\n }\n }\n \n@@ -2423,7 +2409,11 @@ impl Context {\n }\n }\n \n- fn get_gen_t_require_attr_t<'a>(&'a self, gen: &'a GenTypeObj, attr: &str) -> Option<&'a Type> {\n+ fn _get_gen_t_require_attr_t<'a>(\n+ &'a self,\n+ gen: &'a GenTypeObj,\n+ attr: &str,\n+ ) -> Option<&'a Type> {\n match gen.base_or_sup().map(|req_sup| req_sup.typ()) {\n Some(Type::Record(rec)) => {\n if let Some(t) = rec.get(attr) {\n@@ -2433,7 +2423,7 @@ impl Context {\n Some(other) => {\n let obj = self.rec_get_const_obj(&other.local_name());\n let obj = option_enum_unwrap!(obj, Some:(ValueObj::Type:(TypeObj::Generated:(_))))?;\n- if let Some(t) = self.get_gen_t_require_attr_t(obj, attr) {\n+ if let Some(t) = self._get_gen_t_require_attr_t(obj, attr) {\n return Some(t);\n }\n }\n", "instantiate.rs": "@@ -3,96 +3,24 @@ use std::mem;\n use std::option::Option; // conflicting to Type::Option\n \n use erg_common::dict::Dict;\n+use erg_common::enum_unwrap;\n #[allow(unused)]\n use erg_common::log;\n use erg_common::set::Set;\n-use erg_common::traits::{Locational, Stream};\n-use erg_common::vis::Field;\n+use erg_common::traits::Locational;\n use erg_common::Str;\n-use erg_common::{assume_unreachable, dict, enum_unwrap, set, try_map_mut};\n-\n-use ast::{\n- NonDefaultParamSignature, ParamTySpec, PreDeclTypeSpec, SimpleTypeSpec, TypeBoundSpec,\n- TypeBoundSpecs, TypeSpec,\n-};\n-use erg_parser::ast;\n-use erg_parser::token::TokenKind;\n-use erg_parser::Parser;\n \n use crate::feature_error;\n use crate::ty::constructors::*;\n-use crate::ty::free::CanbeFree;\n use crate::ty::free::{Constraint, HasLevel};\n-use crate::ty::typaram::TyParamLambda;\n-use crate::ty::typaram::{IntervalOp, OpKind, TyParam, TyParamOrdering};\n-use crate::ty::value::ValueObj;\n-use crate::ty::SubrType;\n-use crate::ty::{HasType, ParamTy, Predicate, SubrKind, Type};\n-use crate::type_feature_error;\n-use crate::unreachable_error;\n-use TyParamOrdering::*;\n+use crate::ty::typaram::{TyParam, TyParamLambda};\n+use crate::ty::{HasType, Predicate, Type};\n+use crate::{type_feature_error, unreachable_error};\n use Type::*;\n \n-use crate::context::{Context, DefaultInfo, RegistrationMode};\n+use crate::context::Context;\n use crate::error::{TyCheckError, TyCheckErrors, TyCheckResult};\n use crate::hir;\n-use crate::AccessKind;\n-use RegistrationMode::*;\n-\n-pub fn token_kind_to_op_kind(kind: TokenKind) -> Option<OpKind> {\n- match kind {\n- TokenKind::Plus => Some(OpKind::Add),\n- TokenKind::Minus => Some(OpKind::Sub),\n- TokenKind::Star => Some(OpKind::Mul),\n- TokenKind::Slash => Some(OpKind::Div),\n- TokenKind::FloorDiv => Some(OpKind::FloorDiv),\n- TokenKind::Mod => Some(OpKind::Mod),\n- TokenKind::Pow => Some(OpKind::Pow),\n- TokenKind::PrePlus => Some(OpKind::Pos),\n- TokenKind::PreMinus => Some(OpKind::Neg),\n- TokenKind::PreBitNot => Some(OpKind::Invert),\n- TokenKind::Equal => Some(OpKind::Eq),\n- TokenKind::NotEq => Some(OpKind::Ne),\n- TokenKind::Less => Some(OpKind::Lt),\n- TokenKind::LessEq => Some(OpKind::Le),\n- TokenKind::Gre => Some(OpKind::Gt),\n- TokenKind::GreEq => Some(OpKind::Ge),\n- TokenKind::AndOp => Some(OpKind::And),\n- TokenKind::OrOp => Some(OpKind::Or),\n- TokenKind::BitAnd => Some(OpKind::BitAnd),\n- TokenKind::BitOr => Some(OpKind::BitOr),\n- TokenKind::BitXor => Some(OpKind::BitXor),\n- TokenKind::Shl => Some(OpKind::Shl),\n- TokenKind::Shr => Some(OpKind::Shr),\n- _ => None,\n- }\n-}\n-\n-#[derive(Debug, Clone, PartialEq, Eq)]\n-pub enum ParamKind {\n- NonDefault,\n- Default(Type),\n- VarParams,\n- KwParams,\n-}\n-\n-impl ParamKind {\n- pub const fn is_var_params(&self) -> bool {\n- matches!(self, ParamKind::VarParams)\n- }\n- pub const fn is_kw_params(&self) -> bool {\n- matches!(self, ParamKind::KwParams)\n- }\n- pub const fn is_default(&self) -> bool {\n- matches!(self, ParamKind::Default(_))\n- }\n- pub const fn default_info(&self) -> DefaultInfo {\n- match self {\n- ParamKind::Default(_) => DefaultInfo::WithDefault,\n- _ => DefaultInfo::NonDefault,\n- }\n- }\n-}\n \n /// Context for instantiating a quantified type\n /// For example, cloning each type variable of quantified type `?T -> ?T` would result in `?1 -> ?2`.\n@@ -244,1072 +172,7 @@ impl TyVarCache {\n }\n }\n \n-/// TODO: this struct will be removed when const functions are implemented.\n-#[derive(Debug, Clone, PartialEq, Eq, Hash)]\n-pub enum ConstTemplate {\n- Obj(ValueObj),\n- App {\n- name: Str,\n- non_default_args: Vec<Type>,\n- default_args: Vec<ConstTemplate>,\n- },\n-}\n-\n-impl ConstTemplate {\n- pub const fn app(\n- name: &'static str,\n- non_default_args: Vec<Type>,\n- default_args: Vec<ConstTemplate>,\n- ) -> Self {\n- ConstTemplate::App {\n- name: Str::ever(name),\n- non_default_args,\n- default_args,\n- }\n- }\n-}\n-\n impl Context {\n- pub(crate) fn instantiate_var_sig_t(\n- &self,\n- t_spec: Option<&TypeSpec>,\n- mode: RegistrationMode,\n- ) -> TyCheckResult<Type> {\n- let mut tmp_tv_cache = TyVarCache::new(self.level, self);\n- let spec_t = if let Some(t_spec) = t_spec {\n- self.instantiate_typespec(t_spec, None, &mut tmp_tv_cache, mode, false)?\n- } else {\n- free_var(self.level, Constraint::new_type_of(Type))\n- };\n- Ok(spec_t)\n- }\n-\n- pub(crate) fn instantiate_sub_sig_t(\n- &self,\n- sig: &ast::SubrSignature,\n- default_ts: Vec<Type>,\n- mode: RegistrationMode,\n- ) -> Result<Type, (TyCheckErrors, Type)> {\n- let mut errs = TyCheckErrors::empty();\n- // -> Result<Type, (Type, TyCheckErrors)> {\n- let opt_decl_sig_t = match self\n- .rec_get_decl_info(&sig.ident, AccessKind::Name, &self.cfg.input, &self.name)\n- .ok()\n- .map(|vi| vi.t)\n- {\n- Some(Type::Subr(subr)) => Some(subr),\n- Some(Type::FreeVar(fv)) if fv.is_unbound() => return Ok(Type::FreeVar(fv)),\n- Some(other) => {\n- let err = TyCheckError::unreachable(\n- self.cfg.input.clone(),\n- \"instantiate_sub_sig_t\",\n- line!(),\n- );\n- return Err((TyCheckErrors::from(err), other));\n- }\n- None => None,\n- };\n- let mut tmp_tv_cache = self\n- .instantiate_ty_bounds(&sig.bounds, PreRegister)\n- .map_err(|errs| (errs, Type::Failure))?;\n- let mut non_defaults = vec![];\n- for (n, param) in sig.params.non_defaults.iter().enumerate() {\n- let opt_decl_t = opt_decl_sig_t\n- .as_ref()\n- .and_then(|subr| subr.non_default_params.get(n));\n- match self.instantiate_param_ty(\n- param,\n- opt_decl_t,\n- &mut tmp_tv_cache,\n- mode,\n- ParamKind::NonDefault,\n- ) {\n- Ok(pt) => non_defaults.push(pt),\n- Err(es) => {\n- errs.extend(es);\n- non_defaults.push(ParamTy::pos(param.inspect().cloned(), Type::Failure));\n- }\n- }\n- }\n- let var_args = if let Some(var_args) = sig.params.var_params.as_ref() {\n- let opt_decl_t = opt_decl_sig_t\n- .as_ref()\n- .and_then(|subr| subr.var_params.as_ref().map(|v| v.as_ref()));\n- let pt = match self.instantiate_param_ty(\n- var_args,\n- opt_decl_t,\n- &mut tmp_tv_cache,\n- mode,\n- ParamKind::VarParams,\n- ) {\n- Ok(pt) => pt,\n- Err(es) => {\n- errs.extend(es);\n- ParamTy::pos(var_args.inspect().cloned(), Type::Failure)\n- }\n- };\n- Some(pt)\n- } else {\n- None\n- };\n- let mut defaults = vec![];\n- for ((n, p), default_t) in sig.params.defaults.iter().enumerate().zip(default_ts) {\n- let opt_decl_t = opt_decl_sig_t\n- .as_ref()\n- .and_then(|subr| subr.default_params.get(n));\n- match self.instantiate_param_ty(\n- &p.sig,\n- opt_decl_t,\n- &mut tmp_tv_cache,\n- mode,\n- ParamKind::Default(default_t),\n- ) {\n- Ok(pt) => defaults.push(pt),\n- Err(es) => {\n- errs.extend(es);\n- defaults.push(ParamTy::pos(p.sig.inspect().cloned(), Type::Failure));\n- }\n- }\n- }\n- let spec_return_t = if let Some(t_spec) = sig.return_t_spec.as_ref() {\n- let opt_decl_t = opt_decl_sig_t\n- .as_ref()\n- .map(|subr| ParamTy::anonymous(subr.return_t.as_ref().clone()));\n- match self.instantiate_typespec(\n- t_spec,\n- opt_decl_t.as_ref(),\n- &mut tmp_tv_cache,\n- mode,\n- false,\n- ) {\n- Ok(ty) => ty,\n- Err(es) => {\n- errs.extend(es);\n- Type::Failure\n- }\n- }\n- } else {\n- // preregister\u306a\u3089outer scope\u3067\u578b\u5ba3\u8a00(see inference.md)\n- let level = if mode == PreRegister {\n- self.level\n- } else {\n- self.level + 1\n- };\n- free_var(level, Constraint::new_type_of(Type))\n- };\n- let typ = if sig.ident.is_procedural() {\n- proc(non_defaults, var_args, defaults, spec_return_t)\n- } else {\n- func(non_defaults, var_args, defaults, spec_return_t)\n- };\n- if errs.is_empty() {\n- Ok(typ)\n- } else {\n- Err((errs, typ))\n- }\n- }\n-\n- /// spec_t == None\u304b\u3064\u30ea\u30c6\u30e9\u30eb\u63a8\u8ad6\u304c\u4e0d\u53ef\u80fd\u306a\u3089\u578b\u5909\u6570\u3092\u767a\u884c\u3059\u308b\n- pub(crate) fn instantiate_param_sig_t(\n- &self,\n- sig: &NonDefaultParamSignature,\n- opt_decl_t: Option<&ParamTy>,\n- tmp_tv_cache: &mut TyVarCache,\n- mode: RegistrationMode,\n- kind: ParamKind,\n- ) -> TyCheckResult<Type> {\n- let gen_free_t = || {\n- let level = if mode == PreRegister {\n- self.level\n- } else {\n- self.level + 1\n- };\n- free_var(level, Constraint::new_type_of(Type))\n- };\n- let spec_t = if let Some(spec_with_op) = &sig.t_spec {\n- self.instantiate_typespec(&spec_with_op.t_spec, opt_decl_t, tmp_tv_cache, mode, false)?\n- } else {\n- match &sig.pat {\n- ast::ParamPattern::Lit(lit) => v_enum(set![self.eval_lit(lit)?]),\n- ast::ParamPattern::Discard(_) => Type::Obj,\n- ast::ParamPattern::Ref(_) => ref_(gen_free_t()),\n- ast::ParamPattern::RefMut(_) => ref_mut(gen_free_t(), None),\n- // ast::ParamPattern::VarName(name) if &name.inspect()[..] == \"_\" => Type::Obj,\n- // TODO: Array<Lit>\n- _ => gen_free_t(),\n- }\n- };\n- if let Some(decl_pt) = opt_decl_t {\n- if kind.is_var_params() {\n- let spec_t = unknown_len_array_t(spec_t.clone());\n- self.sub_unify(\n- decl_pt.typ(),\n- &spec_t,\n- &sig.t_spec.as_ref().ok_or(sig),\n- None,\n- )?;\n- } else {\n- self.sub_unify(\n- decl_pt.typ(),\n- &spec_t,\n- &sig.t_spec.as_ref().ok_or(sig),\n- None,\n- )?;\n- }\n- }\n- Ok(spec_t)\n- }\n-\n- pub(crate) fn instantiate_param_ty(\n- &self,\n- sig: &NonDefaultParamSignature,\n- opt_decl_t: Option<&ParamTy>,\n- tmp_tv_cache: &mut TyVarCache,\n- mode: RegistrationMode,\n- kind: ParamKind,\n- ) -> TyCheckResult<ParamTy> {\n- let t = self.instantiate_param_sig_t(sig, opt_decl_t, tmp_tv_cache, mode, kind.clone())?;\n- match (sig.inspect(), kind) {\n- (Some(name), ParamKind::Default(default_t)) => {\n- Ok(ParamTy::kw_default(name.clone(), t, default_t))\n- }\n- (Some(name), _) => Ok(ParamTy::kw(name.clone(), t)),\n- (None, _) => Ok(ParamTy::anonymous(t)),\n- }\n- }\n-\n- pub(crate) fn instantiate_predecl_t(\n- &self,\n- predecl: &PreDeclTypeSpec,\n- opt_decl_t: Option<&ParamTy>,\n- tmp_tv_cache: &mut TyVarCache,\n- not_found_is_qvar: bool,\n- ) -> TyCheckResult<Type> {\n- match predecl {\n- ast::PreDeclTypeSpec::Simple(simple) => {\n- self.instantiate_simple_t(simple, opt_decl_t, tmp_tv_cache, not_found_is_qvar)\n- }\n- ast::PreDeclTypeSpec::Attr { namespace, t } => {\n- if let Ok(receiver) = Parser::validate_const_expr(namespace.as_ref().clone()) {\n- if let Ok(receiver_t) =\n- self.instantiate_const_expr_as_type(&receiver, None, tmp_tv_cache)\n- {\n- let rhs = t.ident.inspect();\n- return Ok(proj(receiver_t, rhs));\n- }\n- }\n- let ctx = self.get_singular_ctx(namespace.as_ref(), &self.name)?;\n- if let Some((typ, _)) = ctx.rec_local_get_type(t.ident.inspect()) {\n- let vi = ctx\n- .rec_get_var_info(&t.ident, AccessKind::Name, &self.cfg.input, &self.name)\n- .unwrap();\n- self.inc_ref(&vi, &t.ident.name);\n- // TODO: visibility check\n- Ok(typ.clone())\n- } else {\n- Err(TyCheckErrors::from(TyCheckError::no_var_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- t.loc(),\n- self.caused_by(),\n- t.ident.inspect(),\n- self.get_similar_name(t.ident.inspect()),\n- )))\n- }\n- }\n- other => type_feature_error!(self, other.loc(), &format!(\"instantiating type {other}\")),\n- }\n- }\n-\n- pub(crate) fn instantiate_simple_t(\n- &self,\n- simple: &SimpleTypeSpec,\n- opt_decl_t: Option<&ParamTy>,\n- tmp_tv_cache: &mut TyVarCache,\n- not_found_is_qvar: bool,\n- ) -> TyCheckResult<Type> {\n- self.inc_ref_simple_typespec(simple);\n- match &simple.ident.inspect()[..] {\n- \"_\" | \"Obj\" => Ok(Type::Obj),\n- \"Nat\" => Ok(Type::Nat),\n- \"Int\" => Ok(Type::Int),\n- \"Ratio\" => Ok(Type::Ratio),\n- \"Float\" => Ok(Type::Float),\n- \"Str\" => Ok(Type::Str),\n- \"Bool\" => Ok(Type::Bool),\n- \"NoneType\" => Ok(Type::NoneType),\n- \"Ellipsis\" => Ok(Type::Ellipsis),\n- \"NotImplemented\" => Ok(Type::NotImplementedType),\n- \"Inf\" => Ok(Type::Inf),\n- \"NegInf\" => Ok(Type::NegInf),\n- \"Never\" => Ok(Type::Never),\n- \"ClassType\" => Ok(Type::ClassType),\n- \"TraitType\" => Ok(Type::TraitType),\n- \"Type\" => Ok(Type::Type),\n- \"Array\" => {\n- // TODO: kw\n- let mut args = simple.args.pos_args();\n- if let Some(first) = args.next() {\n- let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n- let len = if let Some(len) = args.next() {\n- self.instantiate_const_expr(&len.expr, None, tmp_tv_cache)?\n- } else {\n- TyParam::erased(Nat)\n- };\n- Ok(array_t(t, len))\n- } else {\n- Ok(mono(\"GenericArray\"))\n- }\n- }\n- \"Ref\" => {\n- let mut args = simple.args.pos_args();\n- let Some(first) = args.next() else {\n- return Err(TyCheckErrors::from(TyCheckError::args_missing_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- simple.args.loc(),\n- \"Ref\",\n- self.caused_by(),\n- vec![Str::from(\"T\")],\n- )));\n- };\n- let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n- Ok(ref_(t))\n- }\n- \"RefMut\" => {\n- // TODO after\n- let mut args = simple.args.pos_args();\n- let Some(first) = args.next() else {\n- return Err(TyCheckErrors::from(TyCheckError::args_missing_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- simple.args.loc(),\n- \"RefMut\",\n- self.caused_by(),\n- vec![Str::from(\"T\")],\n- )));\n- };\n- let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n- Ok(ref_mut(t, None))\n- }\n- \"Structural\" => {\n- let mut args = simple.args.pos_args();\n- let Some(first) = args.next() else {\n- return Err(TyCheckErrors::from(TyCheckError::args_missing_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- simple.args.loc(),\n- \"Structural\",\n- self.caused_by(),\n- vec![Str::from(\"Type\")],\n- )));\n- };\n- let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n- Ok(t.structuralize())\n- }\n- \"Self\" => self.rec_get_self_t().ok_or_else(|| {\n- TyCheckErrors::from(TyCheckError::unreachable(\n- self.cfg.input.clone(),\n- erg_common::fn_name_full!(),\n- line!(),\n- ))\n- }),\n- other if simple.args.is_empty() => {\n- if let Some(t) = tmp_tv_cache.get_tyvar(other) {\n- return Ok(t.clone());\n- } else if let Some(tp) = tmp_tv_cache.get_typaram(other) {\n- let t = enum_unwrap!(tp, TyParam::Type);\n- return Ok(t.as_ref().clone());\n- }\n- if let Some(tv_cache) = &self.tv_cache {\n- if let Some(t) = tv_cache.get_tyvar(other) {\n- return Ok(t.clone());\n- } else if let Some(tp) = tv_cache.get_typaram(other) {\n- let t = enum_unwrap!(tp, TyParam::Type);\n- return Ok(t.as_ref().clone());\n- }\n- }\n- if let Some(outer) = &self.outer {\n- if let Ok(t) = outer.instantiate_simple_t(\n- simple,\n- opt_decl_t,\n- tmp_tv_cache,\n- not_found_is_qvar,\n- ) {\n- return Ok(t);\n- }\n- }\n- if let Some(decl_t) = opt_decl_t {\n- return Ok(decl_t.typ().clone());\n- }\n- if let Some((typ, _)) = self.get_type(simple.ident.inspect()) {\n- Ok(typ.clone())\n- } else if not_found_is_qvar {\n- let tyvar = named_free_var(Str::rc(other), self.level, Constraint::Uninited);\n- tmp_tv_cache.push_or_init_tyvar(simple.ident.inspect(), &tyvar);\n- Ok(tyvar)\n- } else {\n- Err(TyCheckErrors::from(TyCheckError::no_type_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- simple.loc(),\n- self.caused_by(),\n- other,\n- self.get_similar_name(other),\n- )))\n- }\n- }\n- other => {\n- let ctx = if let Some((_, ctx)) = self.get_type(&Str::rc(other)) {\n- ctx\n- } else {\n- return Err(TyCheckErrors::from(TyCheckError::no_type_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- simple.ident.loc(),\n- self.caused_by(),\n- other,\n- self.get_similar_name(other),\n- )));\n- };\n- // FIXME: kw args\n- let mut new_params = vec![];\n- for (i, arg) in simple.args.pos_args().enumerate() {\n- let params =\n- self.instantiate_const_expr(&arg.expr, Some((ctx, i)), tmp_tv_cache);\n- let params = params.or_else(|e| {\n- if not_found_is_qvar {\n- let name = arg.expr.to_string();\n- // FIXME: handle `::` as a right way\n- let name = Str::rc(name.trim_start_matches(\"::\"));\n- let tp = TyParam::named_free_var(\n- name.clone(),\n- self.level,\n- Constraint::Uninited,\n- );\n- tmp_tv_cache.push_or_init_typaram(&name, &tp);\n- Ok(tp)\n- } else {\n- Err(e)\n- }\n- })?;\n- new_params.push(params);\n- }\n- // FIXME: non-builtin\n- Ok(poly(Str::rc(other), new_params))\n- }\n- }\n- }\n-\n- fn instantiate_local(\n- &self,\n- name: &Str,\n- erased_idx: Option<(&Context, usize)>,\n- tmp_tv_cache: &mut TyVarCache,\n- loc: &impl Locational,\n- ) -> TyCheckResult<TyParam> {\n- if &name[..] == \"_\" {\n- let t = if let Some((ctx, i)) = erased_idx {\n- ctx.params[i].1.t.clone()\n- } else {\n- Type::Uninited\n- };\n- return Ok(TyParam::erased(t));\n- }\n- if let Some(tp) = tmp_tv_cache.get_typaram(name) {\n- return Ok(tp.clone());\n- } else if let Some(t) = tmp_tv_cache.get_tyvar(name) {\n- return Ok(TyParam::t(t.clone()));\n- }\n- if let Some(tv_ctx) = &self.tv_cache {\n- if let Some(t) = tv_ctx.get_tyvar(name) {\n- return Ok(TyParam::t(t.clone()));\n- } else if let Some(tp) = tv_ctx.get_typaram(name) {\n- return Ok(tp.clone());\n- }\n- }\n- if let Some(value) = self.rec_get_const_obj(name) {\n- return Ok(TyParam::Value(value.clone()));\n- }\n- Err(TyCheckErrors::from(TyCheckError::no_var_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- loc.loc(),\n- self.caused_by(),\n- name,\n- self.get_similar_name(name),\n- )))\n- }\n-\n- pub(crate) fn instantiate_const_expr(\n- &self,\n- expr: &ast::ConstExpr,\n- erased_idx: Option<(&Context, usize)>,\n- tmp_tv_cache: &mut TyVarCache,\n- ) -> TyCheckResult<TyParam> {\n- match expr {\n- ast::ConstExpr::Lit(lit) => Ok(TyParam::Value(self.eval_lit(lit)?)),\n- ast::ConstExpr::Accessor(ast::ConstAccessor::Attr(attr)) => {\n- let obj = self.instantiate_const_expr(&attr.obj, erased_idx, tmp_tv_cache)?;\n- Ok(obj.proj(attr.name.inspect()))\n- }\n- ast::ConstExpr::Accessor(ast::ConstAccessor::Local(local)) => {\n- self.inc_ref_const_local(local);\n- self.instantiate_local(local.inspect(), erased_idx, tmp_tv_cache, local)\n- }\n- ast::ConstExpr::Array(array) => {\n- let mut tp_arr = vec![];\n- for (i, elem) in array.elems.pos_args().enumerate() {\n- let el =\n- self.instantiate_const_expr(&elem.expr, Some((self, i)), tmp_tv_cache)?;\n- tp_arr.push(el);\n- }\n- Ok(TyParam::Array(tp_arr))\n- }\n- ast::ConstExpr::Set(set) => {\n- let mut tp_set = set! {};\n- for (i, elem) in set.elems.pos_args().enumerate() {\n- let el =\n- self.instantiate_const_expr(&elem.expr, Some((self, i)), tmp_tv_cache)?;\n- tp_set.insert(el);\n- }\n- Ok(TyParam::Set(tp_set))\n- }\n- ast::ConstExpr::Dict(dict) => {\n- let mut tp_dict = dict! {};\n- for (i, elem) in dict.kvs.iter().enumerate() {\n- let key =\n- self.instantiate_const_expr(&elem.key, Some((self, i)), tmp_tv_cache)?;\n- let val =\n- self.instantiate_const_expr(&elem.value, Some((self, i)), tmp_tv_cache)?;\n- tp_dict.insert(key, val);\n- }\n- Ok(TyParam::Dict(tp_dict))\n- }\n- ast::ConstExpr::Tuple(tuple) => {\n- let mut tp_tuple = vec![];\n- for (i, elem) in tuple.elems.pos_args().enumerate() {\n- let el =\n- self.instantiate_const_expr(&elem.expr, Some((self, i)), tmp_tv_cache)?;\n- tp_tuple.push(el);\n- }\n- Ok(TyParam::Tuple(tp_tuple))\n- }\n- ast::ConstExpr::Record(rec) => {\n- let mut tp_rec = dict! {};\n- for attr in rec.attrs.iter() {\n- let field = Field::new(attr.ident.vis(), attr.ident.inspect().clone());\n- let val = self.instantiate_const_expr(\n- attr.body.block.get(0).unwrap(),\n- None,\n- tmp_tv_cache,\n- )?;\n- tp_rec.insert(field, val);\n- }\n- Ok(TyParam::Record(tp_rec))\n- }\n- ast::ConstExpr::Lambda(lambda) => {\n- let mut _tmp_tv_cache =\n- self.instantiate_ty_bounds(&lambda.sig.bounds, RegistrationMode::Normal)?;\n- let tmp_tv_cache = if tmp_tv_cache.is_empty() {\n- &mut _tmp_tv_cache\n- } else {\n- // TODO: prohibit double quantification\n- tmp_tv_cache\n- };\n- let mut nd_params = Vec::with_capacity(lambda.sig.params.non_defaults.len());\n- for sig in lambda.sig.params.non_defaults.iter() {\n- let pt = self.instantiate_param_ty(\n- sig,\n- None,\n- tmp_tv_cache,\n- RegistrationMode::Normal,\n- ParamKind::NonDefault,\n- )?;\n- nd_params.push(pt);\n- }\n- let var_params = if let Some(p) = lambda.sig.params.var_params.as_ref() {\n- let pt = self.instantiate_param_ty(\n- p,\n- None,\n- tmp_tv_cache,\n- RegistrationMode::Normal,\n- ParamKind::VarParams,\n- )?;\n- Some(pt)\n- } else {\n- None\n- };\n- let mut d_params = Vec::with_capacity(lambda.sig.params.defaults.len());\n- for sig in lambda.sig.params.defaults.iter() {\n- let expr = self.eval_const_expr(&sig.default_val)?;\n- let pt = self.instantiate_param_ty(\n- &sig.sig,\n- None,\n- tmp_tv_cache,\n- RegistrationMode::Normal,\n- ParamKind::Default(expr.t()),\n- )?;\n- d_params.push(pt);\n- }\n- let mut body = vec![];\n- for expr in lambda.body.iter() {\n- let param = self.instantiate_const_expr(expr, None, tmp_tv_cache)?;\n- body.push(param);\n- }\n- Ok(TyParam::Lambda(TyParamLambda::new(\n- lambda.clone(),\n- nd_params,\n- var_params,\n- d_params,\n- body,\n- )))\n- }\n- ast::ConstExpr::BinOp(bin) => {\n- let Some(op) = token_kind_to_op_kind(bin.op.kind) else {\n- return type_feature_error!(\n- self,\n- bin.loc(),\n- &format!(\"instantiating const expression {bin}\")\n- )\n- };\n- let lhs = self.instantiate_const_expr(&bin.lhs, erased_idx, tmp_tv_cache)?;\n- let rhs = self.instantiate_const_expr(&bin.rhs, erased_idx, tmp_tv_cache)?;\n- Ok(TyParam::bin(op, lhs, rhs))\n- }\n- ast::ConstExpr::UnaryOp(unary) => {\n- let Some(op) = token_kind_to_op_kind(unary.op.kind) else {\n- return type_feature_error!(\n- self,\n- unary.loc(),\n- &format!(\"instantiating const expression {unary}\")\n- )\n- };\n- let val = self.instantiate_const_expr(&unary.expr, erased_idx, tmp_tv_cache)?;\n- Ok(TyParam::unary(op, val))\n- }\n- ast::ConstExpr::TypeAsc(tasc) => {\n- let tp = self.instantiate_const_expr(&tasc.expr, erased_idx, tmp_tv_cache)?;\n- let spec_t = self.instantiate_typespec(\n- &tasc.t_spec.t_spec,\n- None,\n- tmp_tv_cache,\n- RegistrationMode::Normal,\n- false,\n- )?;\n- if self.subtype_of(&self.get_tp_t(&tp)?, &spec_t) {\n- Ok(tp)\n- } else {\n- Err(TyCheckErrors::from(TyCheckError::subtyping_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- &self.get_tp_t(&tp)?,\n- &spec_t,\n- tasc.loc(),\n- self.caused_by(),\n- )))\n- }\n- }\n- other => type_feature_error!(\n- self,\n- other.loc(),\n- &format!(\"instantiating const expression {other}\")\n- ),\n- }\n- }\n-\n- pub(crate) fn instantiate_const_expr_as_type(\n- &self,\n- expr: &ast::ConstExpr,\n- erased_idx: Option<(&Context, usize)>,\n- tmp_tv_cache: &mut TyVarCache,\n- ) -> TyCheckResult<Type> {\n- let tp = self.instantiate_const_expr(expr, erased_idx, tmp_tv_cache)?;\n- self.instantiate_tp_as_type(tp, expr)\n- }\n-\n- fn instantiate_tp_as_type(&self, tp: TyParam, loc: &impl Locational) -> TyCheckResult<Type> {\n- match tp {\n- TyParam::FreeVar(fv) if fv.is_linked() => {\n- self.instantiate_tp_as_type(fv.crack().clone(), loc)\n- }\n- TyParam::Type(t) => Ok(*t),\n- TyParam::Value(ValueObj::Type(t)) => Ok(t.into_typ()),\n- TyParam::Set(set) => {\n- let t = set\n- .iter()\n- .next()\n- .and_then(|tp| self.get_tp_t(tp).ok())\n- .unwrap_or(Type::Never);\n- Ok(tp_enum(t, set))\n- }\n- TyParam::Tuple(ts) => {\n- let mut tps = vec![];\n- for tp in ts {\n- let t = self.instantiate_tp_as_type(tp, loc)?;\n- tps.push(t);\n- }\n- Ok(tuple_t(tps))\n- }\n- TyParam::Record(rec) => {\n- let mut rec_t = dict! {};\n- for (field, tp) in rec {\n- let t = self.instantiate_tp_as_type(tp, loc)?;\n- rec_t.insert(field, t);\n- }\n- Ok(Type::Record(rec_t))\n- }\n- TyParam::Lambda(lambda) => {\n- let return_t = self\n- .instantiate_tp_as_type(lambda.body.last().unwrap().clone(), &lambda.const_)?;\n- let subr = SubrType::new(\n- SubrKind::from(lambda.const_.op.kind),\n- lambda.nd_params,\n- lambda.var_params,\n- lambda.d_params,\n- return_t,\n- );\n- Ok(Type::Subr(subr))\n- }\n- other => {\n- type_feature_error!(self, loc.loc(), &format!(\"instantiate `{other}` as type\"))\n- }\n- }\n- }\n-\n- fn instantiate_func_param_spec(\n- &self,\n- p: &ParamTySpec,\n- opt_decl_t: Option<&ParamTy>,\n- default_t: Option<&TypeSpec>,\n- tmp_tv_cache: &mut TyVarCache,\n- mode: RegistrationMode,\n- ) -> TyCheckResult<ParamTy> {\n- let t = self.instantiate_typespec(&p.ty, opt_decl_t, tmp_tv_cache, mode, false)?;\n- if let Some(default_t) = default_t {\n- Ok(ParamTy::kw_default(\n- p.name.as_ref().unwrap().inspect().to_owned(),\n- t,\n- self.instantiate_typespec(default_t, opt_decl_t, tmp_tv_cache, mode, false)?,\n- ))\n- } else {\n- Ok(ParamTy::pos(\n- p.name.as_ref().map(|t| t.inspect().to_owned()),\n- t,\n- ))\n- }\n- }\n-\n- pub(crate) fn instantiate_typespec(\n- &self,\n- t_spec: &TypeSpec,\n- opt_decl_t: Option<&ParamTy>,\n- tmp_tv_cache: &mut TyVarCache,\n- mode: RegistrationMode,\n- not_found_is_qvar: bool,\n- ) -> TyCheckResult<Type> {\n- match t_spec {\n- TypeSpec::Infer(_) => Ok(free_var(self.level, Constraint::new_type_of(Type))),\n- TypeSpec::PreDeclTy(predecl) => Ok(self.instantiate_predecl_t(\n- predecl,\n- opt_decl_t,\n- tmp_tv_cache,\n- not_found_is_qvar,\n- )?),\n- TypeSpec::And(lhs, rhs) => Ok(self.intersection(\n- &self.instantiate_typespec(\n- lhs,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?,\n- &self.instantiate_typespec(\n- rhs,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?,\n- )),\n- TypeSpec::Or(lhs, rhs) => Ok(self.union(\n- &self.instantiate_typespec(\n- lhs,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?,\n- &self.instantiate_typespec(\n- rhs,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?,\n- )),\n- TypeSpec::Not(ty) => Ok(self.complement(&self.instantiate_typespec(\n- ty,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?)),\n- TypeSpec::Array(arr) => {\n- let elem_t = self.instantiate_typespec(\n- &arr.ty,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?;\n- let mut len = self.instantiate_const_expr(&arr.len, None, tmp_tv_cache)?;\n- if let TyParam::Erased(t) = &mut len {\n- *t.as_mut() = Type::Nat;\n- }\n- Ok(array_t(elem_t, len))\n- }\n- TypeSpec::SetWithLen(set) => {\n- let elem_t = self.instantiate_typespec(\n- &set.ty,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?;\n- let mut len = self.instantiate_const_expr(&set.len, None, tmp_tv_cache)?;\n- if let TyParam::Erased(t) = &mut len {\n- *t.as_mut() = Type::Nat;\n- }\n- Ok(set_t(elem_t, len))\n- }\n- TypeSpec::Tuple(tup) => {\n- let mut inst_tys = vec![];\n- for spec in tup.tys.iter() {\n- inst_tys.push(self.instantiate_typespec(\n- spec,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?);\n- }\n- Ok(tuple_t(inst_tys))\n- }\n- TypeSpec::Dict(dict) => {\n- let mut inst_tys = dict! {};\n- for (k, v) in dict {\n- inst_tys.insert(\n- self.instantiate_typespec(\n- k,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?,\n- self.instantiate_typespec(\n- v,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?,\n- );\n- }\n- Ok(dict_t(inst_tys.into()))\n- }\n- TypeSpec::Record(rec) => {\n- let mut inst_tys = dict! {};\n- for (k, v) in rec {\n- inst_tys.insert(\n- k.into(),\n- self.instantiate_typespec(\n- v,\n- opt_decl_t,\n- tmp_tv_cache,\n- mode,\n- not_found_is_qvar,\n- )?,\n- );\n- }\n- Ok(Type::Record(inst_tys))\n- }\n- // TODO: \u30a8\u30e9\u30fc\u51e6\u7406(\u30ea\u30c6\u30e9\u30eb\u3067\u306a\u3044)\u306f\u30d1\u30fc\u30b5\u30fc\u306b\u3084\u3089\u305b\u308b\n- TypeSpec::Enum(set) => {\n- let mut new_set = set! {};\n- for arg in set.pos_args() {\n- new_set.insert(self.instantiate_const_expr(&arg.expr, None, tmp_tv_cache)?);\n- }\n- let ty = new_set.iter().fold(Type::Never, |t, tp| {\n- self.union(&t, &self.get_tp_t(tp).unwrap())\n- });\n- Ok(tp_enum(ty, new_set))\n- }\n- TypeSpec::Interval { op, lhs, rhs } => {\n- let op = match op.kind {\n- TokenKind::Closed => IntervalOp::Closed,\n- TokenKind::LeftOpen => IntervalOp::LeftOpen,\n- TokenKind::RightOpen => IntervalOp::RightOpen,\n- TokenKind::Open => IntervalOp::Open,\n- _ => assume_unreachable!(),\n- };\n- let l = self.instantiate_const_expr(lhs, None, tmp_tv_cache)?;\n- let l = self.eval_tp(l)?;\n- let r = self.instantiate_const_expr(rhs, None, tmp_tv_cache)?;\n- let r = self.eval_tp(r)?;\n- if let Some(Greater) = self.try_cmp(&l, &r) {\n- panic!(\"{l}..{r} is not a valid interval type (should be lhs <= rhs)\")\n- }\n- Ok(int_interval(op, l, r))\n- }\n- TypeSpec::Subr(subr) => {\n- let mut inner_tv_ctx = if !subr.bounds.is_empty() {\n- let tv_cache = self.instantiate_ty_bounds(&subr.bounds, mode)?;\n- Some(tv_cache)\n- } else {\n- None\n- };\n- if let Some(inner) = &mut inner_tv_ctx {\n- inner.merge(tmp_tv_cache);\n- }\n- let tmp_tv_ctx = if let Some(inner) = &mut inner_tv_ctx {\n- inner\n- } else {\n- tmp_tv_cache\n- };\n- let non_defaults = try_map_mut(subr.non_defaults.iter(), |p| {\n- self.instantiate_func_param_spec(p, opt_decl_t, None, tmp_tv_ctx, mode)\n- })?;\n- let var_params = subr\n- .var_params\n- .as_ref()\n- .map(|p| {\n- self.instantiate_func_param_spec(p, opt_decl_t, None, tmp_tv_ctx, mode)\n- })\n- .transpose()?;\n- let defaults = try_map_mut(subr.defaults.iter(), |p| {\n- self.instantiate_func_param_spec(\n- &p.param,\n- opt_decl_t,\n- Some(&p.default),\n- tmp_tv_ctx,\n- mode,\n- )\n- })?\n- .into_iter()\n- .collect();\n- let return_t = self.instantiate_typespec(\n- &subr.return_t,\n- opt_decl_t,\n- tmp_tv_ctx,\n- mode,\n- not_found_is_qvar,\n- )?;\n- Ok(subr_t(\n- SubrKind::from(subr.arrow.kind),\n- non_defaults,\n- var_params,\n- defaults,\n- return_t,\n- ))\n- }\n- TypeSpec::TypeApp { spec, args } => {\n- type_feature_error!(\n- self,\n- t_spec.loc(),\n- &format!(\"instantiating type spec {spec}{args}\")\n- )\n- }\n- }\n- }\n-\n- pub(crate) fn instantiate_ty_bound(\n- &self,\n- bound: &TypeBoundSpec,\n- tv_cache: &mut TyVarCache,\n- mode: RegistrationMode,\n- ) -> TyCheckResult<()> {\n- // REVIEW: \u578b\u5883\u754c\u306e\u5de6\u8fba\u306b\u6765\u308c\u308b\u306e\u306f\u578b\u5909\u6570\u3060\u3051\u304b?\n- // TODO: \u9ad8\u968e\u578b\u5909\u6570\n- match bound {\n- TypeBoundSpec::Omitted(name) => {\n- // TODO: other than type `Type`\n- let constr = Constraint::new_type_of(Type);\n- let tv = named_free_var(name.inspect().clone(), self.level, constr);\n- tv_cache.push_or_init_tyvar(name.inspect(), &tv);\n- Ok(())\n- }\n- TypeBoundSpec::NonDefault { lhs, spec } => {\n- let constr =\n- match spec.op.kind {\n- TokenKind::SubtypeOf => Constraint::new_subtype_of(\n- self.instantiate_typespec(&spec.t_spec, None, tv_cache, mode, true)?,\n- ),\n- TokenKind::SupertypeOf => Constraint::new_supertype_of(\n- self.instantiate_typespec(&spec.t_spec, None, tv_cache, mode, true)?,\n- ),\n- TokenKind::Colon => Constraint::new_type_of(self.instantiate_typespec(\n- &spec.t_spec,\n- None,\n- tv_cache,\n- mode,\n- true,\n- )?),\n- _ => unreachable!(),\n- };\n- if constr.get_sub_sup().is_none() {\n- let tp = TyParam::named_free_var(lhs.inspect().clone(), self.level, constr);\n- tv_cache.push_or_init_typaram(lhs.inspect(), &tp);\n- } else {\n- let tv = named_free_var(lhs.inspect().clone(), self.level, constr);\n- tv_cache.push_or_init_tyvar(lhs.inspect(), &tv);\n- }\n- Ok(())\n- }\n- TypeBoundSpec::WithDefault { .. } => type_feature_error!(\n- self,\n- bound.loc(),\n- \"type boundary specification with default\"\n- ),\n- }\n- }\n-\n- pub(crate) fn instantiate_ty_bounds(\n- &self,\n- bounds: &TypeBoundSpecs,\n- mode: RegistrationMode,\n- ) -> TyCheckResult<TyVarCache> {\n- let mut tv_cache = TyVarCache::new(self.level, self);\n- for bound in bounds.iter() {\n- self.instantiate_ty_bound(bound, &mut tv_cache, mode)?;\n- }\n- for tv in tv_cache.tyvar_instances.values() {\n- if tv.constraint().map(|c| c.is_uninited()).unwrap_or(false) {\n- return Err(TyCheckErrors::from(TyCheckError::no_var_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- bounds.loc(),\n- self.caused_by(),\n- &tv.local_name(),\n- self.get_similar_name(&tv.local_name()),\n- )));\n- }\n- }\n- for tp in tv_cache.typaram_instances.values() {\n- if tp.constraint().map(|c| c.is_uninited()).unwrap_or(false) {\n- return Err(TyCheckErrors::from(TyCheckError::no_var_error(\n- self.cfg.input.clone(),\n- line!() as usize,\n- bounds.loc(),\n- self.caused_by(),\n- &tp.to_string(),\n- self.get_similar_name(&tp.to_string()),\n- )));\n- }\n- }\n- Ok(tv_cache)\n- }\n-\n fn instantiate_tp(\n &self,\n quantified: TyParam,\n", "instantiate_spec.rs": "@@ -0,0 +1,1212 @@\n+use std::option::Option; // conflicting to Type::Option\n+\n+#[allow(unused)]\n+use erg_common::log;\n+use erg_common::traits::{Locational, Stream};\n+use erg_common::Str;\n+use erg_common::{assume_unreachable, dict, enum_unwrap, set, try_map_mut};\n+\n+use ast::{\n+ NonDefaultParamSignature, ParamTySpec, PreDeclTypeSpec, SimpleTypeSpec, TypeBoundSpec,\n+ TypeBoundSpecs, TypeSpec,\n+};\n+use erg_parser::ast::{self, Identifier, VisModifierSpec, VisRestriction};\n+use erg_parser::token::TokenKind;\n+use erg_parser::Parser;\n+\n+use crate::feature_error;\n+use crate::ty::free::{CanbeFree, Constraint};\n+use crate::ty::typaram::{IntervalOp, OpKind, TyParam, TyParamLambda, TyParamOrdering};\n+use crate::ty::value::ValueObj;\n+use crate::ty::{constructors::*, VisibilityModifier};\n+use crate::ty::{Field, HasType, ParamTy, SubrKind, SubrType, Type};\n+use crate::type_feature_error;\n+use TyParamOrdering::*;\n+use Type::*;\n+\n+use crate::context::instantiate::TyVarCache;\n+use crate::context::{Context, DefaultInfo, RegistrationMode};\n+use crate::error::{TyCheckError, TyCheckErrors, TyCheckResult};\n+use crate::AccessKind;\n+use RegistrationMode::*;\n+\n+pub fn token_kind_to_op_kind(kind: TokenKind) -> Option<OpKind> {\n+ match kind {\n+ TokenKind::Plus => Some(OpKind::Add),\n+ TokenKind::Minus => Some(OpKind::Sub),\n+ TokenKind::Star => Some(OpKind::Mul),\n+ TokenKind::Slash => Some(OpKind::Div),\n+ TokenKind::FloorDiv => Some(OpKind::FloorDiv),\n+ TokenKind::Mod => Some(OpKind::Mod),\n+ TokenKind::Pow => Some(OpKind::Pow),\n+ TokenKind::PrePlus => Some(OpKind::Pos),\n+ TokenKind::PreMinus => Some(OpKind::Neg),\n+ TokenKind::PreBitNot => Some(OpKind::Invert),\n+ TokenKind::Equal => Some(OpKind::Eq),\n+ TokenKind::NotEq => Some(OpKind::Ne),\n+ TokenKind::Less => Some(OpKind::Lt),\n+ TokenKind::LessEq => Some(OpKind::Le),\n+ TokenKind::Gre => Some(OpKind::Gt),\n+ TokenKind::GreEq => Some(OpKind::Ge),\n+ TokenKind::AndOp => Some(OpKind::And),\n+ TokenKind::OrOp => Some(OpKind::Or),\n+ TokenKind::BitAnd => Some(OpKind::BitAnd),\n+ TokenKind::BitOr => Some(OpKind::BitOr),\n+ TokenKind::BitXor => Some(OpKind::BitXor),\n+ TokenKind::Shl => Some(OpKind::Shl),\n+ TokenKind::Shr => Some(OpKind::Shr),\n+ _ => None,\n+ }\n+}\n+\n+#[derive(Debug, Clone, PartialEq, Eq)]\n+pub enum ParamKind {\n+ NonDefault,\n+ Default(Type),\n+ VarParams,\n+ KwParams,\n+}\n+\n+impl ParamKind {\n+ pub const fn is_var_params(&self) -> bool {\n+ matches!(self, ParamKind::VarParams)\n+ }\n+ pub const fn is_kw_params(&self) -> bool {\n+ matches!(self, ParamKind::KwParams)\n+ }\n+ pub const fn is_default(&self) -> bool {\n+ matches!(self, ParamKind::Default(_))\n+ }\n+ pub const fn default_info(&self) -> DefaultInfo {\n+ match self {\n+ ParamKind::Default(_) => DefaultInfo::WithDefault,\n+ _ => DefaultInfo::NonDefault,\n+ }\n+ }\n+}\n+\n+/// TODO: this struct will be removed when const functions are implemented.\n+#[derive(Debug, Clone, PartialEq, Eq, Hash)]\n+pub enum ConstTemplate {\n+ Obj(ValueObj),\n+ App {\n+ name: Str,\n+ non_default_args: Vec<Type>,\n+ default_args: Vec<ConstTemplate>,\n+ },\n+}\n+\n+impl ConstTemplate {\n+ pub const fn app(\n+ name: &'static str,\n+ non_default_args: Vec<Type>,\n+ default_args: Vec<ConstTemplate>,\n+ ) -> Self {\n+ ConstTemplate::App {\n+ name: Str::ever(name),\n+ non_default_args,\n+ default_args,\n+ }\n+ }\n+}\n+\n+impl Context {\n+ pub(crate) fn instantiate_ty_bound(\n+ &self,\n+ bound: &TypeBoundSpec,\n+ tv_cache: &mut TyVarCache,\n+ mode: RegistrationMode,\n+ ) -> TyCheckResult<()> {\n+ // REVIEW: \u578b\u5883\u754c\u306e\u5de6\u8fba\u306b\u6765\u308c\u308b\u306e\u306f\u578b\u5909\u6570\u3060\u3051\u304b?\n+ // TODO: \u9ad8\u968e\u578b\u5909\u6570\n+ match bound {\n+ TypeBoundSpec::Omitted(name) => {\n+ // TODO: other than type `Type`\n+ let constr = Constraint::new_type_of(Type);\n+ let tv = named_free_var(name.inspect().clone(), self.level, constr);\n+ tv_cache.push_or_init_tyvar(name.inspect(), &tv);\n+ Ok(())\n+ }\n+ TypeBoundSpec::NonDefault { lhs, spec } => {\n+ let constr =\n+ match spec.op.kind {\n+ TokenKind::SubtypeOf => Constraint::new_subtype_of(\n+ self.instantiate_typespec(&spec.t_spec, None, tv_cache, mode, true)?,\n+ ),\n+ TokenKind::SupertypeOf => Constraint::new_supertype_of(\n+ self.instantiate_typespec(&spec.t_spec, None, tv_cache, mode, true)?,\n+ ),\n+ TokenKind::Colon => Constraint::new_type_of(self.instantiate_typespec(\n+ &spec.t_spec,\n+ None,\n+ tv_cache,\n+ mode,\n+ true,\n+ )?),\n+ _ => unreachable!(),\n+ };\n+ if constr.get_sub_sup().is_none() {\n+ let tp = TyParam::named_free_var(lhs.inspect().clone(), self.level, constr);\n+ tv_cache.push_or_init_typaram(lhs.inspect(), &tp);\n+ } else {\n+ let tv = named_free_var(lhs.inspect().clone(), self.level, constr);\n+ tv_cache.push_or_init_tyvar(lhs.inspect(), &tv);\n+ }\n+ Ok(())\n+ }\n+ TypeBoundSpec::WithDefault { .. } => type_feature_error!(\n+ self,\n+ bound.loc(),\n+ \"type boundary specification with default\"\n+ ),\n+ }\n+ }\n+\n+ pub(crate) fn instantiate_ty_bounds(\n+ &self,\n+ bounds: &TypeBoundSpecs,\n+ mode: RegistrationMode,\n+ ) -> TyCheckResult<TyVarCache> {\n+ let mut tv_cache = TyVarCache::new(self.level, self);\n+ for bound in bounds.iter() {\n+ self.instantiate_ty_bound(bound, &mut tv_cache, mode)?;\n+ }\n+ for tv in tv_cache.tyvar_instances.values() {\n+ if tv.constraint().map(|c| c.is_uninited()).unwrap_or(false) {\n+ return Err(TyCheckErrors::from(TyCheckError::no_var_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ bounds.loc(),\n+ self.caused_by(),\n+ &tv.local_name(),\n+ self.get_similar_name(&tv.local_name()),\n+ )));\n+ }\n+ }\n+ for tp in tv_cache.typaram_instances.values() {\n+ if tp.constraint().map(|c| c.is_uninited()).unwrap_or(false) {\n+ return Err(TyCheckErrors::from(TyCheckError::no_var_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ bounds.loc(),\n+ self.caused_by(),\n+ &tp.to_string(),\n+ self.get_similar_name(&tp.to_string()),\n+ )));\n+ }\n+ }\n+ Ok(tv_cache)\n+ }\n+\n+ pub(crate) fn instantiate_var_sig_t(\n+ &self,\n+ t_spec: Option<&TypeSpec>,\n+ mode: RegistrationMode,\n+ ) -> TyCheckResult<Type> {\n+ let mut tmp_tv_cache = TyVarCache::new(self.level, self);\n+ let spec_t = if let Some(t_spec) = t_spec {\n+ self.instantiate_typespec(t_spec, None, &mut tmp_tv_cache, mode, false)?\n+ } else {\n+ free_var(self.level, Constraint::new_type_of(Type))\n+ };\n+ Ok(spec_t)\n+ }\n+\n+ pub(crate) fn instantiate_sub_sig_t(\n+ &self,\n+ sig: &ast::SubrSignature,\n+ default_ts: Vec<Type>,\n+ mode: RegistrationMode,\n+ ) -> Result<Type, (TyCheckErrors, Type)> {\n+ let mut errs = TyCheckErrors::empty();\n+ // -> Result<Type, (Type, TyCheckErrors)> {\n+ let opt_decl_sig_t = match self\n+ .rec_get_decl_info(&sig.ident, AccessKind::Name, &self.cfg.input, self)\n+ .ok()\n+ .map(|vi| vi.t)\n+ {\n+ Some(Type::Subr(subr)) => Some(subr),\n+ Some(Type::FreeVar(fv)) if fv.is_unbound() => return Ok(Type::FreeVar(fv)),\n+ Some(other) => {\n+ let err = TyCheckError::unreachable(\n+ self.cfg.input.clone(),\n+ \"instantiate_sub_sig_t\",\n+ line!(),\n+ );\n+ return Err((TyCheckErrors::from(err), other));\n+ }\n+ None => None,\n+ };\n+ let mut tmp_tv_cache = self\n+ .instantiate_ty_bounds(&sig.bounds, PreRegister)\n+ .map_err(|errs| (errs, Type::Failure))?;\n+ let mut non_defaults = vec![];\n+ for (n, param) in sig.params.non_defaults.iter().enumerate() {\n+ let opt_decl_t = opt_decl_sig_t\n+ .as_ref()\n+ .and_then(|subr| subr.non_default_params.get(n));\n+ match self.instantiate_param_ty(\n+ param,\n+ opt_decl_t,\n+ &mut tmp_tv_cache,\n+ mode,\n+ ParamKind::NonDefault,\n+ ) {\n+ Ok(pt) => non_defaults.push(pt),\n+ Err(es) => {\n+ errs.extend(es);\n+ non_defaults.push(ParamTy::pos(param.inspect().cloned(), Type::Failure));\n+ }\n+ }\n+ }\n+ let var_args = if let Some(var_args) = sig.params.var_params.as_ref() {\n+ let opt_decl_t = opt_decl_sig_t\n+ .as_ref()\n+ .and_then(|subr| subr.var_params.as_ref().map(|v| v.as_ref()));\n+ let pt = match self.instantiate_param_ty(\n+ var_args,\n+ opt_decl_t,\n+ &mut tmp_tv_cache,\n+ mode,\n+ ParamKind::VarParams,\n+ ) {\n+ Ok(pt) => pt,\n+ Err(es) => {\n+ errs.extend(es);\n+ ParamTy::pos(var_args.inspect().cloned(), Type::Failure)\n+ }\n+ };\n+ Some(pt)\n+ } else {\n+ None\n+ };\n+ let mut defaults = vec![];\n+ for ((n, p), default_t) in sig.params.defaults.iter().enumerate().zip(default_ts) {\n+ let opt_decl_t = opt_decl_sig_t\n+ .as_ref()\n+ .and_then(|subr| subr.default_params.get(n));\n+ match self.instantiate_param_ty(\n+ &p.sig,\n+ opt_decl_t,\n+ &mut tmp_tv_cache,\n+ mode,\n+ ParamKind::Default(default_t),\n+ ) {\n+ Ok(pt) => defaults.push(pt),\n+ Err(es) => {\n+ errs.extend(es);\n+ defaults.push(ParamTy::pos(p.sig.inspect().cloned(), Type::Failure));\n+ }\n+ }\n+ }\n+ let spec_return_t = if let Some(t_spec) = sig.return_t_spec.as_ref() {\n+ let opt_decl_t = opt_decl_sig_t\n+ .as_ref()\n+ .map(|subr| ParamTy::anonymous(subr.return_t.as_ref().clone()));\n+ match self.instantiate_typespec(\n+ t_spec,\n+ opt_decl_t.as_ref(),\n+ &mut tmp_tv_cache,\n+ mode,\n+ false,\n+ ) {\n+ Ok(ty) => ty,\n+ Err(es) => {\n+ errs.extend(es);\n+ Type::Failure\n+ }\n+ }\n+ } else {\n+ // preregister\u306a\u3089outer scope\u3067\u578b\u5ba3\u8a00(see inference.md)\n+ let level = if mode == PreRegister {\n+ self.level\n+ } else {\n+ self.level + 1\n+ };\n+ free_var(level, Constraint::new_type_of(Type))\n+ };\n+ let typ = if sig.ident.is_procedural() {\n+ proc(non_defaults, var_args, defaults, spec_return_t)\n+ } else {\n+ func(non_defaults, var_args, defaults, spec_return_t)\n+ };\n+ if errs.is_empty() {\n+ Ok(typ)\n+ } else {\n+ Err((errs, typ))\n+ }\n+ }\n+\n+ /// spec_t == None\u304b\u3064\u30ea\u30c6\u30e9\u30eb\u63a8\u8ad6\u304c\u4e0d\u53ef\u80fd\u306a\u3089\u578b\u5909\u6570\u3092\u767a\u884c\u3059\u308b\n+ pub(crate) fn instantiate_param_sig_t(\n+ &self,\n+ sig: &NonDefaultParamSignature,\n+ opt_decl_t: Option<&ParamTy>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ mode: RegistrationMode,\n+ kind: ParamKind,\n+ ) -> TyCheckResult<Type> {\n+ let gen_free_t = || {\n+ let level = if mode == PreRegister {\n+ self.level\n+ } else {\n+ self.level + 1\n+ };\n+ free_var(level, Constraint::new_type_of(Type))\n+ };\n+ let spec_t = if let Some(spec_with_op) = &sig.t_spec {\n+ self.instantiate_typespec(&spec_with_op.t_spec, opt_decl_t, tmp_tv_cache, mode, false)?\n+ } else {\n+ match &sig.pat {\n+ ast::ParamPattern::Lit(lit) => v_enum(set![self.eval_lit(lit)?]),\n+ ast::ParamPattern::Discard(_) => Type::Obj,\n+ ast::ParamPattern::Ref(_) => ref_(gen_free_t()),\n+ ast::ParamPattern::RefMut(_) => ref_mut(gen_free_t(), None),\n+ // ast::ParamPattern::VarName(name) if &name.inspect()[..] == \"_\" => Type::Obj,\n+ // TODO: Array<Lit>\n+ _ => gen_free_t(),\n+ }\n+ };\n+ if let Some(decl_pt) = opt_decl_t {\n+ if kind.is_var_params() {\n+ let spec_t = unknown_len_array_t(spec_t.clone());\n+ self.sub_unify(\n+ decl_pt.typ(),\n+ &spec_t,\n+ &sig.t_spec.as_ref().ok_or(sig),\n+ None,\n+ )?;\n+ } else {\n+ self.sub_unify(\n+ decl_pt.typ(),\n+ &spec_t,\n+ &sig.t_spec.as_ref().ok_or(sig),\n+ None,\n+ )?;\n+ }\n+ }\n+ Ok(spec_t)\n+ }\n+\n+ pub(crate) fn instantiate_param_ty(\n+ &self,\n+ sig: &NonDefaultParamSignature,\n+ opt_decl_t: Option<&ParamTy>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ mode: RegistrationMode,\n+ kind: ParamKind,\n+ ) -> TyCheckResult<ParamTy> {\n+ let t = self.instantiate_param_sig_t(sig, opt_decl_t, tmp_tv_cache, mode, kind.clone())?;\n+ match (sig.inspect(), kind) {\n+ (Some(name), ParamKind::Default(default_t)) => {\n+ Ok(ParamTy::kw_default(name.clone(), t, default_t))\n+ }\n+ (Some(name), _) => Ok(ParamTy::kw(name.clone(), t)),\n+ (None, _) => Ok(ParamTy::anonymous(t)),\n+ }\n+ }\n+\n+ pub(crate) fn instantiate_predecl_t(\n+ &self,\n+ predecl: &PreDeclTypeSpec,\n+ opt_decl_t: Option<&ParamTy>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ not_found_is_qvar: bool,\n+ ) -> TyCheckResult<Type> {\n+ match predecl {\n+ ast::PreDeclTypeSpec::Simple(simple) => {\n+ self.instantiate_simple_t(simple, opt_decl_t, tmp_tv_cache, not_found_is_qvar)\n+ }\n+ ast::PreDeclTypeSpec::Attr { namespace, t } => {\n+ if let Ok(receiver) = Parser::validate_const_expr(namespace.as_ref().clone()) {\n+ if let Ok(receiver_t) =\n+ self.instantiate_const_expr_as_type(&receiver, None, tmp_tv_cache)\n+ {\n+ let rhs = t.ident.inspect();\n+ return Ok(proj(receiver_t, rhs));\n+ }\n+ }\n+ let ctx = self.get_singular_ctx(namespace.as_ref(), self)?;\n+ if let Some((typ, _)) = ctx.rec_local_get_type(t.ident.inspect()) {\n+ let vi = ctx\n+ .rec_get_var_info(&t.ident, AccessKind::Name, &self.cfg.input, self)\n+ .unwrap();\n+ self.inc_ref(&vi, &t.ident.name);\n+ // TODO: visibility check\n+ Ok(typ.clone())\n+ } else {\n+ Err(TyCheckErrors::from(TyCheckError::no_var_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ t.loc(),\n+ self.caused_by(),\n+ t.ident.inspect(),\n+ self.get_similar_name(t.ident.inspect()),\n+ )))\n+ }\n+ }\n+ other => type_feature_error!(self, other.loc(), &format!(\"instantiating type {other}\")),\n+ }\n+ }\n+\n+ pub(crate) fn instantiate_simple_t(\n+ &self,\n+ simple: &SimpleTypeSpec,\n+ opt_decl_t: Option<&ParamTy>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ not_found_is_qvar: bool,\n+ ) -> TyCheckResult<Type> {\n+ self.inc_ref_simple_typespec(simple);\n+ match &simple.ident.inspect()[..] {\n+ \"_\" | \"Obj\" => Ok(Type::Obj),\n+ \"Nat\" => Ok(Type::Nat),\n+ \"Int\" => Ok(Type::Int),\n+ \"Ratio\" => Ok(Type::Ratio),\n+ \"Float\" => Ok(Type::Float),\n+ \"Str\" => Ok(Type::Str),\n+ \"Bool\" => Ok(Type::Bool),\n+ \"NoneType\" => Ok(Type::NoneType),\n+ \"Ellipsis\" => Ok(Type::Ellipsis),\n+ \"NotImplemented\" => Ok(Type::NotImplementedType),\n+ \"Inf\" => Ok(Type::Inf),\n+ \"NegInf\" => Ok(Type::NegInf),\n+ \"Never\" => Ok(Type::Never),\n+ \"ClassType\" => Ok(Type::ClassType),\n+ \"TraitType\" => Ok(Type::TraitType),\n+ \"Type\" => Ok(Type::Type),\n+ \"Array\" => {\n+ // TODO: kw\n+ let mut args = simple.args.pos_args();\n+ if let Some(first) = args.next() {\n+ let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n+ let len = if let Some(len) = args.next() {\n+ self.instantiate_const_expr(&len.expr, None, tmp_tv_cache)?\n+ } else {\n+ TyParam::erased(Nat)\n+ };\n+ Ok(array_t(t, len))\n+ } else {\n+ Ok(mono(\"GenericArray\"))\n+ }\n+ }\n+ \"Ref\" => {\n+ let mut args = simple.args.pos_args();\n+ let Some(first) = args.next() else {\n+ return Err(TyCheckErrors::from(TyCheckError::args_missing_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ simple.args.loc(),\n+ \"Ref\",\n+ self.caused_by(),\n+ vec![Str::from(\"T\")],\n+ )));\n+ };\n+ let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n+ Ok(ref_(t))\n+ }\n+ \"RefMut\" => {\n+ // TODO after\n+ let mut args = simple.args.pos_args();\n+ let Some(first) = args.next() else {\n+ return Err(TyCheckErrors::from(TyCheckError::args_missing_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ simple.args.loc(),\n+ \"RefMut\",\n+ self.caused_by(),\n+ vec![Str::from(\"T\")],\n+ )));\n+ };\n+ let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n+ Ok(ref_mut(t, None))\n+ }\n+ \"Structural\" => {\n+ let mut args = simple.args.pos_args();\n+ let Some(first) = args.next() else {\n+ return Err(TyCheckErrors::from(TyCheckError::args_missing_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ simple.args.loc(),\n+ \"Structural\",\n+ self.caused_by(),\n+ vec![Str::from(\"Type\")],\n+ )));\n+ };\n+ let t = self.instantiate_const_expr_as_type(&first.expr, None, tmp_tv_cache)?;\n+ Ok(t.structuralize())\n+ }\n+ \"Self\" => self.rec_get_self_t().ok_or_else(|| {\n+ TyCheckErrors::from(TyCheckError::unreachable(\n+ self.cfg.input.clone(),\n+ erg_common::fn_name_full!(),\n+ line!(),\n+ ))\n+ }),\n+ other if simple.args.is_empty() => {\n+ if let Some(t) = tmp_tv_cache.get_tyvar(other) {\n+ return Ok(t.clone());\n+ } else if let Some(tp) = tmp_tv_cache.get_typaram(other) {\n+ let t = enum_unwrap!(tp, TyParam::Type);\n+ return Ok(t.as_ref().clone());\n+ }\n+ if let Some(tv_cache) = &self.tv_cache {\n+ if let Some(t) = tv_cache.get_tyvar(other) {\n+ return Ok(t.clone());\n+ } else if let Some(tp) = tv_cache.get_typaram(other) {\n+ let t = enum_unwrap!(tp, TyParam::Type);\n+ return Ok(t.as_ref().clone());\n+ }\n+ }\n+ if let Some(outer) = &self.outer {\n+ if let Ok(t) = outer.instantiate_simple_t(\n+ simple,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ not_found_is_qvar,\n+ ) {\n+ return Ok(t);\n+ }\n+ }\n+ if let Some(decl_t) = opt_decl_t {\n+ return Ok(decl_t.typ().clone());\n+ }\n+ if let Some((typ, _)) = self.get_type(simple.ident.inspect()) {\n+ Ok(typ.clone())\n+ } else if not_found_is_qvar {\n+ let tyvar = named_free_var(Str::rc(other), self.level, Constraint::Uninited);\n+ tmp_tv_cache.push_or_init_tyvar(simple.ident.inspect(), &tyvar);\n+ Ok(tyvar)\n+ } else {\n+ Err(TyCheckErrors::from(TyCheckError::no_type_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ simple.loc(),\n+ self.caused_by(),\n+ other,\n+ self.get_similar_name(other),\n+ )))\n+ }\n+ }\n+ other => {\n+ let ctx = if let Some((_, ctx)) = self.get_type(&Str::rc(other)) {\n+ ctx\n+ } else {\n+ return Err(TyCheckErrors::from(TyCheckError::no_type_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ simple.ident.loc(),\n+ self.caused_by(),\n+ other,\n+ self.get_similar_name(other),\n+ )));\n+ };\n+ // FIXME: kw args\n+ let mut new_params = vec![];\n+ for (i, arg) in simple.args.pos_args().enumerate() {\n+ let params =\n+ self.instantiate_const_expr(&arg.expr, Some((ctx, i)), tmp_tv_cache);\n+ let params = params.or_else(|e| {\n+ if not_found_is_qvar {\n+ let name = arg.expr.to_string();\n+ // FIXME: handle `::` as a right way\n+ let name = Str::rc(name.trim_start_matches(\"::\"));\n+ let tp = TyParam::named_free_var(\n+ name.clone(),\n+ self.level,\n+ Constraint::Uninited,\n+ );\n+ tmp_tv_cache.push_or_init_typaram(&name, &tp);\n+ Ok(tp)\n+ } else {\n+ Err(e)\n+ }\n+ })?;\n+ new_params.push(params);\n+ }\n+ // FIXME: non-builtin\n+ Ok(poly(Str::rc(other), new_params))\n+ }\n+ }\n+ }\n+\n+ fn instantiate_local(\n+ &self,\n+ name: &Str,\n+ erased_idx: Option<(&Context, usize)>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ loc: &impl Locational,\n+ ) -> TyCheckResult<TyParam> {\n+ if &name[..] == \"_\" {\n+ let t = if let Some((ctx, i)) = erased_idx {\n+ ctx.params[i].1.t.clone()\n+ } else {\n+ Type::Uninited\n+ };\n+ return Ok(TyParam::erased(t));\n+ }\n+ if let Some(tp) = tmp_tv_cache.get_typaram(name) {\n+ return Ok(tp.clone());\n+ } else if let Some(t) = tmp_tv_cache.get_tyvar(name) {\n+ return Ok(TyParam::t(t.clone()));\n+ }\n+ if let Some(tv_ctx) = &self.tv_cache {\n+ if let Some(t) = tv_ctx.get_tyvar(name) {\n+ return Ok(TyParam::t(t.clone()));\n+ } else if let Some(tp) = tv_ctx.get_typaram(name) {\n+ return Ok(tp.clone());\n+ }\n+ }\n+ if let Some(value) = self.rec_get_const_obj(name) {\n+ return Ok(TyParam::Value(value.clone()));\n+ }\n+ Err(TyCheckErrors::from(TyCheckError::no_var_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ loc.loc(),\n+ self.caused_by(),\n+ name,\n+ self.get_similar_name(name),\n+ )))\n+ }\n+\n+ pub(crate) fn instantiate_const_expr(\n+ &self,\n+ expr: &ast::ConstExpr,\n+ erased_idx: Option<(&Context, usize)>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ ) -> TyCheckResult<TyParam> {\n+ match expr {\n+ ast::ConstExpr::Lit(lit) => Ok(TyParam::Value(self.eval_lit(lit)?)),\n+ ast::ConstExpr::Accessor(ast::ConstAccessor::Attr(attr)) => {\n+ let obj = self.instantiate_const_expr(&attr.obj, erased_idx, tmp_tv_cache)?;\n+ Ok(obj.proj(attr.name.inspect()))\n+ }\n+ ast::ConstExpr::Accessor(ast::ConstAccessor::Local(local)) => {\n+ self.inc_ref_const_local(local);\n+ self.instantiate_local(local.inspect(), erased_idx, tmp_tv_cache, local)\n+ }\n+ ast::ConstExpr::Array(array) => {\n+ let mut tp_arr = vec![];\n+ for (i, elem) in array.elems.pos_args().enumerate() {\n+ let el =\n+ self.instantiate_const_expr(&elem.expr, Some((self, i)), tmp_tv_cache)?;\n+ tp_arr.push(el);\n+ }\n+ Ok(TyParam::Array(tp_arr))\n+ }\n+ ast::ConstExpr::Set(set) => {\n+ let mut tp_set = set! {};\n+ for (i, elem) in set.elems.pos_args().enumerate() {\n+ let el =\n+ self.instantiate_const_expr(&elem.expr, Some((self, i)), tmp_tv_cache)?;\n+ tp_set.insert(el);\n+ }\n+ Ok(TyParam::Set(tp_set))\n+ }\n+ ast::ConstExpr::Dict(dict) => {\n+ let mut tp_dict = dict! {};\n+ for (i, elem) in dict.kvs.iter().enumerate() {\n+ let key =\n+ self.instantiate_const_expr(&elem.key, Some((self, i)), tmp_tv_cache)?;\n+ let val =\n+ self.instantiate_const_expr(&elem.value, Some((self, i)), tmp_tv_cache)?;\n+ tp_dict.insert(key, val);\n+ }\n+ Ok(TyParam::Dict(tp_dict))\n+ }\n+ ast::ConstExpr::Tuple(tuple) => {\n+ let mut tp_tuple = vec![];\n+ for (i, elem) in tuple.elems.pos_args().enumerate() {\n+ let el =\n+ self.instantiate_const_expr(&elem.expr, Some((self, i)), tmp_tv_cache)?;\n+ tp_tuple.push(el);\n+ }\n+ Ok(TyParam::Tuple(tp_tuple))\n+ }\n+ ast::ConstExpr::Record(rec) => {\n+ let mut tp_rec = dict! {};\n+ for attr in rec.attrs.iter() {\n+ let field = self.instantiate_field(&attr.ident)?;\n+ let val = self.instantiate_const_expr(\n+ attr.body.block.get(0).unwrap(),\n+ None,\n+ tmp_tv_cache,\n+ )?;\n+ tp_rec.insert(field, val);\n+ }\n+ Ok(TyParam::Record(tp_rec))\n+ }\n+ ast::ConstExpr::Lambda(lambda) => {\n+ let mut _tmp_tv_cache =\n+ self.instantiate_ty_bounds(&lambda.sig.bounds, RegistrationMode::Normal)?;\n+ let tmp_tv_cache = if tmp_tv_cache.is_empty() {\n+ &mut _tmp_tv_cache\n+ } else {\n+ // TODO: prohibit double quantification\n+ tmp_tv_cache\n+ };\n+ let mut nd_params = Vec::with_capacity(lambda.sig.params.non_defaults.len());\n+ for sig in lambda.sig.params.non_defaults.iter() {\n+ let pt = self.instantiate_param_ty(\n+ sig,\n+ None,\n+ tmp_tv_cache,\n+ RegistrationMode::Normal,\n+ ParamKind::NonDefault,\n+ )?;\n+ nd_params.push(pt);\n+ }\n+ let var_params = if let Some(p) = lambda.sig.params.var_params.as_ref() {\n+ let pt = self.instantiate_param_ty(\n+ p,\n+ None,\n+ tmp_tv_cache,\n+ RegistrationMode::Normal,\n+ ParamKind::VarParams,\n+ )?;\n+ Some(pt)\n+ } else {\n+ None\n+ };\n+ let mut d_params = Vec::with_capacity(lambda.sig.params.defaults.len());\n+ for sig in lambda.sig.params.defaults.iter() {\n+ let expr = self.eval_const_expr(&sig.default_val)?;\n+ let pt = self.instantiate_param_ty(\n+ &sig.sig,\n+ None,\n+ tmp_tv_cache,\n+ RegistrationMode::Normal,\n+ ParamKind::Default(expr.t()),\n+ )?;\n+ d_params.push(pt);\n+ }\n+ let mut body = vec![];\n+ for expr in lambda.body.iter() {\n+ let param = self.instantiate_const_expr(expr, None, tmp_tv_cache)?;\n+ body.push(param);\n+ }\n+ Ok(TyParam::Lambda(TyParamLambda::new(\n+ lambda.clone(),\n+ nd_params,\n+ var_params,\n+ d_params,\n+ body,\n+ )))\n+ }\n+ ast::ConstExpr::BinOp(bin) => {\n+ let Some(op) = token_kind_to_op_kind(bin.op.kind) else {\n+ return type_feature_error!(\n+ self,\n+ bin.loc(),\n+ &format!(\"instantiating const expression {bin}\")\n+ )\n+ };\n+ let lhs = self.instantiate_const_expr(&bin.lhs, erased_idx, tmp_tv_cache)?;\n+ let rhs = self.instantiate_const_expr(&bin.rhs, erased_idx, tmp_tv_cache)?;\n+ Ok(TyParam::bin(op, lhs, rhs))\n+ }\n+ ast::ConstExpr::UnaryOp(unary) => {\n+ let Some(op) = token_kind_to_op_kind(unary.op.kind) else {\n+ return type_feature_error!(\n+ self,\n+ unary.loc(),\n+ &format!(\"instantiating const expression {unary}\")\n+ )\n+ };\n+ let val = self.instantiate_const_expr(&unary.expr, erased_idx, tmp_tv_cache)?;\n+ Ok(TyParam::unary(op, val))\n+ }\n+ ast::ConstExpr::TypeAsc(tasc) => {\n+ let tp = self.instantiate_const_expr(&tasc.expr, erased_idx, tmp_tv_cache)?;\n+ let spec_t = self.instantiate_typespec(\n+ &tasc.t_spec.t_spec,\n+ None,\n+ tmp_tv_cache,\n+ RegistrationMode::Normal,\n+ false,\n+ )?;\n+ if self.subtype_of(&self.get_tp_t(&tp)?, &spec_t) {\n+ Ok(tp)\n+ } else {\n+ Err(TyCheckErrors::from(TyCheckError::subtyping_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ &self.get_tp_t(&tp)?,\n+ &spec_t,\n+ tasc.loc(),\n+ self.caused_by(),\n+ )))\n+ }\n+ }\n+ other => type_feature_error!(\n+ self,\n+ other.loc(),\n+ &format!(\"instantiating const expression {other}\")\n+ ),\n+ }\n+ }\n+\n+ pub(crate) fn instantiate_const_expr_as_type(\n+ &self,\n+ expr: &ast::ConstExpr,\n+ erased_idx: Option<(&Context, usize)>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ ) -> TyCheckResult<Type> {\n+ let tp = self.instantiate_const_expr(expr, erased_idx, tmp_tv_cache)?;\n+ self.instantiate_tp_as_type(tp, expr)\n+ }\n+\n+ fn instantiate_tp_as_type(&self, tp: TyParam, loc: &impl Locational) -> TyCheckResult<Type> {\n+ match tp {\n+ TyParam::FreeVar(fv) if fv.is_linked() => {\n+ self.instantiate_tp_as_type(fv.crack().clone(), loc)\n+ }\n+ TyParam::Type(t) => Ok(*t),\n+ TyParam::Value(ValueObj::Type(t)) => Ok(t.into_typ()),\n+ TyParam::Set(set) => {\n+ let t = set\n+ .iter()\n+ .next()\n+ .and_then(|tp| self.get_tp_t(tp).ok())\n+ .unwrap_or(Type::Never);\n+ Ok(tp_enum(t, set))\n+ }\n+ TyParam::Tuple(ts) => {\n+ let mut tps = vec![];\n+ for tp in ts {\n+ let t = self.instantiate_tp_as_type(tp, loc)?;\n+ tps.push(t);\n+ }\n+ Ok(tuple_t(tps))\n+ }\n+ TyParam::Record(rec) => {\n+ let mut rec_t = dict! {};\n+ for (field, tp) in rec {\n+ let t = self.instantiate_tp_as_type(tp, loc)?;\n+ rec_t.insert(field, t);\n+ }\n+ Ok(Type::Record(rec_t))\n+ }\n+ TyParam::Lambda(lambda) => {\n+ let return_t = self\n+ .instantiate_tp_as_type(lambda.body.last().unwrap().clone(), &lambda.const_)?;\n+ let subr = SubrType::new(\n+ SubrKind::from(lambda.const_.op.kind),\n+ lambda.nd_params,\n+ lambda.var_params,\n+ lambda.d_params,\n+ return_t,\n+ );\n+ Ok(Type::Subr(subr))\n+ }\n+ other => {\n+ type_feature_error!(self, loc.loc(), &format!(\"instantiate `{other}` as type\"))\n+ }\n+ }\n+ }\n+\n+ fn instantiate_func_param_spec(\n+ &self,\n+ p: &ParamTySpec,\n+ opt_decl_t: Option<&ParamTy>,\n+ default_t: Option<&TypeSpec>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ mode: RegistrationMode,\n+ ) -> TyCheckResult<ParamTy> {\n+ let t = self.instantiate_typespec(&p.ty, opt_decl_t, tmp_tv_cache, mode, false)?;\n+ if let Some(default_t) = default_t {\n+ Ok(ParamTy::kw_default(\n+ p.name.as_ref().unwrap().inspect().to_owned(),\n+ t,\n+ self.instantiate_typespec(default_t, opt_decl_t, tmp_tv_cache, mode, false)?,\n+ ))\n+ } else {\n+ Ok(ParamTy::pos(\n+ p.name.as_ref().map(|t| t.inspect().to_owned()),\n+ t,\n+ ))\n+ }\n+ }\n+\n+ pub(crate) fn instantiate_typespec(\n+ &self,\n+ t_spec: &TypeSpec,\n+ opt_decl_t: Option<&ParamTy>,\n+ tmp_tv_cache: &mut TyVarCache,\n+ mode: RegistrationMode,\n+ not_found_is_qvar: bool,\n+ ) -> TyCheckResult<Type> {\n+ match t_spec {\n+ TypeSpec::Infer(_) => Ok(free_var(self.level, Constraint::new_type_of(Type))),\n+ TypeSpec::PreDeclTy(predecl) => Ok(self.instantiate_predecl_t(\n+ predecl,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ not_found_is_qvar,\n+ )?),\n+ TypeSpec::And(lhs, rhs) => Ok(self.intersection(\n+ &self.instantiate_typespec(\n+ lhs,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?,\n+ &self.instantiate_typespec(\n+ rhs,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?,\n+ )),\n+ TypeSpec::Or(lhs, rhs) => Ok(self.union(\n+ &self.instantiate_typespec(\n+ lhs,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?,\n+ &self.instantiate_typespec(\n+ rhs,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?,\n+ )),\n+ TypeSpec::Not(ty) => Ok(self.complement(&self.instantiate_typespec(\n+ ty,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?)),\n+ TypeSpec::Array(arr) => {\n+ let elem_t = self.instantiate_typespec(\n+ &arr.ty,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?;\n+ let mut len = self.instantiate_const_expr(&arr.len, None, tmp_tv_cache)?;\n+ if let TyParam::Erased(t) = &mut len {\n+ *t.as_mut() = Type::Nat;\n+ }\n+ Ok(array_t(elem_t, len))\n+ }\n+ TypeSpec::SetWithLen(set) => {\n+ let elem_t = self.instantiate_typespec(\n+ &set.ty,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?;\n+ let mut len = self.instantiate_const_expr(&set.len, None, tmp_tv_cache)?;\n+ if let TyParam::Erased(t) = &mut len {\n+ *t.as_mut() = Type::Nat;\n+ }\n+ Ok(set_t(elem_t, len))\n+ }\n+ TypeSpec::Tuple(tup) => {\n+ let mut inst_tys = vec![];\n+ for spec in tup.tys.iter() {\n+ inst_tys.push(self.instantiate_typespec(\n+ spec,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?);\n+ }\n+ Ok(tuple_t(inst_tys))\n+ }\n+ TypeSpec::Dict(dict) => {\n+ let mut inst_tys = dict! {};\n+ for (k, v) in dict {\n+ inst_tys.insert(\n+ self.instantiate_typespec(\n+ k,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?,\n+ self.instantiate_typespec(\n+ v,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?,\n+ );\n+ }\n+ Ok(dict_t(inst_tys.into()))\n+ }\n+ TypeSpec::Record(rec) => {\n+ let mut inst_tys = dict! {};\n+ for (k, v) in rec {\n+ inst_tys.insert(\n+ self.instantiate_field(k)?,\n+ self.instantiate_typespec(\n+ v,\n+ opt_decl_t,\n+ tmp_tv_cache,\n+ mode,\n+ not_found_is_qvar,\n+ )?,\n+ );\n+ }\n+ Ok(Type::Record(inst_tys))\n+ }\n+ // TODO: \u30a8\u30e9\u30fc\u51e6\u7406(\u30ea\u30c6\u30e9\u30eb\u3067\u306a\u3044)\u306f\u30d1\u30fc\u30b5\u30fc\u306b\u3084\u3089\u305b\u308b\n+ TypeSpec::Enum(set) => {\n+ let mut new_set = set! {};\n+ for arg in set.pos_args() {\n+ new_set.insert(self.instantiate_const_expr(&arg.expr, None, tmp_tv_cache)?);\n+ }\n+ let ty = new_set.iter().fold(Type::Never, |t, tp| {\n+ self.union(&t, &self.get_tp_t(tp).unwrap())\n+ });\n+ Ok(tp_enum(ty, new_set))\n+ }\n+ TypeSpec::Interval { op, lhs, rhs } => {\n+ let op = match op.kind {\n+ TokenKind::Closed => IntervalOp::Closed,\n+ TokenKind::LeftOpen => IntervalOp::LeftOpen,\n+ TokenKind::RightOpen => IntervalOp::RightOpen,\n+ TokenKind::Open => IntervalOp::Open,\n+ _ => assume_unreachable!(),\n+ };\n+ let l = self.instantiate_const_expr(lhs, None, tmp_tv_cache)?;\n+ let l = self.eval_tp(l)?;\n+ let r = self.instantiate_const_expr(rhs, None, tmp_tv_cache)?;\n+ let r = self.eval_tp(r)?;\n+ if let Some(Greater) = self.try_cmp(&l, &r) {\n+ panic!(\"{l}..{r} is not a valid interval type (should be lhs <= rhs)\")\n+ }\n+ Ok(int_interval(op, l, r))\n+ }\n+ TypeSpec::Subr(subr) => {\n+ let mut inner_tv_ctx = if !subr.bounds.is_empty() {\n+ let tv_cache = self.instantiate_ty_bounds(&subr.bounds, mode)?;\n+ Some(tv_cache)\n+ } else {\n+ None\n+ };\n+ if let Some(inner) = &mut inner_tv_ctx {\n+ inner.merge(tmp_tv_cache);\n+ }\n+ let tmp_tv_ctx = if let Some(inner) = &mut inner_tv_ctx {\n+ inner\n+ } else {\n+ tmp_tv_cache\n+ };\n+ let non_defaults = try_map_mut(subr.non_defaults.iter(), |p| {\n+ self.instantiate_func_param_spec(p, opt_decl_t, None, tmp_tv_ctx, mode)\n+ })?;\n+ let var_params = subr\n+ .var_params\n+ .as_ref()\n+ .map(|p| {\n+ self.instantiate_func_param_spec(p, opt_decl_t, None, tmp_tv_ctx, mode)\n+ })\n+ .transpose()?;\n+ let defaults = try_map_mut(subr.defaults.iter(), |p| {\n+ self.instantiate_func_param_spec(\n+ &p.param,\n+ opt_decl_t,\n+ Some(&p.default),\n+ tmp_tv_ctx,\n+ mode,\n+ )\n+ })?\n+ .into_iter()\n+ .collect();\n+ let return_t = self.instantiate_typespec(\n+ &subr.return_t,\n+ opt_decl_t,\n+ tmp_tv_ctx,\n+ mode,\n+ not_found_is_qvar,\n+ )?;\n+ Ok(subr_t(\n+ SubrKind::from(subr.arrow.kind),\n+ non_defaults,\n+ var_params,\n+ defaults,\n+ return_t,\n+ ))\n+ }\n+ TypeSpec::TypeApp { spec, args } => {\n+ type_feature_error!(\n+ self,\n+ t_spec.loc(),\n+ &format!(\"instantiating type spec {spec}{args}\")\n+ )\n+ }\n+ }\n+ }\n+\n+ pub fn instantiate_field(&self, ident: &Identifier) -> TyCheckResult<Field> {\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n+ Ok(Field::new(vis, ident.inspect().clone()))\n+ }\n+\n+ pub fn instantiate_vis_modifier(\n+ &self,\n+ spec: &VisModifierSpec,\n+ ) -> TyCheckResult<VisibilityModifier> {\n+ match spec {\n+ VisModifierSpec::Auto => unreachable!(),\n+ VisModifierSpec::Private | VisModifierSpec::ExplicitPrivate(_) => {\n+ Ok(VisibilityModifier::Private)\n+ }\n+ VisModifierSpec::Public(_) => Ok(VisibilityModifier::Public),\n+ VisModifierSpec::Restricted(rest) => match &rest {\n+ VisRestriction::Namespaces(namespace) => {\n+ let mut namespaces = set! {};\n+ for ns in namespace.iter() {\n+ let ast::Accessor::Ident(ident) = ns else {\n+ return feature_error!(TyCheckErrors, TyCheckError, self, ns.loc(), \"namespace accessors\");\n+ };\n+ let vi = self\n+ .rec_get_var_info(ident, AccessKind::Name, &self.cfg.input, self)\n+ .none_or_result(|| {\n+ TyCheckError::no_var_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ ident.loc(),\n+ self.caused_by(),\n+ ident.inspect(),\n+ None,\n+ )\n+ })?;\n+ let name = Str::from(format!(\n+ \"{}{}{}\",\n+ vi.vis.def_namespace,\n+ vi.vis.modifier.display_as_accessor(),\n+ ident.inspect()\n+ ));\n+ namespaces.insert(name);\n+ }\n+ Ok(VisibilityModifier::Restricted(namespaces))\n+ }\n+ VisRestriction::SubtypeOf(typ) => {\n+ let mut dummy_tv_cache = TyVarCache::new(self.level, self);\n+ let t = self.instantiate_typespec(\n+ typ,\n+ None,\n+ &mut dummy_tv_cache,\n+ RegistrationMode::Normal,\n+ false,\n+ )?;\n+ Ok(VisibilityModifier::SubtypeRestricted(t))\n+ }\n+ },\n+ }\n+ }\n+}\n", "register.rs": "@@ -11,7 +11,7 @@ use erg_common::levenshtein::get_similar_name;\n use erg_common::python_util::BUILTIN_PYTHON_MODS;\n use erg_common::set::Set;\n use erg_common::traits::{Locational, Stream};\n-use erg_common::vis::Visibility;\n+use erg_common::triple::Triple;\n use erg_common::Str;\n use erg_common::{enum_unwrap, get_hash, log, set};\n \n@@ -23,7 +23,7 @@ use crate::ty::constructors::{\n };\n use crate::ty::free::{Constraint, FreeKind, HasLevel};\n use crate::ty::value::{GenTypeObj, TypeObj, ValueObj};\n-use crate::ty::{HasType, ParamTy, SubrType, Type};\n+use crate::ty::{HasType, ParamTy, SubrType, Type, Visibility};\n \n use crate::build_hir::HIRBuilder;\n use crate::context::{\n@@ -38,9 +38,9 @@ use crate::varinfo::{AbsLocation, Mutability, VarInfo, VarKind};\n use crate::{feature_error, hir};\n use Mutability::*;\n use RegistrationMode::*;\n-use Visibility::*;\n \n-use super::instantiate::{ParamKind, TyVarCache};\n+use super::instantiate::TyVarCache;\n+use super::instantiate_spec::ParamKind;\n \n /// format:\n /// ```python\n@@ -133,7 +133,7 @@ impl Context {\n }\n other => unreachable!(\"{other}\"),\n };\n- let vis = ident.vis();\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n let kind = id.map_or(VarKind::Declared, VarKind::Defined);\n let sig_t = self.instantiate_var_sig_t(sig.t_spec.as_ref(), PreRegister)?;\n let py_name = if let ContextKind::PatchMethodDefs(_base) = &self.kind {\n@@ -153,7 +153,7 @@ impl Context {\n let vi = VarInfo::new(\n sig_t,\n muty,\n- vis,\n+ Visibility::new(vis, self.name.clone()),\n kind,\n None,\n self.impl_of(),\n@@ -172,7 +172,7 @@ impl Context {\n id: Option<DefId>,\n ) -> TyCheckResult<()> {\n let name = sig.ident.inspect();\n- let vis = sig.ident.vis();\n+ let vis = self.instantiate_vis_modifier(&sig.ident.vis)?;\n let muty = Mutability::from(&name[..]);\n let kind = id.map_or(VarKind::Declared, VarKind::Defined);\n let comptime_decos = sig\n@@ -199,7 +199,7 @@ impl Context {\n let vi = VarInfo::new(\n t,\n muty,\n- vis,\n+ Visibility::new(vis, self.name.clone()),\n kind,\n Some(comptime_decos),\n self.impl_of(),\n@@ -238,18 +238,19 @@ impl Context {\n ast::VarPattern::Discard(_) => {\n return Ok(VarInfo {\n t: body_t.clone(),\n- ..VarInfo::const_default()\n+ ..VarInfo::const_default_private()\n });\n }\n- _ => todo!(),\n+ _ => unreachable!(),\n };\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n // already defined as const\n if sig.is_const() {\n let vi = self.decls.remove(ident.inspect()).unwrap_or_else(|| {\n VarInfo::new(\n body_t.clone(),\n Mutability::Const,\n- sig.vis(),\n+ Visibility::new(vis, self.name.clone()),\n VarKind::Declared,\n None,\n self.impl_of(),\n@@ -270,7 +271,6 @@ impl Context {\n } else {\n py_name\n };\n- let vis = ident.vis();\n let kind = if id.0 == 0 {\n VarKind::Declared\n } else {\n@@ -279,14 +279,14 @@ impl Context {\n let vi = VarInfo::new(\n body_t.clone(),\n muty,\n- vis,\n+ Visibility::new(vis, self.name.clone()),\n kind,\n None,\n self.impl_of(),\n py_name,\n self.absolutize(ident.name.loc()),\n );\n- log!(info \"Registered {}::{}: {}\", self.name, ident.name, vi);\n+ log!(info \"Registered {}{}: {}\", self.name, ident, vi);\n self.locals.insert(ident.name.clone(), vi.clone());\n Ok(vi)\n }\n@@ -300,9 +300,9 @@ impl Context {\n kind: ParamKind,\n ) -> TyCheckResult<()> {\n let vis = if cfg!(feature = \"py_compatible\") {\n- Public\n+ Visibility::BUILTIN_PUBLIC\n } else {\n- Private\n+ Visibility::private(self.name.clone())\n };\n let default = kind.default_info();\n let is_var_params = kind.is_var_params();\n@@ -622,6 +622,7 @@ impl Context {\n self.locals.insert(sig.ident.name.clone(), vi.clone());\n return Ok(vi);\n }\n+ let vis = self.instantiate_vis_modifier(&sig.ident.vis)?;\n let muty = if sig.ident.is_const() {\n Mutability::Const\n } else {\n@@ -717,7 +718,7 @@ impl Context {\n let vi = VarInfo::new(\n found_t,\n muty,\n- sig.ident.vis(),\n+ Visibility::new(vis, self.name.clone()),\n VarKind::Defined(id),\n Some(comptime_decos),\n self.impl_of(),\n@@ -746,6 +747,7 @@ impl Context {\n return Ok(());\n }\n }\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n let muty = if ident.is_const() {\n Mutability::Const\n } else {\n@@ -765,7 +767,7 @@ impl Context {\n let vi = VarInfo::new(\n failure_t,\n muty,\n- ident.vis(),\n+ Visibility::new(vis, self.name.clone()),\n VarKind::DoesNotExist,\n Some(comptime_decos),\n self.impl_of(),\n@@ -814,7 +816,7 @@ impl Context {\n ast::Signature::Subr(sig) => {\n if sig.is_const() {\n let tv_cache = self.instantiate_ty_bounds(&sig.bounds, PreRegister)?;\n- let vis = def.sig.vis();\n+ let vis = self.instantiate_vis_modifier(sig.vis())?;\n self.grow(__name__, ContextKind::Proc, vis, Some(tv_cache));\n let (obj, const_t) = match self.eval_const_block(&def.body.block) {\n Ok(obj) => (obj.clone(), v_enum(set! {obj})),\n@@ -852,7 +854,8 @@ impl Context {\n ast::Signature::Var(sig) => {\n if sig.is_const() {\n let kind = ContextKind::from(def.def_kind());\n- self.grow(__name__, kind, sig.vis(), None);\n+ let vis = self.instantiate_vis_modifier(sig.vis())?;\n+ self.grow(__name__, kind, vis, None);\n let (obj, const_t) = match self.eval_const_block(&def.body.block) {\n Ok(obj) => (obj.clone(), v_enum(set! {obj})),\n Err(errs) => {\n@@ -1048,7 +1051,8 @@ impl Context {\n ident: &Identifier,\n obj: ValueObj,\n ) -> CompileResult<()> {\n- if self.rec_get_const_obj(ident.inspect()).is_some() && ident.vis().is_private() {\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n+ if self.rec_get_const_obj(ident.inspect()).is_some() && vis.is_private() {\n Err(CompileErrors::from(CompileError::reassign_error(\n self.cfg.input.clone(),\n line!() as usize,\n@@ -1068,7 +1072,7 @@ impl Context {\n let vi = VarInfo::new(\n v_enum(set! {other.clone()}),\n Const,\n- ident.vis(),\n+ Visibility::new(vis, self.name.clone()),\n VarKind::Defined(id),\n None,\n self.impl_of(),\n@@ -1111,6 +1115,7 @@ impl Context {\n field.clone(),\n t.clone(),\n self.impl_of(),\n+ ctx.name.clone(),\n );\n ctx.decls.insert(varname, vi);\n }\n@@ -1120,7 +1125,7 @@ impl Context {\n \"base\",\n other.typ().clone(),\n Immutable,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n None,\n )?;\n }\n@@ -1133,12 +1138,18 @@ impl Context {\n \"__new__\",\n new_t.clone(),\n Immutable,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Some(\"__call__\".into()),\n )?;\n // \u5fc5\u8981\u306a\u3089\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u72ec\u81ea\u306b\u4e0a\u66f8\u304d\u3059\u308b\n // users can override this if necessary\n- methods.register_auto_impl(\"new\", new_t, Immutable, Public, None)?;\n+ methods.register_auto_impl(\n+ \"new\",\n+ new_t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ None,\n+ )?;\n ctx.methods_list\n .push((ClassDefType::Simple(gen.typ().clone()), methods));\n self.register_gen_mono_type(ident, gen, ctx, Const)\n@@ -1189,6 +1200,7 @@ impl Context {\n field.clone(),\n t.clone(),\n self.impl_of(),\n+ ctx.name.clone(),\n );\n ctx.decls.insert(varname, vi);\n }\n@@ -1202,11 +1214,17 @@ impl Context {\n \"__new__\",\n new_t.clone(),\n Immutable,\n- Private,\n+ Visibility::BUILTIN_PRIVATE,\n Some(\"__call__\".into()),\n )?;\n // \u5fc5\u8981\u306a\u3089\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u72ec\u81ea\u306b\u4e0a\u66f8\u304d\u3059\u308b\n- methods.register_auto_impl(\"new\", new_t, Immutable, Public, None)?;\n+ methods.register_auto_impl(\n+ \"new\",\n+ new_t,\n+ Immutable,\n+ Visibility::BUILTIN_PUBLIC,\n+ None,\n+ )?;\n ctx.methods_list\n .push((ClassDefType::Simple(gen.typ().clone()), methods));\n self.register_gen_mono_type(ident, gen, ctx, Const)\n@@ -1242,7 +1260,12 @@ impl Context {\n );\n let Some(TypeObj::Builtin(Type::Record(req))) = gen.base_or_sup() else { todo!(\"{gen}\") };\n for (field, t) in req.iter() {\n- let vi = VarInfo::instance_attr(field.clone(), t.clone(), self.impl_of());\n+ let vi = VarInfo::instance_attr(\n+ field.clone(),\n+ t.clone(),\n+ self.impl_of(),\n+ ctx.name.clone(),\n+ );\n ctx.decls\n .insert(VarName::from_str(field.symbol.clone()), vi);\n }\n@@ -1273,8 +1296,12 @@ impl Context {\n );\n if let Some(additional) = additional {\n for (field, t) in additional.iter() {\n- let vi =\n- VarInfo::instance_attr(field.clone(), t.clone(), self.impl_of());\n+ let vi = VarInfo::instance_attr(\n+ field.clone(),\n+ t.clone(),\n+ self.impl_of(),\n+ ctx.name.clone(),\n+ );\n ctx.decls\n .insert(VarName::from_str(field.symbol.clone()), vi);\n }\n@@ -1330,6 +1357,7 @@ impl Context {\n }\n \n pub(crate) fn register_type_alias(&mut self, ident: &Identifier, t: Type) -> CompileResult<()> {\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n if self.mono_types.contains_key(ident.inspect()) {\n Err(CompileErrors::from(CompileError::reassign_error(\n self.cfg.input.clone(),\n@@ -1338,7 +1366,7 @@ impl Context {\n self.caused_by(),\n ident.inspect(),\n )))\n- } else if self.rec_get_const_obj(ident.inspect()).is_some() && ident.vis().is_private() {\n+ } else if self.rec_get_const_obj(ident.inspect()).is_some() && vis.is_private() {\n // TODO: display where defined\n Err(CompileErrors::from(CompileError::reassign_error(\n self.cfg.input.clone(),\n@@ -1354,7 +1382,7 @@ impl Context {\n let vi = VarInfo::new(\n Type::Type,\n muty,\n- ident.vis(),\n+ Visibility::new(vis, self.name.clone()),\n VarKind::Defined(id),\n None,\n self.impl_of(),\n@@ -1376,6 +1404,7 @@ impl Context {\n ctx: Self,\n muty: Mutability,\n ) -> CompileResult<()> {\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n // FIXME: recursive search\n if self.mono_types.contains_key(ident.inspect()) {\n Err(CompileErrors::from(CompileError::reassign_error(\n@@ -1385,7 +1414,7 @@ impl Context {\n self.caused_by(),\n ident.inspect(),\n )))\n- } else if self.rec_get_const_obj(ident.inspect()).is_some() && ident.vis().is_private() {\n+ } else if self.rec_get_const_obj(ident.inspect()).is_some() && vis.is_private() {\n Err(CompileErrors::from(CompileError::reassign_error(\n self.cfg.input.clone(),\n line!() as usize,\n@@ -1401,7 +1430,7 @@ impl Context {\n let vi = VarInfo::new(\n meta_t,\n muty,\n- ident.vis(),\n+ Visibility::new(vis, self.name.clone()),\n VarKind::Defined(id),\n None,\n self.impl_of(),\n@@ -1454,6 +1483,7 @@ impl Context {\n ctx: Self,\n muty: Mutability,\n ) -> CompileResult<()> {\n+ let vis = self.instantiate_vis_modifier(&ident.vis)?;\n // FIXME: recursive search\n if self.patches.contains_key(ident.inspect()) {\n Err(CompileErrors::from(CompileError::reassign_error(\n@@ -1463,7 +1493,7 @@ impl Context {\n self.caused_by(),\n ident.inspect(),\n )))\n- } else if self.rec_get_const_obj(ident.inspect()).is_some() && ident.vis().is_private() {\n+ } else if self.rec_get_const_obj(ident.inspect()).is_some() && vis.is_private() {\n Err(CompileErrors::from(CompileError::reassign_error(\n self.cfg.input.clone(),\n line!() as usize,\n@@ -1481,7 +1511,7 @@ impl Context {\n VarInfo::new(\n meta_t,\n muty,\n- ident.vis(),\n+ Visibility::new(vis, self.name.clone()),\n VarKind::Defined(id),\n None,\n self.impl_of(),\n@@ -1758,7 +1788,7 @@ impl Context {\n )))\n } else if self.locals.get(ident.inspect()).is_some() {\n let vi = self.locals.remove(ident.inspect()).unwrap();\n- self.deleted_locals.insert(ident.name.clone(), vi);\n+ self.deleted_locals.insert(ident.raw.name.clone(), vi);\n Ok(())\n } else {\n Err(TyCheckErrors::from(TyCheckError::no_var_error(\n@@ -1831,7 +1861,7 @@ impl Context {\n #[allow(clippy::single_match)]\n match acc {\n hir::Accessor::Ident(ident) => {\n- if let Some(vi) = self.get_mut_current_scope_var(&ident.name) {\n+ if let Some(vi) = self.get_mut_current_scope_var(&ident.raw.name) {\n vi.t = t;\n } else {\n return Err(TyCheckErrors::from(TyCheckError::feature_error(\n@@ -1850,22 +1880,22 @@ impl Context {\n }\n \n pub(crate) fn inc_ref_simple_typespec(&self, simple: &SimpleTypeSpec) {\n- if let Ok(vi) = self.rec_get_var_info(\n+ if let Triple::Ok(vi) = self.rec_get_var_info(\n &simple.ident,\n crate::compile::AccessKind::Name,\n &self.cfg.input,\n- &self.name,\n+ self,\n ) {\n self.inc_ref(&vi, &simple.ident.name);\n }\n }\n \n pub(crate) fn inc_ref_const_local(&self, local: &ConstIdentifier) {\n- if let Ok(vi) = self.rec_get_var_info(\n+ if let Triple::Ok(vi) = self.rec_get_var_info(\n local,\n crate::compile::AccessKind::Name,\n &self.cfg.input,\n- &self.name,\n+ self,\n ) {\n self.inc_ref(&vi, &local.name);\n }\n", "declare.rs": "@@ -9,7 +9,7 @@ use crate::lower::ASTLowerer;\n use crate::ty::constructors::mono;\n use crate::ty::free::HasLevel;\n use crate::ty::value::{GenTypeObj, TypeObj};\n-use crate::ty::{HasType, Type};\n+use crate::ty::{HasType, Type, Visibility};\n \n use crate::compile::AccessKind;\n use crate::context::RegistrationMode;\n@@ -73,7 +73,7 @@ impl ASTLowerer {\n .assign_var_sig(&sig, found_body_t, id, py_name.clone())?;\n }\n // FIXME: Identifier::new should be used\n- let mut ident = hir::Identifier::bare(ident.dot.clone(), ident.name.clone());\n+ let mut ident = hir::Identifier::bare(ident.clone());\n ident.vi.t = found_body_t.clone();\n ident.vi.py_name = py_name;\n let sig = hir::VarSignature::new(ident, sig.t_spec);\n@@ -127,20 +127,15 @@ impl ASTLowerer {\n let vi = self\n .module\n .context\n- .rec_get_var_info(\n- &ident,\n- AccessKind::Name,\n- self.input(),\n- &self.module.context.name,\n- )\n+ .rec_get_var_info(&ident, AccessKind::Name, self.input(), &self.module.context)\n .unwrap_or(VarInfo::default());\n- let ident = hir::Identifier::new(ident.dot, ident.name, None, vi);\n+ let ident = hir::Identifier::new(ident, None, vi);\n let acc = hir::Accessor::Ident(ident);\n Ok(acc)\n }\n ast::Accessor::Attr(attr) => {\n let obj = self.fake_lower_expr(*attr.obj)?;\n- let ident = hir::Identifier::bare(attr.ident.dot, attr.ident.name);\n+ let ident = hir::Identifier::bare(attr.ident);\n Ok(obj.attr(ident))\n }\n other => Err(LowerErrors::from(LowerError::declare_error(\n@@ -177,9 +172,7 @@ impl ASTLowerer {\n \n fn fake_lower_call(&self, call: ast::Call) -> LowerResult<hir::Call> {\n let obj = self.fake_lower_expr(*call.obj)?;\n- let attr_name = call\n- .attr_name\n- .map(|ident| hir::Identifier::bare(ident.dot, ident.name));\n+ let attr_name = call.attr_name.map(hir::Identifier::bare);\n let args = self.fake_lower_args(call.args)?;\n Ok(hir::Call::new(obj, attr_name, args))\n }\n@@ -247,12 +240,12 @@ impl ASTLowerer {\n match sig {\n ast::Signature::Var(var) => {\n let ident = var.ident().unwrap().clone();\n- let ident = hir::Identifier::bare(ident.dot, ident.name);\n+ let ident = hir::Identifier::bare(ident);\n let sig = hir::VarSignature::new(ident, var.t_spec);\n Ok(hir::Signature::Var(sig))\n }\n ast::Signature::Subr(subr) => {\n- let ident = hir::Identifier::bare(subr.ident.dot, subr.ident.name);\n+ let ident = hir::Identifier::bare(subr.ident);\n let params = self.fake_lower_params(subr.params)?;\n let sig = hir::SubrSignature::new(ident, subr.bounds, params, subr.return_t_spec);\n Ok(hir::Signature::Subr(sig))\n@@ -454,19 +447,19 @@ impl ASTLowerer {\n self.declare_subtype(&ident, &t)?;\n }\n let muty = Mutability::from(&ident.inspect()[..]);\n- let vis = ident.vis();\n+ let vis = self.module.context.instantiate_vis_modifier(&ident.vis)?;\n let py_name = Str::rc(ident.inspect().trim_end_matches('!'));\n let vi = VarInfo::new(\n t,\n muty,\n- vis,\n+ Visibility::new(vis, self.module.context.name.clone()),\n VarKind::Declared,\n None,\n None,\n Some(py_name),\n self.module.context.absolutize(ident.loc()),\n );\n- let ident = hir::Identifier::new(ident.dot, ident.name, None, vi);\n+ let ident = hir::Identifier::new(ident, None, vi);\n let t_spec_expr = self.fake_lower_expr(*tasc.t_spec.t_spec_as_expr)?;\n let t_spec = hir::TypeSpecWithOp::new(\n tasc.t_spec.op,\n@@ -488,11 +481,10 @@ impl ASTLowerer {\n RegistrationMode::Normal,\n false,\n )?;\n- let namespace = self.module.context.name.clone();\n let ctx = self\n .module\n .context\n- .get_mut_singular_ctx(attr.obj.as_ref(), &namespace)?;\n+ .get_mut_singular_ctx(attr.obj.as_ref(), &self.module.context.name.clone())?;\n ctx.assign_var_sig(\n &ast::VarSignature::new(ast::VarPattern::Ident(attr.ident.clone()), None),\n &t,\n@@ -501,19 +493,22 @@ impl ASTLowerer {\n )?;\n let obj = self.fake_lower_expr(*attr.obj)?;\n let muty = Mutability::from(&attr.ident.inspect()[..]);\n- let vis = attr.ident.vis();\n+ let vis = self\n+ .module\n+ .context\n+ .instantiate_vis_modifier(&attr.ident.vis)?;\n let py_name = Str::rc(attr.ident.inspect().trim_end_matches('!'));\n let vi = VarInfo::new(\n t,\n muty,\n- vis,\n+ Visibility::new(vis, self.module.context.name.clone()),\n VarKind::Declared,\n None,\n None,\n Some(py_name),\n self.module.context.absolutize(attr.ident.loc()),\n );\n- let ident = hir::Identifier::new(attr.ident.dot, attr.ident.name, None, vi);\n+ let ident = hir::Identifier::new(attr.ident, None, vi);\n let attr = obj.attr_expr(ident);\n let t_spec_expr = self.fake_lower_expr(*tasc.t_spec.t_spec_as_expr)?;\n let t_spec = hir::TypeSpecWithOp::new(\n@@ -544,10 +539,11 @@ impl ASTLowerer {\n return Ok(());\n }\n if ident.is_const() {\n+ let vis = self.module.context.instantiate_vis_modifier(&ident.vis)?;\n let vi = VarInfo::new(\n t.clone(),\n Mutability::Const,\n- ident.vis(),\n+ Visibility::new(vis, self.module.context.name.clone()),\n VarKind::Declared,\n None,\n None,\n", "effectcheck.rs": "@@ -5,15 +5,12 @@\n use erg_common::config::ErgConfig;\n use erg_common::log;\n use erg_common::traits::{Locational, Stream};\n-use erg_common::vis::Visibility;\n use erg_common::Str;\n use erg_parser::token::TokenKind;\n-use Visibility::*;\n-\n-use crate::ty::HasType;\n \n use crate::error::{EffectError, EffectErrors};\n use crate::hir::{Array, Def, Dict, Expr, Params, Set, Signature, Tuple, HIR};\n+use crate::ty::{HasType, Visibility};\n \n #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]\n enum BlockKind {\n@@ -36,7 +33,7 @@ use BlockKind::*;\n #[derive(Debug)]\n pub struct SideEffectChecker {\n cfg: ErgConfig,\n- path_stack: Vec<(Str, Visibility)>,\n+ path_stack: Vec<Visibility>,\n block_stack: Vec<BlockKind>,\n errs: EffectErrors,\n }\n@@ -52,15 +49,13 @@ impl SideEffectChecker {\n }\n \n fn full_path(&self) -> String {\n- self.path_stack\n- .iter()\n- .fold(String::new(), |acc, (path, vis)| {\n- if vis.is_public() {\n- acc + \".\" + &path[..]\n- } else {\n- acc + \"::\" + &path[..]\n- }\n- })\n+ self.path_stack.iter().fold(String::new(), |acc, vis| {\n+ if vis.is_public() {\n+ acc + \".\" + &vis.def_namespace[..]\n+ } else {\n+ acc + \"::\" + &vis.def_namespace[..]\n+ }\n+ })\n }\n \n /// It is permitted to define a procedure in a function,\n@@ -85,7 +80,7 @@ impl SideEffectChecker {\n }\n \n pub fn check(mut self, hir: HIR) -> Result<HIR, (HIR, EffectErrors)> {\n- self.path_stack.push((hir.name.clone(), Private));\n+ self.path_stack.push(Visibility::private(hir.name.clone()));\n self.block_stack.push(Module);\n log!(info \"the side-effects checking process has started.{RESET}\");\n // At the top level, there is no problem with side effects, only check for purity violations.\n@@ -150,7 +145,8 @@ impl SideEffectChecker {\n }\n },\n Expr::Record(rec) => {\n- self.path_stack.push((Str::ever(\"<record>\"), Private));\n+ self.path_stack\n+ .push(Visibility::private(Str::ever(\"<record>\")));\n self.block_stack.push(Instant);\n for attr in rec.attrs.iter() {\n self.check_def(attr);\n@@ -184,10 +180,12 @@ impl SideEffectChecker {\n Expr::Lambda(lambda) => {\n let is_proc = lambda.is_procedural();\n if is_proc {\n- self.path_stack.push((Str::ever(\"<lambda!>\"), Private));\n+ self.path_stack\n+ .push(Visibility::private(Str::ever(\"<lambda!>\")));\n self.block_stack.push(Proc);\n } else {\n- self.path_stack.push((Str::ever(\"<lambda>\"), Private));\n+ self.path_stack\n+ .push(Visibility::private(Str::ever(\"<lambda>\")));\n self.block_stack.push(Func);\n }\n lambda.body.iter().for_each(|chunk| self.check_expr(chunk));\n@@ -244,10 +242,7 @@ impl SideEffectChecker {\n }\n \n fn check_def(&mut self, def: &Def) {\n- let name_and_vis = match &def.sig {\n- Signature::Var(var) => (var.inspect().clone(), var.vis()),\n- Signature::Subr(subr) => (subr.ident.inspect().clone(), subr.ident.vis()),\n- };\n+ let name_and_vis = Visibility::new(def.sig.vis().clone(), def.sig.inspect().clone());\n self.path_stack.push(name_and_vis);\n let is_procedural = def.sig.is_procedural();\n let is_subr = def.sig.is_subr();\n@@ -360,7 +355,8 @@ impl SideEffectChecker {\n }\n },\n Expr::Record(record) => {\n- self.path_stack.push((Str::ever(\"<record>\"), Private));\n+ self.path_stack\n+ .push(Visibility::private(Str::ever(\"<record>\")));\n self.block_stack.push(Instant);\n for attr in record.attrs.iter() {\n self.check_def(attr);\n@@ -433,10 +429,12 @@ impl SideEffectChecker {\n Expr::Lambda(lambda) => {\n let is_proc = lambda.is_procedural();\n if is_proc {\n- self.path_stack.push((Str::ever(\"<lambda!>\"), Private));\n+ self.path_stack\n+ .push(Visibility::private(Str::ever(\"<lambda!>\")));\n self.block_stack.push(Proc);\n } else {\n- self.path_stack.push((Str::ever(\"<lambda>\"), Private));\n+ self.path_stack\n+ .push(Visibility::private(Str::ever(\"<lambda>\")));\n self.block_stack.push(Func);\n }\n self.check_params(&lambda.params);\n", "lower.rs": "@@ -9,10 +9,10 @@ use erg_common::error::{Location, MultiErrorDisplay};\n use erg_common::set;\n use erg_common::set::Set;\n use erg_common::traits::{Locational, NoTypeDisplay, Runnable, Stream};\n-use erg_common::vis::Visibility;\n+use erg_common::triple::Triple;\n use erg_common::{fmt_option, fn_name, log, option_enum_unwrap, switch_lang, Str};\n \n-use erg_parser::ast;\n+use erg_parser::ast::{self, VisModifierSpec};\n use erg_parser::ast::{OperationKind, TypeSpecWithOp, VarName, AST};\n use erg_parser::build_ast::ASTBuilder;\n use erg_parser::token::{Token, TokenKind};\n@@ -27,7 +27,7 @@ use crate::ty::constructors::{\n use crate::ty::free::Constraint;\n use crate::ty::typaram::TyParam;\n use crate::ty::value::{GenTypeObj, TypeObj, ValueObj};\n-use crate::ty::{HasType, ParamTy, Type};\n+use crate::ty::{HasType, ParamTy, Type, VisibilityModifier};\n \n use crate::context::{\n ClassDefType, Context, ContextKind, ContextProvider, ModuleContext, RegistrationMode,\n@@ -43,7 +43,8 @@ use crate::reorder::Reorderer;\n use crate::varinfo::{VarInfo, VarKind};\n use crate::AccessKind;\n use crate::{feature_error, unreachable_error};\n-use Visibility::*;\n+\n+use VisibilityModifier::*;\n \n /// Checks & infers types of an AST, and convert (lower) it into a HIR\n #[derive(Debug)]\n@@ -624,14 +625,40 @@ impl ASTLowerer {\n }\n ast::Accessor::Attr(attr) => {\n let obj = self.lower_expr(*attr.obj)?;\n- let vi = self.module.context.get_attr_info(\n+ let vi = match self.module.context.get_attr_info(\n &obj,\n &attr.ident,\n &self.cfg.input,\n- &self.module.context.name,\n- )?;\n+ &self.module.context,\n+ ) {\n+ Triple::Ok(vi) => vi,\n+ Triple::Err(errs) => {\n+ self.errs.push(errs);\n+ VarInfo::ILLEGAL.clone()\n+ }\n+ Triple::None => {\n+ let self_t = obj.t();\n+ let (similar_info, similar_name) = self\n+ .module\n+ .context\n+ .get_similar_attr_and_info(&self_t, attr.ident.inspect())\n+ .unzip();\n+ let err = LowerError::detailed_no_attr_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ attr.ident.loc(),\n+ self.module.context.caused_by(),\n+ &self_t,\n+ attr.ident.inspect(),\n+ similar_name,\n+ similar_info,\n+ );\n+ self.errs.push(err);\n+ VarInfo::ILLEGAL.clone()\n+ }\n+ };\n self.inc_ref(&vi, &attr.ident.name);\n- let ident = hir::Identifier::new(attr.ident.dot, attr.ident.name, None, vi);\n+ let ident = hir::Identifier::new(attr.ident, None, vi);\n let acc = hir::Accessor::Attr(hir::Attribute::new(obj, ident));\n Ok(acc)\n }\n@@ -649,7 +676,7 @@ impl ASTLowerer {\n \n fn lower_ident(&mut self, ident: ast::Identifier) -> LowerResult<hir::Identifier> {\n // `match` is a special form, typing is magic\n- let (vi, __name__) = if ident.vis().is_private()\n+ let (vi, __name__) = if ident.vis.is_private()\n && (&ident.inspect()[..] == \"match\" || &ident.inspect()[..] == \"match!\")\n {\n (\n@@ -660,22 +687,47 @@ impl ASTLowerer {\n None,\n )\n } else {\n+ let res = match self.module.context.rec_get_var_info(\n+ &ident,\n+ AccessKind::Name,\n+ &self.cfg.input,\n+ &self.module.context,\n+ ) {\n+ Triple::Ok(vi) => vi,\n+ Triple::Err(err) => {\n+ self.errs.push(err);\n+ VarInfo::ILLEGAL.clone()\n+ }\n+ Triple::None => {\n+ let (similar_info, similar_name) = self\n+ .module\n+ .context\n+ .get_similar_name_and_info(ident.inspect())\n+ .unzip();\n+ let err = LowerError::detailed_no_var_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ ident.loc(),\n+ self.module.context.caused_by(),\n+ ident.inspect(),\n+ similar_name,\n+ similar_info,\n+ );\n+ self.errs.push(err);\n+ VarInfo::ILLEGAL.clone()\n+ }\n+ };\n (\n- self.module.context.rec_get_var_info(\n- &ident,\n- AccessKind::Name,\n- &self.cfg.input,\n- &self.module.context.name,\n- )?,\n+ res,\n self.module\n .context\n- .get_singular_ctx_by_ident(&ident, &self.module.context.name)\n+ .get_singular_ctx_by_ident(&ident, &self.module.context)\n .ok()\n .map(|ctx| ctx.name.clone()),\n )\n };\n self.inc_ref(&vi, &ident.name);\n- let ident = hir::Identifier::new(ident.dot, ident.name, __name__, vi);\n+ let ident = hir::Identifier::new(ident, __name__, vi);\n Ok(ident)\n }\n \n@@ -700,7 +752,7 @@ impl ASTLowerer {\n let t = self\n .module\n .context\n- .get_binop_t(&bin.op, &args, &self.cfg.input, &self.module.context.name)\n+ .get_binop_t(&bin.op, &args, &self.cfg.input, &self.module.context)\n .unwrap_or_else(|errs| {\n self.errs.extend(errs);\n VarInfo::ILLEGAL.clone()\n@@ -724,7 +776,7 @@ impl ASTLowerer {\n let t = self\n .module\n .context\n- .get_unaryop_t(&unary.op, &args, &self.cfg.input, &self.module.context.name)\n+ .get_unaryop_t(&unary.op, &args, &self.cfg.input, &self.module.context)\n .unwrap_or_else(|errs| {\n self.errs.extend(errs);\n VarInfo::ILLEGAL.clone()\n@@ -824,7 +876,7 @@ impl ASTLowerer {\n &hir_args.pos_args,\n &hir_args.kw_args,\n &self.cfg.input,\n- &self.module.context.name,\n+ &self.module.context,\n ) {\n Ok(vi) => vi,\n Err((vi, es)) => {\n@@ -835,12 +887,7 @@ impl ASTLowerer {\n };\n let attr_name = if let Some(attr_name) = call.attr_name {\n self.inc_ref(&vi, &attr_name.name);\n- Some(hir::Identifier::new(\n- attr_name.dot,\n- attr_name.name,\n- None,\n- vi,\n- ))\n+ Some(hir::Identifier::new(attr_name, None, vi))\n } else {\n *obj.ref_mut_t() = vi.t;\n None\n@@ -904,17 +951,17 @@ impl ASTLowerer {\n let args = self.lower_record(pack.args)?;\n let args = vec![hir::PosArg::new(hir::Expr::Record(args))];\n let attr_name = ast::Identifier::new(\n- Some(Token::new(\n+ VisModifierSpec::Public(Token::new(\n TokenKind::Dot,\n Str::ever(\".\"),\n- pack.connector.lineno,\n- pack.connector.col_begin,\n+ pack.connector.ln_begin().unwrap(),\n+ pack.connector.col_begin().unwrap(),\n )),\n ast::VarName::new(Token::new(\n TokenKind::Symbol,\n Str::ever(\"new\"),\n- pack.connector.lineno,\n- pack.connector.col_begin,\n+ pack.connector.ln_begin().unwrap(),\n+ pack.connector.col_begin().unwrap(),\n )),\n );\n let vi = match self.module.context.get_call_t(\n@@ -923,7 +970,7 @@ impl ASTLowerer {\n &args,\n &[],\n &self.cfg.input,\n- &self.module.context.name,\n+ &self.module.context,\n ) {\n Ok(vi) => vi,\n Err((vi, errs)) => {\n@@ -932,7 +979,7 @@ impl ASTLowerer {\n }\n };\n let args = hir::Args::pos_only(args, None);\n- let attr_name = hir::Identifier::new(attr_name.dot, attr_name.name, None, vi);\n+ let attr_name = hir::Identifier::new(attr_name, None, vi);\n Ok(hir::Call::new(class, Some(attr_name), args))\n }\n \n@@ -1209,7 +1256,10 @@ impl ASTLowerer {\n ));\n }\n let kind = ContextKind::from(def.def_kind());\n- let vis = def.sig.vis();\n+ let vis = self\n+ .module\n+ .context\n+ .instantiate_vis_modifier(def.sig.vis())?;\n let res = match def.sig {\n ast::Signature::Subr(sig) => {\n let tv_cache = self\n@@ -1263,7 +1313,7 @@ impl ASTLowerer {\n let ident = match &sig.pat {\n ast::VarPattern::Ident(ident) => ident.clone(),\n ast::VarPattern::Discard(token) => {\n- ast::Identifier::new(None, VarName::new(token.clone()))\n+ ast::Identifier::private_from_token(token.clone())\n }\n _ => unreachable!(),\n };\n@@ -1287,7 +1337,7 @@ impl ASTLowerer {\n body.id,\n None,\n )?;\n- let ident = hir::Identifier::new(ident.dot, ident.name, None, vi);\n+ let ident = hir::Identifier::new(ident, None, vi);\n let sig = hir::VarSignature::new(ident, sig.t_spec);\n let body = hir::DefBody::new(body.op, block, body.id);\n Ok(hir::Def::new(hir::Signature::Var(sig), body))\n@@ -1358,7 +1408,7 @@ impl ASTLowerer {\n );\n self.warns.push(warn);\n }\n- let ident = hir::Identifier::new(sig.ident.dot, sig.ident.name, None, vi);\n+ let ident = hir::Identifier::new(sig.ident, None, vi);\n let sig =\n hir::SubrSignature::new(ident, sig.bounds, params, sig.return_t_spec);\n let body = hir::DefBody::new(body.op, block, body.id);\n@@ -1371,7 +1421,7 @@ impl ASTLowerer {\n &Type::Failure,\n )?;\n self.errs.extend(errs);\n- let ident = hir::Identifier::new(sig.ident.dot, sig.ident.name, None, vi);\n+ let ident = hir::Identifier::new(sig.ident, None, vi);\n let sig =\n hir::SubrSignature::new(ident, sig.bounds, params, sig.return_t_spec);\n let block =\n@@ -1396,7 +1446,7 @@ impl ASTLowerer {\n .unwrap()\n .fake_subr_assign(&sig.ident, &sig.decorators, Type::Failure)?;\n let block = self.lower_block(body.block)?;\n- let ident = hir::Identifier::bare(sig.ident.dot, sig.ident.name);\n+ let ident = hir::Identifier::bare(sig.ident);\n let sig = hir::SubrSignature::new(ident, sig.bounds, params, sig.return_t_spec);\n let body = hir::DefBody::new(body.op, block, body.id);\n Ok(hir::Def::new(hir::Signature::Subr(sig), body))\n@@ -1439,12 +1489,12 @@ impl ASTLowerer {\n let kind = ContextKind::MethodDefs(impl_trait.as_ref().map(|(t, _)| t.clone()));\n self.module\n .context\n- .grow(&class.local_name(), kind, hir_def.sig.vis(), None);\n+ .grow(&class.local_name(), kind, hir_def.sig.vis().clone(), None);\n for attr in methods.attrs.iter_mut() {\n match attr {\n ast::ClassAttr::Def(def) => {\n- if methods.vis.is(TokenKind::Dot) {\n- def.sig.ident_mut().unwrap().dot = Some(Token::new(\n+ if methods.vis.is_public() {\n+ def.sig.ident_mut().unwrap().vis = VisModifierSpec::Public(Token::new(\n TokenKind::Dot,\n \".\",\n def.sig.ln_begin().unwrap_or(0),\n@@ -1641,14 +1691,17 @@ impl ASTLowerer {\n let mut hir_methods = hir::Block::empty();\n for mut methods in class_def.methods_list.into_iter() {\n let kind = ContextKind::PatchMethodDefs(base_t.clone());\n- self.module\n- .context\n- .grow(hir_def.sig.ident().inspect(), kind, hir_def.sig.vis(), None);\n+ self.module.context.grow(\n+ hir_def.sig.ident().inspect(),\n+ kind,\n+ hir_def.sig.vis().clone(),\n+ None,\n+ );\n for attr in methods.attrs.iter_mut() {\n match attr {\n ast::ClassAttr::Def(def) => {\n- if methods.vis.is(TokenKind::Dot) {\n- def.sig.ident_mut().unwrap().dot = Some(Token::new(\n+ if methods.vis.is_public() {\n+ def.sig.ident_mut().unwrap().vis = VisModifierSpec::Public(Token::new(\n TokenKind::Dot,\n \".\",\n def.sig.ln_begin().unwrap(),\n@@ -2037,7 +2090,7 @@ impl ASTLowerer {\n let ctx = self\n .module\n .context\n- .get_singular_ctx_by_hir_expr(&expr, &self.module.context.name)?;\n+ .get_singular_ctx_by_hir_expr(&expr, &self.module.context)?;\n // REVIEW: need to use subtype_of?\n if ctx.super_traits.iter().all(|trait_| trait_ != &spec_t)\n && ctx.super_classes.iter().all(|class| class != &spec_t)\n@@ -2089,14 +2142,30 @@ impl ASTLowerer {\n &ident,\n AccessKind::Name,\n &self.cfg.input,\n- &self.module.context.name,\n+ &self.module.context,\n )\n- .or_else(|_e| {\n+ .none_or_else(|| {\n self.module.context.rec_get_var_info(\n &ident,\n AccessKind::Name,\n &self.cfg.input,\n- &self.module.context.name,\n+ &self.module.context,\n+ )\n+ })\n+ .none_or_result(|| {\n+ let (similar_info, similar_name) = self\n+ .module\n+ .context\n+ .get_similar_name_and_info(ident.inspect())\n+ .unzip();\n+ LowerError::detailed_no_var_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ ident.loc(),\n+ self.module.context.caused_by(),\n+ ident.inspect(),\n+ similar_name,\n+ similar_info,\n )\n })?;\n if is_instance_ascription {\n@@ -2119,10 +2188,10 @@ impl ASTLowerer {\n let qual_name = self\n .module\n .context\n- .get_singular_ctx_by_ident(&ident, &self.module.context.name)\n+ .get_singular_ctx_by_ident(&ident, &self.module.context)\n .ok()\n .map(|ctx| ctx.name.clone());\n- let ident = hir::Identifier::new(ident.dot, ident.name, qual_name, ident_vi);\n+ let ident = hir::Identifier::new(ident, qual_name, ident_vi);\n let expr = hir::Expr::Accessor(hir::Accessor::Ident(ident));\n let t_spec = self.lower_type_spec_with_op(tasc.t_spec, spec_t)?;\n Ok(expr.type_asc(t_spec))\n", "hir.rs": "@@ -6,7 +6,6 @@ use erg_common::error::Location;\n #[allow(unused_imports)]\n use erg_common::log;\n use erg_common::traits::{Locational, NestedDisplay, NoTypeDisplay, Stream};\n-use erg_common::vis::{Field, Visibility};\n use erg_common::Str;\n use erg_common::{\n enum_unwrap, fmt_option, fmt_vec, impl_display_for_enum, impl_display_from_nested,\n@@ -23,7 +22,7 @@ use erg_parser::token::{Token, TokenKind, DOT};\n use crate::ty::constructors::{array_t, dict_t, set_t, tuple_t};\n use crate::ty::typaram::TyParam;\n use crate::ty::value::{GenTypeObj, ValueObj};\n-use crate::ty::{HasType, Type};\n+use crate::ty::{Field, HasType, Type, VisibilityModifier};\n \n use crate::context::eval::type_from_token_kind;\n use crate::error::readable_name;\n@@ -381,22 +380,14 @@ impl Args {\n \n #[derive(Debug, Clone, PartialEq, Eq, Hash)]\n pub struct Identifier {\n- pub dot: Option<Token>,\n- pub name: VarName,\n+ pub raw: ast::Identifier,\n pub qual_name: Option<Str>,\n pub vi: VarInfo,\n }\n \n impl NestedDisplay for Identifier {\n fn fmt_nest(&self, f: &mut fmt::Formatter<'_>, _level: usize) -> fmt::Result {\n- match &self.dot {\n- Some(_dot) => {\n- write!(f, \".{}\", self.name)?;\n- }\n- None => {\n- write!(f, \"::{}\", self.name)?;\n- }\n- }\n+ write!(f, \"{}\", self.raw)?;\n if let Some(qn) = &self.qual_name {\n write!(f, \"(qual_name: {qn})\")?;\n }\n@@ -409,10 +400,7 @@ impl NestedDisplay for Identifier {\n \n impl NoTypeDisplay for Identifier {\n fn to_string_notype(&self) -> String {\n- match &self.dot {\n- Some(_dot) => format!(\".{}\", self.name),\n- None => format!(\"::{}\", self.name),\n- }\n+ self.raw.to_string()\n }\n }\n \n@@ -439,56 +427,50 @@ impl HasType for Identifier {\n \n impl Locational for Identifier {\n fn loc(&self) -> Location {\n- if let Some(dot) = &self.dot {\n- Location::concat(dot, &self.name)\n- } else {\n- self.name.loc()\n- }\n+ self.raw.loc()\n }\n }\n \n impl From<&Identifier> for Field {\n fn from(ident: &Identifier) -> Self {\n- Self::new(ident.vis(), ident.inspect().clone())\n+ Self::new(ident.vis().clone(), ident.inspect().clone())\n }\n }\n \n impl Identifier {\n- pub const fn new(\n- dot: Option<Token>,\n- name: VarName,\n- qual_name: Option<Str>,\n- vi: VarInfo,\n- ) -> Self {\n- Self {\n- dot,\n- name,\n- qual_name,\n- vi,\n- }\n+ pub const fn new(raw: ast::Identifier, qual_name: Option<Str>, vi: VarInfo) -> Self {\n+ Self { raw, qual_name, vi }\n }\n \n pub fn public(name: &'static str) -> Self {\n- Self::bare(\n- Some(Token::from_str(TokenKind::Dot, \".\")),\n- VarName::from_static(name),\n- )\n+ let ident = ast::Identifier::public_from_token(\n+ Token::from_str(TokenKind::Dot, \".\"),\n+ Token::static_symbol(name),\n+ );\n+ Self::bare(ident)\n }\n \n pub fn private(name: &'static str) -> Self {\n- Self::bare(None, VarName::from_static(name))\n+ let ident = ast::Identifier::private_from_token(Token::static_symbol(name));\n+ Self::bare(ident)\n }\n \n pub fn private_with_line(name: Str, line: u32) -> Self {\n- Self::bare(None, VarName::from_str_and_line(name, line))\n+ let ident = ast::Identifier::private_from_token(Token::symbol_with_line(&name, line));\n+ Self::bare(ident)\n }\n \n pub fn public_with_line(dot: Token, name: Str, line: u32) -> Self {\n- Self::bare(Some(dot), VarName::from_str_and_line(name, line))\n+ let ident = ast::Identifier::public_from_token(dot, Token::symbol_with_line(&name, line));\n+ Self::bare(ident)\n }\n \n- pub const fn bare(dot: Option<Token>, name: VarName) -> Self {\n- Self::new(dot, name, None, VarInfo::const_default())\n+ pub const fn bare(ident: ast::Identifier) -> Self {\n+ if ident.vis.is_public() {\n+ Self::new(ident, None, VarInfo::const_default_public())\n+ } else {\n+ Self::new(ident, None, VarInfo::const_default_private())\n+ }\n }\n \n pub fn is_py_api(&self) -> bool {\n@@ -496,18 +478,15 @@ impl Identifier {\n }\n \n pub fn is_const(&self) -> bool {\n- self.name.is_const()\n+ self.raw.is_const()\n }\n \n- pub const fn vis(&self) -> Visibility {\n- match &self.dot {\n- Some(_) => Visibility::Public,\n- None => Visibility::Private,\n- }\n+ pub fn vis(&self) -> &VisibilityModifier {\n+ &self.vi.vis.modifier\n }\n \n pub const fn inspect(&self) -> &Str {\n- self.name.inspect()\n+ self.raw.inspect()\n }\n \n /// show dot + name (no qual_name & type)\n@@ -516,11 +495,11 @@ impl Identifier {\n }\n \n pub fn is_procedural(&self) -> bool {\n- self.name.is_procedural()\n+ self.raw.is_procedural()\n }\n \n- pub fn downcast(self) -> erg_parser::ast::Identifier {\n- erg_parser::ast::Identifier::new(self.dot, self.name)\n+ pub fn downcast(self) -> ast::Identifier {\n+ self.raw\n }\n }\n \n@@ -598,12 +577,20 @@ impl Accessor {\n Self::Ident(Identifier::public_with_line(DOT, name, line))\n }\n \n- pub const fn private(name: Token, vi: VarInfo) -> Self {\n- Self::Ident(Identifier::new(None, VarName::new(name), None, vi))\n+ pub fn private(name: Token, vi: VarInfo) -> Self {\n+ Self::Ident(Identifier::new(\n+ ast::Identifier::private_from_token(name),\n+ None,\n+ vi,\n+ ))\n }\n \n pub fn public(name: Token, vi: VarInfo) -> Self {\n- Self::Ident(Identifier::new(Some(DOT), VarName::new(name), None, vi))\n+ Self::Ident(Identifier::new(\n+ ast::Identifier::public_from_token(DOT, name),\n+ None,\n+ vi,\n+ ))\n }\n \n pub fn attr(obj: Expr, ident: Identifier) -> Self {\n@@ -655,12 +642,12 @@ impl Accessor {\n seps.remove(seps.len() - 1)\n })\n .or_else(|| {\n- let mut raw_parts = ident.name.inspect().split_with(&[\"'\"]);\n+ let mut raw_parts = ident.inspect().split_with(&[\"'\"]);\n // \"'aaa'\".split_with(&[\"'\"]) == [\"\", \"aaa\", \"\"]\n if raw_parts.len() == 3 || raw_parts.len() == 4 {\n Some(raw_parts.remove(1))\n } else {\n- Some(ident.name.inspect())\n+ Some(ident.inspect())\n }\n }),\n _ => None,\n@@ -1580,9 +1567,13 @@ impl VarSignature {\n self.ident.inspect()\n }\n \n- pub fn vis(&self) -> Visibility {\n+ pub fn vis(&self) -> &VisibilityModifier {\n self.ident.vis()\n }\n+\n+ pub const fn name(&self) -> &VarName {\n+ &self.ident.raw.name\n+ }\n }\n \n /// Once the default_value is set to Some, all subsequent values must be Some\n@@ -1864,6 +1855,10 @@ impl SubrSignature {\n pub fn is_procedural(&self) -> bool {\n self.ident.is_procedural()\n }\n+\n+ pub const fn name(&self) -> &VarName {\n+ &self.ident.raw.name\n+ }\n }\n \n #[derive(Debug, Clone, PartialEq, Eq, Hash)]\n@@ -1947,13 +1942,20 @@ impl Signature {\n }\n }\n \n- pub const fn vis(&self) -> Visibility {\n+ pub fn vis(&self) -> &VisibilityModifier {\n match self {\n Self::Var(v) => v.ident.vis(),\n Self::Subr(s) => s.ident.vis(),\n }\n }\n \n+ pub const fn inspect(&self) -> &Str {\n+ match self {\n+ Self::Var(v) => v.ident.inspect(),\n+ Self::Subr(s) => s.ident.inspect(),\n+ }\n+ }\n+\n pub const fn ident(&self) -> &Identifier {\n match self {\n Self::Var(v) => &v.ident,\n@@ -1975,6 +1977,13 @@ impl Signature {\n }\n }\n \n+ pub const fn name(&self) -> &VarName {\n+ match self {\n+ Self::Var(v) => v.name(),\n+ Self::Subr(s) => s.name(),\n+ }\n+ }\n+\n pub fn t_spec(&self) -> Option<&TypeSpec> {\n match self {\n Self::Var(v) => v.t_spec.as_ref(),\n", "ownercheck.rs": "@@ -6,13 +6,11 @@ use erg_common::error::Location;\n use erg_common::set::Set;\n use erg_common::style::colors::DEBUG_MAIN;\n use erg_common::traits::{Locational, Stream};\n-use erg_common::vis::Visibility;\n use erg_common::Str;\n use erg_common::{impl_display_from_debug, log};\n use erg_parser::ast::{ParamPattern, VarName};\n-use Visibility::*;\n \n-use crate::ty::{HasType, Ownership};\n+use crate::ty::{HasType, Ownership, Visibility};\n \n use crate::error::{OwnershipError, OwnershipErrors};\n use crate::hir::{self, Accessor, Array, Block, Def, Expr, Identifier, Signature, Tuple, HIR};\n@@ -39,7 +37,7 @@ impl_display_from_debug!(LocalVars);\n #[derive(Debug)]\n pub struct OwnershipChecker {\n cfg: ErgConfig,\n- path_stack: Vec<(Str, Visibility)>,\n+ path_stack: Vec<Visibility>,\n dict: Dict<Str, LocalVars>,\n errs: OwnershipErrors,\n }\n@@ -55,15 +53,13 @@ impl OwnershipChecker {\n }\n \n fn full_path(&self) -> String {\n- self.path_stack\n- .iter()\n- .fold(String::new(), |acc, (path, vis)| {\n- if vis.is_public() {\n- acc + \".\" + &path[..]\n- } else {\n- acc + \"::\" + &path[..]\n- }\n- })\n+ self.path_stack.iter().fold(String::new(), |acc, vis| {\n+ if vis.is_public() {\n+ acc + \".\" + &vis.def_namespace[..]\n+ } else {\n+ acc + \"::\" + &vis.def_namespace[..]\n+ }\n+ })\n }\n \n // move\u3055\u308c\u305f\u5f8c\u306e\u5909\u6570\u304c\u4f7f\u7528\u3055\u308c\u3066\u3044\u306a\u3044\u304b\u30c1\u30a7\u30c3\u30af\u3059\u308b\n@@ -71,7 +67,7 @@ impl OwnershipChecker {\n pub fn check(&mut self, hir: HIR) -> Result<HIR, (HIR, OwnershipErrors)> {\n log!(info \"the ownership checking process has started.{RESET}\");\n if self.full_path() != (\"::\".to_string() + &hir.name[..]) {\n- self.path_stack.push((hir.name.clone(), Private));\n+ self.path_stack.push(Visibility::private(hir.name.clone()));\n self.dict\n .insert(Str::from(self.full_path()), LocalVars::default());\n }\n@@ -106,7 +102,8 @@ impl OwnershipChecker {\n Signature::Var(var) => var.inspect().clone(),\n Signature::Subr(subr) => subr.ident.inspect().clone(),\n };\n- self.path_stack.push((name, def.sig.vis()));\n+ self.path_stack\n+ .push(Visibility::new(def.sig.vis().clone(), name));\n self.dict\n .insert(Str::from(self.full_path()), LocalVars::default());\n if let Signature::Subr(subr) = &def.sig {\n@@ -247,7 +244,8 @@ impl OwnershipChecker {\n },\n // TODO: capturing\n Expr::Lambda(lambda) => {\n- let name_and_vis = (Str::from(format!(\"<lambda_{}>\", lambda.id)), Private);\n+ let name_and_vis =\n+ Visibility::private(Str::from(format!(\"<lambda_{}>\", lambda.id)));\n self.path_stack.push(name_and_vis);\n self.dict\n .insert(Str::from(self.full_path()), LocalVars::default());\n@@ -289,11 +287,11 @@ impl OwnershipChecker {\n fn nth_outer_scope(&mut self, n: usize) -> &mut LocalVars {\n let path = self.path_stack.iter().take(self.path_stack.len() - n).fold(\n String::new(),\n- |acc, (path, vis)| {\n+ |acc, vis| {\n if vis.is_public() {\n- acc + \".\" + &path[..]\n+ acc + \".\" + &vis.def_namespace[..]\n } else {\n- acc + \"::\" + &path[..]\n+ acc + \"::\" + &vis.def_namespace[..]\n }\n },\n );\n", "reorder.rs": "@@ -123,7 +123,6 @@ impl Reorderer {\n /// ```\n fn flatten_method_decls(&mut self, new: &mut Vec<Expr>, methods: Methods) {\n let class = methods.class_as_expr.as_ref();\n- let vis = methods.vis();\n for method in methods.attrs.into_iter() {\n match method {\n ClassAttr::Decl(decl) => {\n@@ -138,11 +137,7 @@ impl Reorderer {\n ));\n continue;\n };\n- let attr = if vis.is_public() {\n- Identifier::new(Some(methods.vis.clone()), ident.name)\n- } else {\n- Identifier::new(None, ident.name)\n- };\n+ let attr = Identifier::new(methods.vis.clone(), ident.name);\n let expr = class.clone().attr_expr(attr);\n let decl = TypeAscription::new(expr, decl.t_spec);\n new.push(Expr::TypeAscription(decl));\n", "transpile.rs": "@@ -787,9 +787,9 @@ impl ScriptGenerator {\n if let Some(py_name) = ident.vi.py_name {\n return demangle(&py_name);\n }\n- let name = ident.name.into_token().content.to_string();\n+ let name = ident.inspect().to_string();\n let name = replace_non_symbolic(name);\n- if ident.dot.is_some() {\n+ if ident.vis().is_public() {\n name\n } else {\n format!(\"{name}__\")\n@@ -941,7 +941,7 @@ impl ScriptGenerator {\n demangle(&patch_def.sig.ident().to_string_notype()),\n demangle(&def.sig.ident().to_string_notype()),\n );\n- def.sig.ident_mut().name = VarName::from_str(Str::from(name));\n+ def.sig.ident_mut().raw.name = VarName::from_str(Str::from(name));\n code += &\" \".repeat(self.level);\n code += &self.transpile_def(def);\n code.push('\\n');\n", "typaram.rs": "@@ -7,7 +7,6 @@ use erg_common::dict::Dict;\n use erg_common::set;\n use erg_common::set::Set;\n use erg_common::traits::{LimitedDisplay, StructuralEq};\n-use erg_common::vis::Field;\n use erg_common::Str;\n use erg_common::{dict, log};\n \n@@ -19,7 +18,7 @@ use super::free::{\n };\n use super::value::ValueObj;\n use super::Type;\n-use super::{ConstSubr, ParamTy, UserConstSubr};\n+use super::{ConstSubr, Field, ParamTy, UserConstSubr};\n \n #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]\n #[repr(u8)]\n", "value.rs": "@@ -16,7 +16,6 @@ use erg_common::python_util::PythonVersion;\n use erg_common::serialize::*;\n use erg_common::set::Set;\n use erg_common::shared::Shared;\n-use erg_common::vis::Field;\n use erg_common::{dict, fmt_iter, impl_display_from_debug, log, switch_lang};\n use erg_common::{RcArray, Str};\n use erg_parser::ast::{ConstArgs, ConstExpr};\n@@ -28,7 +27,7 @@ use self::value_set::inner_class;\n use super::codeobj::CodeObj;\n use super::constructors::{array_t, dict_t, mono, poly, refinement, set_t, tuple_t};\n use super::typaram::TyParam;\n-use super::{ConstSubr, HasType, Predicate, Type};\n+use super::{ConstSubr, Field, HasType, Predicate, Type};\n \n pub struct EvalValueError(pub Box<ErrorCore>);\n \n@@ -1311,11 +1310,11 @@ impl ValueObj {\n }\n Self::Subr(subr) => subr.as_type().map(TypeObj::Builtin),\n Self::Array(elems) | Self::Tuple(elems) => {\n- erg_common::log!(err \"as_type({})\", erg_common::fmt_vec(elems));\n+ log!(err \"as_type({})\", erg_common::fmt_vec(elems));\n None\n }\n Self::Dict(elems) => {\n- erg_common::log!(err \"as_type({elems})\");\n+ log!(err \"as_type({elems})\");\n None\n }\n _other => None,\n", "varinfo.rs": "@@ -3,14 +3,12 @@ use std::path::PathBuf;\n \n use erg_common::error::Location;\n use erg_common::set::Set;\n-use erg_common::vis::{Field, Visibility};\n use erg_common::Str;\n-use Visibility::*;\n \n use erg_parser::ast::DefId;\n \n use crate::context::DefaultInfo;\n-use crate::ty::{HasType, Type};\n+use crate::ty::{Field, HasType, Type, Visibility};\n \n #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]\n #[repr(u8)]\n@@ -200,18 +198,31 @@ impl HasType for VarInfo {\n \n impl Default for VarInfo {\n fn default() -> Self {\n- Self::const_default()\n+ Self::const_default_private()\n }\n }\n \n impl VarInfo {\n- pub const ILLEGAL: &'static Self = &Self::const_default();\n+ pub const ILLEGAL: &'static Self = &Self::const_default_private();\n \n- pub const fn const_default() -> Self {\n+ pub const fn const_default_private() -> Self {\n Self::new(\n Type::Failure,\n Immutable,\n- Private,\n+ Visibility::DUMMY_PRIVATE,\n+ VarKind::DoesNotExist,\n+ None,\n+ None,\n+ None,\n+ AbsLocation::unknown(),\n+ )\n+ }\n+\n+ pub const fn const_default_public() -> Self {\n+ Self::new(\n+ Type::Failure,\n+ Immutable,\n+ Visibility::DUMMY_PUBLIC,\n VarKind::DoesNotExist,\n None,\n None,\n@@ -250,16 +261,25 @@ impl VarInfo {\n }\n }\n \n- pub fn nd_parameter(t: Type, def_loc: AbsLocation) -> Self {\n+ pub fn nd_parameter(t: Type, def_loc: AbsLocation, namespace: Str) -> Self {\n let kind = VarKind::Parameter {\n def_id: DefId(0),\n var: false,\n default: DefaultInfo::NonDefault,\n };\n- Self::new(t, Immutable, Private, kind, None, None, None, def_loc)\n+ Self::new(\n+ t,\n+ Immutable,\n+ Visibility::private(namespace),\n+ kind,\n+ None,\n+ None,\n+ None,\n+ def_loc,\n+ )\n }\n \n- pub fn instance_attr(field: Field, t: Type, impl_of: Option<Type>) -> Self {\n+ pub fn instance_attr(field: Field, t: Type, impl_of: Option<Type>, namespace: Str) -> Self {\n let muty = if field.is_const() {\n Mutability::Const\n } else {\n@@ -269,7 +289,7 @@ impl VarInfo {\n Self::new(\n t,\n muty,\n- field.vis,\n+ Visibility::new(field.vis, namespace),\n kind,\n None,\n impl_of,\n", "ast.rs": "@@ -7,7 +7,6 @@ use erg_common::error::Location;\n use erg_common::set::Set as HashSet;\n // use erg_common::dict::Dict as HashMap;\n use erg_common::traits::{Locational, NestedDisplay, Stream};\n-use erg_common::vis::{Field, Visibility};\n use erg_common::{\n fmt_option, fmt_vec, impl_display_for_enum, impl_display_for_single_struct,\n impl_display_from_nested, impl_displayable_stream_for_wrapper, impl_from_trait_for_enum,\n@@ -493,11 +492,31 @@ impl_locational_for_enum!(Accessor; Ident, Attr, TupleAttr, Subscr, TypeApp);\n \n impl Accessor {\n pub const fn local(symbol: Token) -> Self {\n- Self::Ident(Identifier::new(None, VarName::new(symbol)))\n+ Self::Ident(Identifier::new(\n+ VisModifierSpec::Private,\n+ VarName::new(symbol),\n+ ))\n }\n \n pub const fn public(dot: Token, symbol: Token) -> Self {\n- Self::Ident(Identifier::new(Some(dot), VarName::new(symbol)))\n+ Self::Ident(Identifier::new(\n+ VisModifierSpec::Public(dot),\n+ VarName::new(symbol),\n+ ))\n+ }\n+\n+ pub const fn explicit_local(dcolon: Token, symbol: Token) -> Self {\n+ Self::Ident(Identifier::new(\n+ VisModifierSpec::ExplicitPrivate(dcolon),\n+ VarName::new(symbol),\n+ ))\n+ }\n+\n+ pub const fn restricted(rest: VisRestriction, symbol: Token) -> Self {\n+ Self::Ident(Identifier::new(\n+ VisModifierSpec::Restricted(rest),\n+ VarName::new(symbol),\n+ ))\n }\n \n pub fn attr(obj: Expr, ident: Identifier) -> Self {\n@@ -1201,7 +1220,7 @@ impl Call {\n #[derive(Clone, Debug, PartialEq, Eq, Hash)]\n pub struct DataPack {\n pub class: Box<Expr>,\n- pub connector: Token,\n+ pub connector: VisModifierSpec,\n pub args: Record,\n }\n \n@@ -1220,7 +1239,7 @@ impl Locational for DataPack {\n }\n \n impl DataPack {\n- pub fn new(class: Expr, connector: Token, args: Record) -> Self {\n+ pub fn new(class: Expr, connector: VisModifierSpec, args: Record) -> Self {\n Self {\n class: Box::new(class),\n connector,\n@@ -1392,7 +1411,10 @@ impl_locational_for_enum!(ConstAccessor; Local, SelfDot, Attr, TupleAttr, Subscr\n \n impl ConstAccessor {\n pub const fn local(symbol: Token) -> Self {\n- Self::Local(ConstIdentifier::new(None, VarName::new(symbol)))\n+ Self::Local(ConstIdentifier::new(\n+ VisModifierSpec::Private,\n+ VarName::new(symbol),\n+ ))\n }\n \n pub fn attr(obj: ConstExpr, name: ConstIdentifier) -> Self {\n@@ -2655,18 +2677,108 @@ impl VarName {\n }\n }\n \n+#[derive(Debug, Clone, PartialEq, Eq, Hash)]\n+pub struct Namespaces(Vec<Accessor>);\n+\n+impl_displayable_stream_for_wrapper!(Namespaces, Accessor);\n+\n+impl NestedDisplay for Namespaces {\n+ fn fmt_nest(&self, f: &mut fmt::Formatter<'_>, _level: usize) -> fmt::Result {\n+ for (i, ns) in self.iter().enumerate() {\n+ if i > 0 {\n+ write!(f, \", \")?;\n+ }\n+ write!(f, \"{ns}\")?;\n+ }\n+ Ok(())\n+ }\n+}\n+\n+impl Locational for Namespaces {\n+ fn loc(&self) -> Location {\n+ Location::concat(self.first().unwrap(), self.last().unwrap())\n+ }\n+}\n+\n+#[derive(Debug, Clone, PartialEq, Eq, Hash)]\n+pub enum VisRestriction {\n+ Namespaces(Namespaces),\n+ SubtypeOf(Box<TypeSpec>),\n+}\n+\n+impl_locational_for_enum!(VisRestriction; Namespaces, SubtypeOf);\n+impl_display_from_nested!(VisRestriction);\n+\n+impl NestedDisplay for VisRestriction {\n+ fn fmt_nest(&self, f: &mut fmt::Formatter<'_>, _level: usize) -> fmt::Result {\n+ match self {\n+ Self::Namespaces(ns) => write!(f, \"{ns}\"),\n+ Self::SubtypeOf(ty) => write!(f, \"<: {ty}\"),\n+ }\n+ }\n+}\n+\n+#[derive(Debug, Clone, PartialEq, Eq, Hash)]\n+pub enum VisModifierSpec {\n+ Private,\n+ Auto,\n+ Public(Token),\n+ ExplicitPrivate(Token),\n+ Restricted(VisRestriction),\n+}\n+\n+impl NestedDisplay for VisModifierSpec {\n+ fn fmt_nest(&self, f: &mut fmt::Formatter<'_>, _level: usize) -> fmt::Result {\n+ match self {\n+ Self::Private => Ok(()),\n+ Self::Auto => write!(f, \":auto:\"),\n+ Self::Public(_token) => write!(f, \".\"),\n+ Self::ExplicitPrivate(_token) => write!(f, \"::\"),\n+ Self::Restricted(rest) => write!(f, \"::[{rest}]\"),\n+ }\n+ }\n+}\n+\n+impl_display_from_nested!(VisModifierSpec);\n+\n+impl Locational for VisModifierSpec {\n+ fn loc(&self) -> Location {\n+ match self {\n+ Self::Private | Self::Auto => Location::Unknown,\n+ Self::Public(token) => token.loc(),\n+ Self::ExplicitPrivate(token) => token.loc(),\n+ Self::Restricted(rest) => rest.loc(),\n+ }\n+ }\n+}\n+\n+impl VisModifierSpec {\n+ pub const fn is_public(&self) -> bool {\n+ matches!(self, Self::Public(_))\n+ }\n+\n+ pub const fn is_private(&self) -> bool {\n+ matches!(self, Self::Private | Self::ExplicitPrivate(_))\n+ }\n+}\n+\n+#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]\n+pub enum AccessModifier {\n+ Private, // `::`\n+ Public, // `.`\n+ Auto, // record unpacking\n+ Force, // can access any identifiers\n+}\n+\n #[derive(Debug, Clone, PartialEq, Eq, Hash)]\n pub struct Identifier {\n- pub dot: Option<Token>,\n+ pub vis: VisModifierSpec,\n pub name: VarName,\n }\n \n impl NestedDisplay for Identifier {\n fn fmt_nest(&self, f: &mut fmt::Formatter<'_>, _level: usize) -> fmt::Result {\n- match &self.dot {\n- Some(_dot) => write!(f, \".{}\", self.name),\n- None => write!(f, \"::{}\", self.name),\n- }\n+ write!(f, \"{}{}\", self.vis, self.name)\n }\n }\n \n@@ -2674,24 +2786,16 @@ impl_display_from_nested!(Identifier);\n \n impl Locational for Identifier {\n fn loc(&self) -> Location {\n- if let Some(dot) = &self.dot {\n- if dot.loc().is_unknown() {\n- self.name.loc()\n- } else {\n- Location::concat(dot, &self.name)\n+ match &self.vis {\n+ VisModifierSpec::Private | VisModifierSpec::Auto => self.name.loc(),\n+ VisModifierSpec::ExplicitPrivate(token) | VisModifierSpec::Public(token) => {\n+ Location::concat(token, &self.name)\n }\n- } else {\n- self.name.loc()\n+ VisModifierSpec::Restricted(args) => Location::concat(args, &self.name),\n }\n }\n }\n \n-impl From<&Identifier> for Field {\n- fn from(ident: &Identifier) -> Self {\n- Self::new(ident.vis(), ident.inspect().clone())\n- }\n-}\n-\n impl From<Identifier> for Expr {\n fn from(ident: Identifier) -> Self {\n Self::Accessor(Accessor::Ident(ident))\n@@ -2699,34 +2803,52 @@ impl From<Identifier> for Expr {\n }\n \n impl Identifier {\n- pub const fn new(dot: Option<Token>, name: VarName) -> Self {\n- Self { dot, name }\n+ pub const fn new(vis: VisModifierSpec, name: VarName) -> Self {\n+ Self { vis, name }\n }\n \n pub fn static_public(name: &'static str) -> Self {\n Self::new(\n- Some(Token::from_str(TokenKind::Dot, \".\")),\n+ VisModifierSpec::Public(Token::from_str(TokenKind::Dot, \".\")),\n VarName::from_static(name),\n )\n }\n \n pub fn public(name: Str) -> Self {\n Self::new(\n- Some(Token::from_str(TokenKind::Dot, \".\")),\n+ VisModifierSpec::Public(Token::from_str(TokenKind::Dot, \".\")),\n VarName::from_str(name),\n )\n }\n \n pub fn private(name: Str) -> Self {\n- Self::new(None, VarName::from_str(name))\n+ Self::new(VisModifierSpec::Private, VarName::from_str(name))\n+ }\n+\n+ pub fn private_from_token(symbol: Token) -> Self {\n+ Self::new(VisModifierSpec::Private, VarName::new(symbol))\n+ }\n+\n+ pub fn private_from_varname(name: VarName) -> Self {\n+ Self::new(VisModifierSpec::Private, name)\n }\n \n pub fn private_with_line(name: Str, line: u32) -> Self {\n- Self::new(None, VarName::from_str_and_line(name, line))\n+ Self::new(\n+ VisModifierSpec::Private,\n+ VarName::from_str_and_line(name, line),\n+ )\n }\n \n pub fn public_with_line(dot: Token, name: Str, line: u32) -> Self {\n- Self::new(Some(dot), VarName::from_str_and_line(name, line))\n+ Self::new(\n+ VisModifierSpec::Public(dot),\n+ VarName::from_str_and_line(name, line),\n+ )\n+ }\n+\n+ pub fn public_from_token(dot: Token, symbol: Token) -> Self {\n+ Self::new(VisModifierSpec::Public(dot), VarName::new(symbol))\n }\n \n pub fn is_const(&self) -> bool {\n@@ -2737,10 +2859,13 @@ impl Identifier {\n self.name.is_raw()\n }\n \n- pub const fn vis(&self) -> Visibility {\n- match &self.dot {\n- Some(_) => Visibility::Public,\n- None => Visibility::Private,\n+ pub fn acc_kind(&self) -> AccessModifier {\n+ match &self.vis {\n+ VisModifierSpec::Auto => AccessModifier::Auto,\n+ VisModifierSpec::Public(_) => AccessModifier::Public,\n+ VisModifierSpec::ExplicitPrivate(_)\n+ | VisModifierSpec::Restricted(_)\n+ | VisModifierSpec::Private => AccessModifier::Private,\n }\n }\n \n@@ -2983,11 +3108,11 @@ impl VarPattern {\n }\n }\n \n- pub const fn vis(&self) -> Visibility {\n+ pub fn vis(&self) -> &VisModifierSpec {\n match self {\n- Self::Ident(ident) => ident.vis(),\n+ Self::Ident(ident) => &ident.vis,\n // TODO: `[.x, .y]`?\n- _ => Visibility::Private,\n+ _ => &VisModifierSpec::Private,\n }\n }\n \n@@ -3036,7 +3161,7 @@ impl VarSignature {\n self.pat.is_const()\n }\n \n- pub const fn vis(&self) -> Visibility {\n+ pub fn vis(&self) -> &VisModifierSpec {\n self.pat.vis()\n }\n \n@@ -3493,8 +3618,8 @@ impl SubrSignature {\n self.ident.is_const()\n }\n \n- pub const fn vis(&self) -> Visibility {\n- self.ident.vis()\n+ pub fn vis(&self) -> &VisModifierSpec {\n+ &self.ident.vis\n }\n }\n \n@@ -3693,7 +3818,7 @@ impl Signature {\n matches!(self, Self::Subr(_))\n }\n \n- pub const fn vis(&self) -> Visibility {\n+ pub fn vis(&self) -> &VisModifierSpec {\n match self {\n Self::Var(var) => var.vis(),\n Self::Subr(subr) => subr.vis(),\n@@ -3893,13 +4018,13 @@ impl ReDef {\n pub struct Methods {\n pub class: TypeSpec,\n pub class_as_expr: Box<Expr>,\n- pub vis: Token, // `.` or `::`\n+ pub vis: VisModifierSpec, // `.` or `::`\n pub attrs: ClassAttrs,\n }\n \n impl NestedDisplay for Methods {\n fn fmt_nest(&self, f: &mut fmt::Formatter<'_>, level: usize) -> fmt::Result {\n- writeln!(f, \"{}{}\", self.class, self.vis.content)?;\n+ writeln!(f, \"{}{}\", self.class, self.vis)?;\n self.attrs.fmt_nest(f, level + 1)\n }\n }\n@@ -3908,7 +4033,12 @@ impl_display_from_nested!(Methods);\n impl_locational!(Methods, class, attrs);\n \n impl Methods {\n- pub fn new(class: TypeSpec, class_as_expr: Expr, vis: Token, attrs: ClassAttrs) -> Self {\n+ pub fn new(\n+ class: TypeSpec,\n+ class_as_expr: Expr,\n+ vis: VisModifierSpec,\n+ attrs: ClassAttrs,\n+ ) -> Self {\n Self {\n class,\n class_as_expr: Box::new(class_as_expr),\n@@ -3916,14 +4046,6 @@ impl Methods {\n attrs,\n }\n }\n-\n- pub fn vis(&self) -> Visibility {\n- if self.vis.is(TokenKind::Dot) {\n- Visibility::Public\n- } else {\n- Visibility::Private\n- }\n- }\n }\n \n #[derive(Debug, Clone, PartialEq, Eq, Hash)]\n", "desugar.rs": "@@ -16,7 +16,7 @@ use crate::ast::{\n ParamPattern, ParamRecordAttr, Params, PatchDef, PosArg, ReDef, Record, RecordAttrOrIdent,\n RecordAttrs, Set as astSet, SetWithLength, Signature, SubrSignature, Tuple, TupleTypeSpec,\n TypeAppArgs, TypeAppArgsKind, TypeBoundSpecs, TypeSpec, TypeSpecWithOp, UnaryOp, VarName,\n- VarPattern, VarRecordAttr, VarSignature,\n+ VarPattern, VarRecordAttr, VarSignature, VisModifierSpec,\n };\n use crate::token::{Token, TokenKind, COLON, DOT};\n \n@@ -636,7 +636,10 @@ impl Desugarer {\n r_brace,\n )\n }\n- BufIndex::Record(attr) => obj.attr(attr.clone()),\n+ BufIndex::Record(attr) => {\n+ let attr = Identifier::new(VisModifierSpec::Auto, attr.name.clone());\n+ obj.attr(attr)\n+ }\n };\n let id = DefId(get_hash(&(&acc, buf_name)));\n let block = Block::new(vec![Expr::Accessor(acc)]);\n@@ -1001,7 +1004,10 @@ impl Desugarer {\n r_brace,\n )\n }\n- BufIndex::Record(attr) => obj.attr(attr.clone()),\n+ BufIndex::Record(attr) => {\n+ let attr = Identifier::new(VisModifierSpec::Auto, attr.name.clone());\n+ obj.attr(attr)\n+ }\n };\n let id = DefId(get_hash(&(&acc, buf_name)));\n let block = Block::new(vec![Expr::Accessor(acc)]);\n@@ -1166,7 +1172,7 @@ impl Desugarer {\n }\n */\n ParamPattern::VarName(name) => {\n- let ident = Identifier::new(None, name.clone());\n+ let ident = Identifier::new(VisModifierSpec::Private, name.clone());\n let v = VarSignature::new(\n VarPattern::Ident(ident),\n sig.t_spec.as_ref().map(|ts| ts.t_spec.clone()),\n", "parse.rs": "@@ -560,6 +560,37 @@ impl Parser {\n Ok(TypeAppArgs::new(l_vbar, args, r_vbar))\n }\n \n+ fn try_reduce_restriction(&mut self) -> ParseResult<VisRestriction> {\n+ debug_call_info!(self);\n+ expect_pop!(self, LSqBr);\n+ let rest = match self.peek_kind() {\n+ Some(SubtypeOf) => {\n+ self.lpop();\n+ let t_spec_as_expr = self\n+ .try_reduce_expr(false, true, false, false)\n+ .map_err(|_| self.stack_dec(fn_name!()))?;\n+ match Parser::expr_to_type_spec(t_spec_as_expr) {\n+ Ok(t_spec) => VisRestriction::SubtypeOf(Box::new(t_spec)),\n+ Err(err) => {\n+ self.errs.push(err);\n+ debug_exit_info!(self);\n+ return Err(());\n+ }\n+ }\n+ }\n+ _ => {\n+ // FIXME: reduce namespaces\n+ let acc = self\n+ .try_reduce_acc_lhs()\n+ .map_err(|_| self.stack_dec(fn_name!()))?;\n+ VisRestriction::Namespaces(Namespaces::new(vec![acc]))\n+ }\n+ };\n+ expect_pop!(self, RSqBr);\n+ debug_exit_info!(self);\n+ Ok(rest)\n+ }\n+\n fn try_reduce_acc_lhs(&mut self) -> ParseResult<Accessor> {\n debug_call_info!(self);\n let acc = match self.peek_kind() {\n@@ -576,6 +607,19 @@ impl Parser {\n return Err(());\n }\n }\n+ Some(DblColon) => {\n+ let dbl_colon = self.lpop();\n+ if let Some(LSqBr) = self.peek_kind() {\n+ let rest = self\n+ .try_reduce_restriction()\n+ .map_err(|_| self.stack_dec(fn_name!()))?;\n+ let symbol = expect_pop!(self, Symbol);\n+ Accessor::restricted(rest, symbol)\n+ } else {\n+ let symbol = expect_pop!(self, Symbol);\n+ Accessor::explicit_local(dbl_colon, symbol)\n+ }\n+ }\n _ => {\n let err = self.skip_and_throw_syntax_err(caused_by!());\n self.errs.push(err);\n@@ -1000,7 +1044,11 @@ impl Parser {\n }\n }\n \n- fn try_reduce_method_defs(&mut self, class: Expr, vis: Token) -> ParseResult<Methods> {\n+ fn try_reduce_method_defs(\n+ &mut self,\n+ class: Expr,\n+ vis: VisModifierSpec,\n+ ) -> ParseResult<Methods> {\n debug_call_info!(self);\n expect_pop!(self, fail_next Indent);\n while self.cur_is(Newline) {\n@@ -1205,7 +1253,7 @@ impl Parser {\n ));\n }\n Some(t) if t.is(DblColon) => {\n- let vis = self.lpop();\n+ let vis = VisModifierSpec::ExplicitPrivate(self.lpop());\n match self.lpop() {\n symbol if symbol.is(Symbol) => {\n let Some(ExprOrOp::Expr(obj)) = stack.pop() else {\n@@ -1219,11 +1267,13 @@ impl Parser {\n .transpose()\n .map_err(|_| self.stack_dec(fn_name!()))?\n {\n- let ident = Identifier::new(None, VarName::new(symbol));\n+ let ident =\n+ Identifier::new(VisModifierSpec::Private, VarName::new(symbol));\n let call = Call::new(obj, Some(ident), args);\n stack.push(ExprOrOp::Expr(Expr::Call(call)));\n } else {\n- let ident = Identifier::new(None, VarName::new(symbol));\n+ let ident =\n+ Identifier::new(VisModifierSpec::Private, VarName::new(symbol));\n stack.push(ExprOrOp::Expr(obj.attr_expr(ident)));\n }\n }\n@@ -1267,7 +1317,7 @@ impl Parser {\n }\n }\n Some(t) if t.is(Dot) => {\n- let vis = self.lpop();\n+ let dot = self.lpop();\n match self.lpop() {\n symbol if symbol.is(Symbol) => {\n let Some(ExprOrOp::Expr(obj)) = stack.pop() else {\n@@ -1281,15 +1331,16 @@ impl Parser {\n .transpose()\n .map_err(|_| self.stack_dec(fn_name!()))?\n {\n- let ident = Identifier::new(Some(vis), VarName::new(symbol));\n+ let ident = Identifier::public_from_token(dot, symbol);\n let call = Expr::Call(Call::new(obj, Some(ident), args));\n stack.push(ExprOrOp::Expr(call));\n } else {\n- let ident = Identifier::new(Some(vis), VarName::new(symbol));\n+ let ident = Identifier::public_from_token(dot, symbol);\n stack.push(ExprOrOp::Expr(obj.attr_expr(ident)));\n }\n }\n line_break if line_break.is(Newline) => {\n+ let vis = VisModifierSpec::Public(dot);\n let maybe_class = enum_unwrap!(stack.pop(), Some:(ExprOrOp::Expr:(_)));\n let defs = self\n .try_reduce_method_defs(maybe_class, vis)\n@@ -1488,11 +1539,17 @@ impl Parser {\n .transpose()\n .map_err(|_| self.stack_dec(fn_name!()))?\n {\n- let ident = Identifier::new(Some(vis), VarName::new(symbol));\n+ let ident = Identifier::new(\n+ VisModifierSpec::Public(vis),\n+ VarName::new(symbol),\n+ );\n let call = Call::new(obj, Some(ident), args);\n stack.push(ExprOrOp::Expr(Expr::Call(call)));\n } else {\n- let ident = Identifier::new(Some(vis), VarName::new(symbol));\n+ let ident = Identifier::new(\n+ VisModifierSpec::Public(vis),\n+ VarName::new(symbol),\n+ );\n stack.push(ExprOrOp::Expr(obj.attr_expr(ident)));\n }\n }\n@@ -1696,7 +1753,7 @@ impl Parser {\n }\n }\n }\n- Some(t) if t.is(Symbol) || t.is(Dot) || t.is(UBar) => {\n+ Some(t) if t.is(Symbol) || t.is(Dot) || t.is(DblColon) || t.is(UBar) => {\n let call_or_acc = self\n .try_reduce_call_or_acc(in_type_args)\n .map_err(|_| self.stack_dec(fn_name!()))?;\n@@ -1861,7 +1918,8 @@ impl Parser {\n let token = self.lpop();\n match token.kind {\n Symbol => {\n- let ident = Identifier::new(Some(vis), VarName::new(token));\n+ let ident =\n+ Identifier::new(VisModifierSpec::Public(vis), VarName::new(token));\n obj = obj.attr_expr(ident);\n }\n NatLit => {\n@@ -1895,7 +1953,10 @@ impl Parser {\n let token = self.lpop();\n match token.kind {\n Symbol => {\n- let ident = Identifier::new(None, VarName::new(token));\n+ let ident = Identifier::new(\n+ VisModifierSpec::ExplicitPrivate(vis),\n+ VarName::new(token),\n+ );\n obj = obj.attr_expr(ident);\n }\n LBrace => {\n@@ -1905,6 +1966,7 @@ impl Parser {\n .map_err(|_| self.stack_dec(fn_name!()))?;\n match args {\n BraceContainer::Record(args) => {\n+ let vis = VisModifierSpec::ExplicitPrivate(vis);\n obj = Expr::DataPack(DataPack::new(obj, vis, args));\n }\n other => {\n@@ -2023,15 +2085,15 @@ impl Parser {\n }\n \n // Empty brace literals\n- if let Some(first) = self.peek() {\n- if first.is(RBrace) {\n+ match self.peek_kind() {\n+ Some(RBrace) => {\n let r_brace = self.lpop();\n let arg = Args::empty();\n let set = NormalSet::new(l_brace, r_brace, arg);\n debug_exit_info!(self);\n return Ok(BraceContainer::Set(Set::Normal(set)));\n }\n- if first.is(Equal) {\n+ Some(Equal) => {\n let _eq = self.lpop();\n if let Some(t) = self.peek() {\n if t.is(RBrace) {\n@@ -2045,7 +2107,7 @@ impl Parser {\n debug_exit_info!(self);\n return Err(());\n }\n- if first.is(Colon) {\n+ Some(Colon) => {\n let _colon = self.lpop();\n if let Some(t) = self.peek() {\n if t.is(RBrace) {\n@@ -2060,6 +2122,7 @@ impl Parser {\n debug_exit_info!(self);\n return Err(());\n }\n+ _ => {}\n }\n \n let first = self\n@@ -2541,7 +2604,8 @@ impl Parser {\n .transpose()\n .map_err(|_| self.stack_dec(fn_name!()))?\n {\n- let ident = Identifier::new(Some(vis), VarName::new(symbol));\n+ let ident =\n+ Identifier::new(VisModifierSpec::Public(vis), VarName::new(symbol));\n let mut call = Expr::Call(Call::new(obj, Some(ident), args));\n while let Some(res) = self.opt_reduce_args(false) {\n let args = res.map_err(|_| self.stack_dec(fn_name!()))?;\n", "typespec.rs": "@@ -229,11 +229,12 @@ impl Parser {\n (ParamPattern::VarName(name), Some(t_spec_with_op)) => {\n ParamTySpec::new(Some(name.into_token()), t_spec_with_op.t_spec)\n }\n- (ParamPattern::VarName(name), None) => {\n- ParamTySpec::anonymous(TypeSpec::PreDeclTy(PreDeclTypeSpec::Simple(\n- SimpleTypeSpec::new(Identifier::new(None, name), ConstArgs::empty()),\n- )))\n- }\n+ (ParamPattern::VarName(name), None) => ParamTySpec::anonymous(TypeSpec::PreDeclTy(\n+ PreDeclTypeSpec::Simple(SimpleTypeSpec::new(\n+ Identifier::new(VisModifierSpec::Private, name),\n+ ConstArgs::empty(),\n+ )),\n+ )),\n _ => todo!(),\n };\n non_defaults.push(param);\n@@ -247,11 +248,12 @@ impl Parser {\n (ParamPattern::VarName(name), Some(t_spec_with_op)) => {\n ParamTySpec::new(Some(name.into_token()), t_spec_with_op.t_spec)\n }\n- (ParamPattern::VarName(name), None) => {\n- ParamTySpec::anonymous(TypeSpec::PreDeclTy(PreDeclTypeSpec::Simple(\n- SimpleTypeSpec::new(Identifier::new(None, name), ConstArgs::empty()),\n- )))\n- }\n+ (ParamPattern::VarName(name), None) => ParamTySpec::anonymous(\n+ TypeSpec::PreDeclTy(PreDeclTypeSpec::Simple(SimpleTypeSpec::new(\n+ Identifier::new(VisModifierSpec::Private, name),\n+ ConstArgs::empty(),\n+ ))),\n+ ),\n _ => todo!(),\n });\n let mut defaults = vec![];\n", "class.er": "@@ -4,7 +4,7 @@ print! empty\n \n # Inheritance is prohibited by default. Remove this decorator and check for errors.\n @Inheritable\n-Point2D = Class {x = Int; y = Int}\n+Point2D = Class {::[<: Self]x = Int; ::[<: Self]y = Int}\n Point2D::\n one = 1\n Point2D.\n", "unpack.er": "@@ -1,5 +1,5 @@\n-UnpackPoint2D = Class {x = Int; y = Int}, Impl := Unpack\n+UnpackPoint2D = Class {.x = Int; .y = Int}, Impl := Unpack\n \n-q = UnpackPoint2D::{x = 1; y = 2}\n+q = UnpackPoint2D::{.x = 1; .y = 2}\n UnpackPoint2D::{x; y} = q\n print! x, y\n", "visibility.er": "@@ -0,0 +1,25 @@\n+@Inheritable\n+Point2D = Class {::[<: Self]x = Int; ::[<: Self]y = Int}\n+Point2D.\n+ norm self = self::x**2 + self::y**2 #OK\n+\n+Point3D = Inherit Point2D, Additional := {z = Int}\n+Point3D.\n+ @Override\n+ norm self = self::x**2 + self::y**2 + self::z**2 #OK\n+\n+C = Class()\n+C.\n+ method point: Point2D = point::x # ERR\n+\n+p = Point3D.new {x = 1; y = 2; z = 3}\n+p::x # ERR\n+p.x # ERR\n+p::z # ERR\n+\n+rec = {\n+ ::[f] x = 1\n+}\n+\n+f x = rec::x + x # OK\n+g x = rec::x + x # ERR\n", "pattern.er": "@@ -1,6 +1,6 @@\n-f {x; y}, [_], (_, _) = x + y\n+f {.x; .y}, [_], (_, _) = x + y\n \n-x = f {x = 1; y = 2}, [3], (4, 5)\n+x = f {.x = 1; .y = 2}, [3], (4, 5)\n assert x == 3\n \n #[\n", "test.rs": "@@ -306,6 +306,11 @@ fn exec_var_args_err() -> Result<(), ()> {\n expect_failure(\"tests/should_err/var_args.er\", 3)\n }\n \n+#[test]\n+fn exec_visibility() -> Result<(), ()> {\n+ expect_failure(\"tests/should_err/visibility.er\", 5)\n+}\n+\n #[test]\n fn exec_move() -> Result<(), ()> {\n expect_failure(\"tests/should_err/move.er\", 1)\n"}
refactor(api): remove unnecessary `select` from set operations (#9438)
88a278577224659412b1d27d897de639c9debc4f
refactor
https://github.com/ibis-project/ibis/commit/88a278577224659412b1d27d897de639c9debc4f
remove unnecessary `select` from set operations (#9438)
{"out.sql": "@@ -18,12 +18,8 @@ WITH \"t1\" AS (\n )\n SELECT\n *\n-FROM (\n- SELECT\n- *\n- FROM \"t5\" AS \"t6\"\n- UNION ALL\n- SELECT\n- *\n- FROM \"t5\" AS \"t7\"\n-) AS \"t8\"\n\\ No newline at end of file\n+FROM \"t5\" AS \"t6\"\n+UNION ALL\n+SELECT\n+ *\n+FROM \"t5\" AS \"t7\"\n\\ No newline at end of file\n", "result.sql": "@@ -2,20 +2,16 @@ SELECT\n *\n FROM (\n SELECT\n- *\n- FROM (\n- SELECT\n- CAST(\"t0\".\"diag\" + CAST(1 AS TINYINT) AS INT) AS \"diag\",\n- \"t0\".\"status\"\n- FROM \"aids2_one\" AS \"t0\"\n- ) AS \"t2\"\n- UNION ALL\n+ CAST(\"t0\".\"diag\" + CAST(1 AS TINYINT) AS INT) AS \"diag\",\n+ \"t0\".\"status\"\n+ FROM \"aids2_one\" AS \"t0\"\n+) AS \"t2\"\n+UNION ALL\n+SELECT\n+ *\n+FROM (\n SELECT\n- *\n- FROM (\n- SELECT\n- CAST(\"t1\".\"diag\" + CAST(1 AS TINYINT) AS INT) AS \"diag\",\n- \"t1\".\"status\"\n- FROM \"aids2_two\" AS \"t1\"\n- ) AS \"t3\"\n-) AS \"t4\"\n\\ No newline at end of file\n+ CAST(\"t1\".\"diag\" + CAST(1 AS TINYINT) AS INT) AS \"diag\",\n+ \"t1\".\"status\"\n+ FROM \"aids2_two\" AS \"t1\"\n+) AS \"t3\"\n\\ No newline at end of file\n", "union_repr.txt": "@@ -8,8 +8,4 @@ r1 := UnboundTable: t2\n \n r2 := Union[r0, r1, distinct=False]\n \n-r3 := Project[r2]\n- a: r2.a\n- b: r2.b\n-\n-CountStar(): CountStar(r3)\n\\ No newline at end of file\n+CountStar(): CountStar(r2)\n\\ No newline at end of file\n", "relations.py": "@@ -1693,7 +1693,7 @@ class Table(Expr, _FixedTextJupyterMixin):\n queue.append(node)\n result = queue.popleft()\n assert not queue, \"items left in queue\"\n- return result.to_expr().select(*self.columns)\n+ return result.to_expr()\n \n def union(self, table: Table, *rest: Table, distinct: bool = False) -> Table:\n \"\"\"Compute the set union of multiple table expressions.\n@@ -1883,7 +1883,7 @@ class Table(Expr, _FixedTextJupyterMixin):\n node = ops.Difference(self, table, distinct=distinct)\n for table in rest:\n node = ops.Difference(node, table, distinct=distinct)\n- return node.to_expr().select(self.columns)\n+ return node.to_expr()\n \n @deprecated(as_of=\"9.0\", instead=\"use table.as_scalar() instead\")\n def to_array(self) -> ir.Column:\n", "test_benchmarks.py": "@@ -850,12 +850,12 @@ def test_column_access(benchmark, many_cols, getter):\n benchmark(getter, many_cols)\n \n \[email protected](scope=\"module\")\n-def many_tables():\[email protected](scope=\"module\", params=[1000, 10000])\n+def many_tables(request):\n num_cols = 10\n- num_tables = 1000\n return [\n- ibis.table({f\"c{i}\": \"int\" for i in range(num_cols)}) for _ in range(num_tables)\n+ ibis.table({f\"c{i}\": \"int\" for i in range(num_cols)})\n+ for _ in range(request.param)\n ]\n \n \n@@ -863,6 +863,7 @@ def test_large_union_construct(benchmark, many_tables):\n assert benchmark(lambda args: ibis.union(*args), many_tables) is not None\n \n \[email protected](180)\n def test_large_union_compile(benchmark, many_tables):\n expr = ibis.union(*many_tables)\n assert benchmark(ibis.to_sql, expr) is not None\n", "test_set_operations.py": "@@ -51,13 +51,13 @@ def test_operation_supports_schemas_with_different_field_order(method):\n \n assert u1.schema() == a.schema()\n \n- u1 = u1.op().parent\n+ u1 = u1.op()\n assert u1.left == a.op()\n assert u1.right == b.op()\n \n # a selection is added to ensure that the field order of the right table\n # matches the field order of the left table\n- u2 = u2.op().parent\n+ u2 = u2.op()\n assert u2.schema == a.schema()\n assert u2.left == a.op()\n \n", "test_table.py": "@@ -1420,11 +1420,11 @@ def test_union(\n setops_relation_error_message,\n ):\n result = setops_table_foo.union(setops_table_bar)\n- assert isinstance(result.op().parent, ops.Union)\n- assert not result.op().parent.distinct\n+ assert isinstance(result.op(), ops.Union)\n+ assert not result.op().distinct\n \n result = setops_table_foo.union(setops_table_bar, distinct=True)\n- assert result.op().parent.distinct\n+ assert result.op().distinct\n \n with pytest.raises(RelationError, match=setops_relation_error_message):\n setops_table_foo.union(setops_table_baz)\n@@ -1437,7 +1437,7 @@ def test_intersection(\n setops_relation_error_message,\n ):\n result = setops_table_foo.intersect(setops_table_bar)\n- assert isinstance(result.op().parent, ops.Intersection)\n+ assert isinstance(result.op(), ops.Intersection)\n \n with pytest.raises(RelationError, match=setops_relation_error_message):\n setops_table_foo.intersect(setops_table_baz)\n@@ -1450,7 +1450,7 @@ def test_difference(\n setops_relation_error_message,\n ):\n result = setops_table_foo.difference(setops_table_bar)\n- assert isinstance(result.op().parent, ops.Difference)\n+ assert isinstance(result.op(), ops.Difference)\n \n with pytest.raises(RelationError, match=setops_relation_error_message):\n setops_table_foo.difference(setops_table_baz)\n"}
fix(core): detect early deletes for compound unique constraints Closes #4305
f9530e4b24bd806e33f1997d4e1ef548e02b6b90
fix
https://github.com/mikro-orm/mikro-orm/commit/f9530e4b24bd806e33f1997d4e1ef548e02b6b90
detect early deletes for compound unique constraints Closes #4305
{"typings.ts": "@@ -398,6 +398,7 @@ export class EntityMetadata<T = any> {\n return !prop.inherited && prop.hydrate !== false && !discriminator && !prop.embedded && !onlyGetter;\n });\n this.selfReferencing = this.relations.some(prop => [this.className, this.root.className].includes(prop.type));\n+ this.hasUniqueProps = this.uniques.length + this.uniqueProps.length > 0;\n this.virtual = !!this.expression;\n \n if (this.virtual) {\n@@ -546,6 +547,7 @@ export interface EntityMetadata<T = any> {\n filters: Dictionary<FilterDef>;\n comment?: string;\n selfReferencing?: boolean;\n+ hasUniqueProps?: boolean;\n readonly?: boolean;\n polymorphs?: EntityMetadata[];\n root: EntityMetadata<T>;\n", "UnitOfWork.ts": "@@ -586,17 +586,42 @@ export class UnitOfWork {\n private expandUniqueProps<T extends object>(entity: T): string[] {\n const wrapped = helper(entity);\n \n- return wrapped.__meta.uniqueProps.map(prop => {\n- if (entity[prop.name]) {\n+ if (!wrapped.__meta.hasUniqueProps) {\n+ return [];\n+ }\n+\n+ const simpleUniqueHashes = wrapped.__meta.uniqueProps.map(prop => {\n+ if (entity[prop.name] != null) {\n return prop.reference === ReferenceType.SCALAR || prop.mapToPk ? entity[prop.name] : helper(entity[prop.name]).getSerializedPrimaryKey();\n }\n \n- if (wrapped.__originalEntityData?.[prop.name as string]) {\n+ if (wrapped.__originalEntityData?.[prop.name as string] != null) {\n return Utils.getPrimaryKeyHash(Utils.asArray(wrapped.__originalEntityData![prop.name as string]));\n }\n \n return undefined;\n }).filter(i => i) as string[];\n+\n+ const compoundUniqueHashes = wrapped.__meta.uniques.map(unique => {\n+ const props = Utils.asArray(unique.properties);\n+\n+ if (props.every(prop => entity[prop] != null)) {\n+ return Utils.getPrimaryKeyHash(props.map(p => {\n+ const prop = wrapped.__meta.properties[p];\n+ return prop.reference === ReferenceType.SCALAR || prop.mapToPk ? entity[prop.name] : helper(entity[prop.name]).getSerializedPrimaryKey();\n+ }) as any);\n+ }\n+\n+ if (props.every(prop => wrapped.__originalEntityData?.[prop as string] != null)) {\n+ return Utils.getPrimaryKeyHash(props.map(p => {\n+ return wrapped.__originalEntityData![p as string];\n+ }));\n+ }\n+\n+ return undefined;\n+ }).filter(i => i) as string[];\n+\n+ return simpleUniqueHashes.concat(compoundUniqueHashes);\n }\n \n private initIdentifier<T extends object>(entity: T): void {\n", "GH4305.test.ts": "@@ -0,0 +1,69 @@\n+import { Collection, Entity, ManyToOne, OneToMany, PrimaryKey, Property, Unique } from '@mikro-orm/core';\n+import { MikroORM } from '@mikro-orm/sqlite';\n+\n+@Entity()\n+class Author {\n+\n+ @PrimaryKey()\n+ id!: number;\n+\n+ @OneToMany(() => Book, book => book.author, { orphanRemoval: true })\n+ books = new Collection<Book>(this);\n+\n+}\n+\n+@Unique({ properties: ['type', 'title'] })\n+@Entity()\n+class Book {\n+\n+ @PrimaryKey()\n+ id!: number;\n+\n+ @ManyToOne(() => Author)\n+ author!: Author;\n+\n+ @Property()\n+ type!: string;\n+\n+ @Property()\n+ title!: string;\n+\n+ @Property()\n+ color!: string;\n+\n+}\n+\n+let orm: MikroORM;\n+\n+beforeAll(async () => {\n+ orm = await MikroORM.init({\n+ entities: [Author],\n+ dbName: `:memory:`,\n+ });\n+\n+ await orm.schema.createSchema();\n+\n+ const author = new Author();\n+ const book1 = new Book();\n+ book1.title = 'book1';\n+ book1.type = 't1';\n+ book1.color = 'c1';\n+ author.books.add(book1);\n+ await orm.em.persistAndFlush(author);\n+ orm.em.clear();\n+});\n+\n+afterAll(() => orm.close(true));\n+\n+test('#4305', async () => {\n+ const author = await orm.em.findOne(Author, { id: 1 }, {\n+ populate: ['books'],\n+ });\n+\n+ const newBook = new Book();\n+ newBook.title = 'book1';\n+ newBook.type = 't1';\n+ newBook.color = 'c2';\n+ author!.books.set([newBook]);\n+ await orm.em.flush();\n+});\n"}
feat(sql): add support for bigint (#389) Adds BigIntType custom type that can be used to handle bigints. Closes #361
5ddd5734c1bc7e51ec36c2b75aa3056223feb279
feat
https://github.com/mikro-orm/mikro-orm/commit/5ddd5734c1bc7e51ec36c2b75aa3056223feb279
add support for bigint (#389) Adds BigIntType custom type that can be used to handle bigints. Closes #361
{"defining-entities.md": "@@ -416,6 +416,24 @@ export class Book {\n }\n ```\n \n+### Using BigInt as primary key (MySQL and PostgreSQL)\n+\n+You can use `BigIntType` to support `bigint`s. By default it will represent the value as\n+a `string`. \n+\n+```typescript\n+@Entity()\n+export class Book {\n+\n+ @PrimaryKey({ type: BigIntType })\n+ id: string;\n+\n+}\n+```\n+\n+If you want to use native `bigint`s, read the following guide: [Using native BigInt PKs](using-bigint-pks.md).\n+\n+\n ### Example of Mongo entity\n \n ```typescript\n", "using-bigint-pks.md": "@@ -0,0 +1,37 @@\n+---\n+title: Using native BigInt PKs (MySQL and PostgreSQL)\n+---\n+\n+You can use `BigIntType` to support `bigint`s. By default it will represent the value as\n+a `string`. \n+\n+```typescript\n+@Entity()\n+export class Book {\n+\n+ @PrimaryKey({ type: BigIntType })\n+ id: string;\n+\n+}\n+```\n+\n+If you want to use native `bigint` type, you will need to create new type based on the\n+`BigIntType`:\n+\n+```typescript\n+export class NativeBigIntType extends BigIntType {\n+\n+ convertToJSValue(value: any): any {\n+ return BigInt(value);\n+ }\n+\n+}\n+\n+@Entity()\n+export class Book {\n+\n+ @PrimaryKey({ type: NativeBigIntType })\n+ id: bigint;\n+\n+}\n+```\n", "sidebars.js": "@@ -48,6 +48,7 @@ module.exports = {\n 'usage-with-js',\n 'custom-driver',\n 'multiple-schemas',\n+ 'using-bigint-pks',\n ],\n 'Example Integrations': [\n { type: 'link', label: 'Express + MongoDB + TypeScript', href: 'https://github.com/mikro-orm/express-ts-example-app' },\n", "MySqlConnection.ts": "@@ -22,6 +22,8 @@ export class MySqlConnection extends AbstractSqlConnection {\n ret.timezone = 'Z';\n }\n \n+ ret.supportBigNumbers = true;\n+\n return ret;\n }\n \n", "EntityAssigner.ts": "@@ -1,3 +1,4 @@\n+import { inspect } from 'util';\n import { Collection } from './Collection';\n import { SCALAR_TYPES } from './EntityFactory';\n import { EntityManager } from '../EntityManager';\n@@ -110,7 +111,7 @@ export class EntityAssigner {\n \n if (invalid.length > 0) {\n const name = entity.constructor.name;\n- throw new Error(`Invalid collection values provided for '${name}.${prop.name}' in ${name}.assign(): ${JSON.stringify(invalid)}`);\n+ throw new Error(`Invalid collection values provided for '${name}.${prop.name}' in ${name}.assign(): ${inspect(invalid)}`);\n }\n \n collection.hydrate(items, true);\n", "MetadataDiscovery.ts": "@@ -471,6 +471,12 @@ export class MetadataDiscovery {\n const meta = this.metadata.get(prop.type);\n const pk = meta.properties[meta.primaryKey];\n this.initCustomType(pk);\n+\n+ if (pk.customType) {\n+ prop.columnType = pk.customType.getColumnType(pk, this.platform);\n+ return;\n+ }\n+\n prop.columnType = this.schemaHelper.getTypeDefinition(pk);\n }\n \n@@ -491,14 +497,14 @@ export class MetadataDiscovery {\n if (prop.reference === ReferenceType.MANY_TO_ONE || prop.reference === ReferenceType.ONE_TO_ONE) {\n const meta2 = this.metadata.get(prop.type);\n const pk = meta2.properties[meta2.primaryKey];\n- prop.unsigned = pk.type === 'number';\n+ prop.unsigned = pk.type === 'number' || this.platform.isBigIntProperty(pk);\n prop.referenceColumnName = pk.fieldName;\n prop.referencedTableName = meta2.collection;\n \n return;\n }\n \n- prop.unsigned = (prop.primary || prop.unsigned) && prop.type === 'number';\n+ prop.unsigned = (prop.primary || prop.unsigned) && (prop.type === 'number' || this.platform.isBigIntProperty(prop));\n }\n \n private getEntityClassOrSchema(path: string, name: string) {\n", "Platform.ts": "@@ -1,5 +1,5 @@\n import { NamingStrategy, UnderscoreNamingStrategy } from '../naming-strategy';\n-import { IPrimaryKey, Primary } from '../typings';\n+import { EntityProperty, IPrimaryKey, Primary } from '../typings';\n import { SchemaHelper } from '../schema';\n \n export abstract class Platform {\n@@ -78,4 +78,12 @@ export abstract class Platform {\n return 'regexp';\n }\n \n+ isBigIntProperty(prop: EntityProperty): boolean {\n+ return prop.columnType === 'bigint';\n+ }\n+\n+ getBigIntTypeDeclarationSQL(): string {\n+ return 'bigint';\n+ }\n+\n }\n", "PostgreSqlPlatform.ts": "@@ -1,5 +1,6 @@\n import { Platform } from './Platform';\n import { PostgreSqlSchemaHelper } from '../schema/PostgreSqlSchemaHelper';\n+import { EntityProperty } from '../typings';\n \n export class PostgreSqlPlatform extends Platform {\n \n@@ -25,4 +26,8 @@ export class PostgreSqlPlatform extends Platform {\n return '~';\n }\n \n+ isBigIntProperty(prop: EntityProperty): boolean {\n+ return super.isBigIntProperty(prop) || prop.columnType === 'bigserial';\n+ }\n+\n }\n", "QueryBuilder.ts": "@@ -1,4 +1,4 @@\n-import { QueryBuilder as KnexQueryBuilder, Raw, Transaction } from 'knex';\n+import { QueryBuilder as KnexQueryBuilder, Raw, Transaction, Value } from 'knex';\n import { Utils, ValidationError } from '../utils';\n import { QueryBuilderHelper } from './QueryBuilderHelper';\n import { SmartQueryHelper } from './SmartQueryHelper';\n@@ -223,7 +223,7 @@ export class QueryBuilder<T extends AnyEntity<T> = AnyEntity> {\n return this.getKnexQuery().toSQL().toNative().sql;\n }\n \n- getParams(): any[] {\n+ getParams(): readonly Value[] {\n return this.getKnexQuery().toSQL().toNative().bindings;\n }\n \n", "DatabaseTable.ts": "@@ -24,6 +24,7 @@ export class DatabaseTable {\n v.unique = index.some(i => i.unique && !i.primary);\n v.fk = fks[v.name];\n v.indexes = index.filter(i => !i.primary);\n+ v.defaultValue = v.defaultValue && v.defaultValue.toString().startsWith('nextval(') ? null : v.defaultValue;\n o[v.name] = v;\n \n return o;\n@@ -41,7 +42,7 @@ export interface Column {\n unique: boolean;\n nullable: boolean;\n maxLength: number;\n- defaultValue: string;\n+ defaultValue: string | null;\n }\n \n export interface ForeignKey {\n", "MySqlSchemaHelper.ts": "@@ -8,13 +8,12 @@ export class MySqlSchemaHelper extends SchemaHelper {\n \n static readonly TYPES = {\n boolean: ['tinyint(1)', 'tinyint'],\n- number: ['int(?)', 'int', 'float', 'double', 'tinyint', 'smallint', 'bigint'],\n+ number: ['int(?)', 'int', 'float', 'double', 'tinyint', 'smallint'],\n float: ['float'],\n double: ['double'],\n tinyint: ['tinyint'],\n smallint: ['smallint'],\n- bigint: ['bigint'],\n- string: ['varchar(?)', 'varchar', 'text', 'enum'],\n+ string: ['varchar(?)', 'varchar', 'text', 'enum', 'bigint'],\n Date: ['datetime(?)', 'timestamp(?)', 'datetime', 'timestamp'],\n date: ['datetime(?)', 'timestamp(?)', 'datetime', 'timestamp'],\n text: ['text'],\n", "PostgreSqlSchemaHelper.ts": "@@ -7,13 +7,12 @@ export class PostgreSqlSchemaHelper extends SchemaHelper {\n \n static readonly TYPES = {\n boolean: ['bool', 'boolean'],\n- number: ['int4', 'integer', 'int8', 'int2', 'int', 'float', 'float8', 'double', 'double precision', 'bigint', 'smallint', 'decimal', 'numeric', 'real'],\n+ number: ['int4', 'integer', 'int2', 'int', 'float', 'float8', 'double', 'double precision', 'bigint', 'smallint', 'decimal', 'numeric', 'real'],\n float: ['float'],\n double: ['double precision', 'float8'],\n tinyint: ['int2'],\n smallint: ['int2'],\n- bigint: ['bigint'],\n- string: ['varchar(?)', 'character varying', 'text', 'character', 'char', 'uuid', 'enum'],\n+ string: ['varchar(?)', 'character varying', 'text', 'character', 'char', 'uuid', 'enum', 'bigint', 'int8'],\n Date: ['timestamptz(?)', 'timestamp(?)', 'datetime(?)', 'timestamp with time zone', 'timestamp without time zone', 'datetimetz', 'time', 'date', 'timetz', 'datetz'],\n date: ['timestamptz(?)', 'timestamp(?)', 'datetime(?)', 'timestamp with time zone', 'timestamp without time zone', 'datetimetz', 'time', 'date', 'timetz', 'datetz'],\n text: ['text'],\n", "SchemaGenerator.ts": "@@ -271,6 +271,10 @@ export class SchemaGenerator {\n }\n \n private createTableColumn(table: TableBuilder, meta: EntityMetadata, prop: EntityProperty, alter?: IsSame): ColumnBuilder {\n+ if (prop.primary && !meta.compositePK && this.platform.isBigIntProperty(prop)) {\n+ return table.bigIncrements(prop.fieldName);\n+ }\n+\n if (prop.primary && !meta.compositePK && prop.type === 'number') {\n return table.increments(prop.fieldName);\n }\n", "BigIntType.ts": "@@ -0,0 +1,22 @@\n+import { Type } from './Type';\n+import { Platform } from '../platforms';\n+import { EntityProperty } from '../typings';\n+\n+/**\n+ * This type will automatically convert string values returned from the database to native JS bigints.\n+ */\n+export class BigIntType extends Type {\n+\n+ convertToDatabaseValue(value: any, platform: Platform): any {\n+ return '' + value;\n+ }\n+\n+ convertToJSValue(value: any, platform: Platform): any {\n+ return '' + value;\n+ }\n+\n+ getColumnType(prop: EntityProperty, platform: Platform) {\n+ return platform.getBigIntTypeDeclarationSQL();\n+ }\n+\n+}\n", "index.ts": "@@ -1,3 +1,4 @@\n export * from './Type';\n export * from './DateType';\n export * from './TimeType';\n+export * from './BigIntType';\n", "typings.ts": "@@ -29,10 +29,10 @@ export type Primary<T> = T extends { [PrimaryKeyType]: infer PK }\n ? PK | string : T extends { uuid: infer PK }\n ? PK : T extends { id: infer PK }\n ? PK : never;\n-export type IPrimaryKeyValue = number | string | { toHexString(): string };\n+export type IPrimaryKeyValue = number | string | bigint | { toHexString(): string };\n export type IPrimaryKey<T extends IPrimaryKeyValue = IPrimaryKeyValue> = T;\n \n-export type IsEntity<T> = T extends Reference<T> | { [PrimaryKeyType]: any } | { _id: any } | { uuid: string } | { id: number | string } ? true : never;\n+export type IsEntity<T> = T extends Reference<T> | { [PrimaryKeyType]: any } | { _id: any } | { uuid: string } | { id: number | string | bigint } ? true : never;\n \n export type UnionOfArrays<T> = T extends infer T1 | infer T2 | infer T3 | infer T4 | infer T5 | infer T6 | infer T7 | infer T8 | infer T9 | infer T10\n ? T1[] | T2[] | T3[] | T4[] | T5[] | T6[] | T7[] | T8[] | T9[] | T10[] : T extends infer T1 | infer T2 | infer T3 | infer T4 | infer T5 | infer T6 | infer T7 | infer T8 | infer T9\n@@ -96,7 +96,7 @@ export interface IWrappedEntity<T, PK extends keyof T> {\n \n export type AnyEntity<T = any, PK extends keyof T = keyof T> = { [K in PK]?: T[K] } & { [PrimaryKeyType]?: T[PK] };\n export type WrappedEntity<T, PK extends keyof T> = IWrappedEntity<T, PK> & AnyEntity<T, PK>;\n-export type IdEntity<T extends { id: number | string }> = AnyEntity<T, 'id'>;\n+export type IdEntity<T extends { id: number | string | bigint }> = AnyEntity<T, 'id'>;\n export type UuidEntity<T extends { uuid: string }> = AnyEntity<T, 'uuid'>;\n export type MongoEntity<T extends { _id: IPrimaryKey; id: string }> = AnyEntity<T, 'id' | '_id'>;\n export type EntityClass<T extends AnyEntity<T>> = Function & { prototype: T };\n", "package.json": "@@ -91,7 +91,7 @@\n \"fast-deep-equal\": \"^3.0.0\",\n \"fs-extra\": \"^8.0.0\",\n \"globby\": \"^10.0.0\",\n- \"knex\": \"^0.20.8\",\n+ \"knex\": \"^0.20.11\",\n \"reflect-metadata\": \"^0.1.13\",\n \"ts-morph\": \"^4.3.3\",\n \"umzug\": \"^2.2.0\",\n", "EntityHelper.mongo.test.ts": "@@ -138,7 +138,7 @@ describe('EntityAssignerMongo', () => {\n EntityAssigner.assign(book, { tags: [wrap(tag2).toObject()] });\n expect(book.tags.getIdentifiers('_id')).toMatchObject([tag2._id]);\n expect(book.tags.isDirty()).toBe(true);\n- expect(() => EntityAssigner.assign(book, { tags: [false] } as EntityData<Book>)).toThrowError(`Invalid collection values provided for 'Book.tags' in Book.assign(): [false]`);\n+ expect(() => EntityAssigner.assign(book, { tags: [false] } as EntityData<Book>)).toThrowError(`Invalid collection values provided for 'Book.tags' in Book.assign(): [ false ]`);\n expect(() => EntityAssigner.assign(book, { publisher: [{ foo: 'bar' }] } as EntityData<Book>)).toThrowError(`Invalid reference value provided for 'Book.publisher' in Book.assign(): [{\"foo\":\"bar\"}]`);\n });\n \n", "EntityManager.mysql.test.ts": "@@ -41,6 +41,7 @@ describe('EntityManagerMySql', () => {\n port: 3308,\n user: 'user',\n timezone: 'Z',\n+ supportBigNumbers: true,\n });\n });\n \n@@ -125,7 +126,7 @@ describe('EntityManagerMySql', () => {\n created_at: '2019-06-09T07:50:25.722Z',\n author_id: 123,\n publisher_id: 321,\n- tags: [1, 2, 3],\n+ tags: ['1', '2', '3'],\n })!;\n expect(book.uuid).toBe('123-dsa');\n expect(book.title).toBe('name');\n@@ -137,9 +138,9 @@ describe('EntityManagerMySql', () => {\n expect(book.publisher!.id).toBe(321);\n expect(book.tags.length).toBe(3);\n expect(book.tags[0]).toBeInstanceOf(BookTag2);\n- expect(book.tags[0].id).toBe(1);\n- expect(book.tags[1].id).toBe(2);\n- expect(book.tags[2].id).toBe(3);\n+ expect(book.tags[0].id).toBe('1'); // bigint as string\n+ expect(book.tags[1].id).toBe('2');\n+ expect(book.tags[2].id).toBe('3');\n expect(repo.getReference(book.uuid)).toBe(book);\n });\n \n@@ -848,11 +849,11 @@ describe('EntityManagerMySql', () => {\n orm.em.persist(book2);\n await orm.em.persistAndFlush(book3);\n \n- expect(tag1.id).toBeDefined();\n- expect(tag2.id).toBeDefined();\n- expect(tag3.id).toBeDefined();\n- expect(tag4.id).toBeDefined();\n- expect(tag5.id).toBeDefined();\n+ expect(typeof tag1.id).toBe('string');\n+ expect(typeof tag2.id).toBe('string');\n+ expect(typeof tag3.id).toBe('string');\n+ expect(typeof tag4.id).toBe('string');\n+ expect(typeof tag5.id).toBe('string');\n \n // test inverse side\n const tagRepository = orm.em.getRepository(BookTag2);\n@@ -937,6 +938,17 @@ describe('EntityManagerMySql', () => {\n expect(book.tags.count()).toBe(0);\n });\n \n+ test('bigint support', async () => {\n+ const t = new BookTag2('test');\n+ t.id = '9223372036854775807';\n+ await orm.em.persistAndFlush(t);\n+ expect(t.id).toBe('9223372036854775807');\n+ orm.em.clear();\n+\n+ const t2 = await orm.em.findOneOrFail(BookTag2, t.id);\n+ expect(t2.id).toBe('9223372036854775807');\n+ });\n+\n test('many to many working with inverse side', async () => {\n const author = new Author2('Jon Snow', '[email protected]');\n const book1 = new Book2('My Life on The Wall, part 1', author);\n", "EntityManager.postgre.test.ts": "@@ -685,11 +685,11 @@ describe('EntityManagerPostgre', () => {\n await orm.em.persist(book2);\n await orm.em.persistAndFlush(book3);\n \n- expect(tag1.id).toBeDefined();\n- expect(tag2.id).toBeDefined();\n- expect(tag3.id).toBeDefined();\n- expect(tag4.id).toBeDefined();\n- expect(tag5.id).toBeDefined();\n+ expect(typeof tag1.id).toBe('string');\n+ expect(typeof tag2.id).toBe('string');\n+ expect(typeof tag3.id).toBe('string');\n+ expect(typeof tag4.id).toBe('string');\n+ expect(typeof tag5.id).toBe('string');\n \n // test inverse side\n const tagRepository = orm.em.getRepository(BookTag2);\n@@ -774,6 +774,17 @@ describe('EntityManagerPostgre', () => {\n expect(book.tags.count()).toBe(0);\n });\n \n+ test('bigint support', async () => {\n+ const t = new BookTag2('test');\n+ t.id = '9223372036854775807';\n+ await orm.em.persistAndFlush(t);\n+ expect(t.id).toBe('9223372036854775807');\n+ orm.em.clear();\n+\n+ const t2 = await orm.em.findOneOrFail(BookTag2, t.id);\n+ expect(t2.id).toBe('9223372036854775807');\n+ });\n+\n test('populating many to many relation', async () => {\n const p1 = new Publisher2('foo');\n expect(p1.tests).toBeInstanceOf(Collection);\n", "SchemaGenerator.test.ts": "@@ -165,8 +165,8 @@ describe('SchemaGenerator', () => {\n authorMeta.properties.born.nullable = false;\n authorMeta.properties.born.default = 42;\n authorMeta.properties.age.default = 42;\n- authorMeta.properties.favouriteAuthor.type = 'BookTag2';\n- authorMeta.properties.favouriteAuthor.referencedTableName = 'book_tag2';\n+ authorMeta.properties.favouriteAuthor.type = 'FooBar2';\n+ authorMeta.properties.favouriteAuthor.referencedTableName = 'foo_bar2';\n await expect(generator.getUpdateSchemaSQL(false)).resolves.toMatchSnapshot('mysql-update-schema-alter-column');\n await generator.updateSchema();\n \n@@ -370,8 +370,8 @@ describe('SchemaGenerator', () => {\n authorMeta.properties.name.nullable = false;\n authorMeta.properties.name.default = 42;\n authorMeta.properties.age.default = 42;\n- authorMeta.properties.favouriteAuthor.type = 'BookTag2';\n- authorMeta.properties.favouriteAuthor.referencedTableName = 'book_tag2';\n+ authorMeta.properties.favouriteAuthor.type = 'FooBar2';\n+ authorMeta.properties.favouriteAuthor.referencedTableName = 'foo_bar2';\n await expect(generator.getUpdateSchemaSQL(false)).resolves.toMatchSnapshot('postgres-update-schema-alter-column');\n await generator.updateSchema();\n \n", "EntityGenerator.test.ts.snap": "@@ -139,8 +139,8 @@ export class Book2ToBookTag2 {\n @Entity()\n export class BookTag2 {\n \n- @PrimaryKey()\n- id!: number;\n+ @PrimaryKey({ type: 'bigint' })\n+ id!: string;\n \n @Property({ length: 50 })\n name!: string;\n@@ -419,8 +419,8 @@ export class Book2ToBookTag2 {\n @Entity()\n export class BookTag2 {\n \n- @PrimaryKey()\n- id!: number;\n+ @PrimaryKey({ type: 'int8' })\n+ id!: string;\n \n @Property({ length: 50 })\n name!: string;\n", "SchemaGenerator.test.ts.snap": "@@ -22,7 +22,7 @@ alter table \\`book2\\` add primary key \\`book2_pkey\\`(\\`uuid_pk\\`);\n alter table \\`book2\\` add index \\`book2_author_id_index\\`(\\`author_id\\`);\n alter table \\`book2\\` add index \\`book2_publisher_id_index\\`(\\`publisher_id\\`);\n \n-create table \\`book_tag2\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`name\\` varchar(50) not null) default character set utf8 engine = InnoDB;\n+create table \\`book_tag2\\` (\\`id\\` bigint unsigned not null auto_increment primary key, \\`name\\` varchar(50) not null) default character set utf8 engine = InnoDB;\n \n create table \\`publisher2\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`name\\` varchar(255) not null, \\`type\\` enum('local', 'global') not null, \\`type2\\` enum('LOCAL', 'GLOBAL') not null, \\`enum1\\` tinyint null, \\`enum2\\` tinyint null, \\`enum3\\` tinyint null, \\`enum4\\` enum('a', 'b', 'c') null) default character set utf8 engine = InnoDB;\n \n@@ -48,11 +48,11 @@ alter table \\`author2_to_author2\\` add index \\`author2_to_author2_author2_1_id_i\n alter table \\`author2_to_author2\\` add index \\`author2_to_author2_author2_2_id_index\\`(\\`author2_2_id\\`);\n alter table \\`author2_to_author2\\` add primary key \\`author2_to_author2_pkey\\`(\\`author2_1_id\\`, \\`author2_2_id\\`);\n \n-create table \\`book2_to_book_tag2\\` (\\`order\\` int unsigned not null auto_increment primary key, \\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table \\`book2_to_book_tag2\\` (\\`order\\` int unsigned not null auto_increment primary key, \\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table \\`book2_to_book_tag2\\` add index \\`book2_to_book_tag2_book2_uuid_pk_index\\`(\\`book2_uuid_pk\\`);\n alter table \\`book2_to_book_tag2\\` add index \\`book2_to_book_tag2_book_tag2_id_index\\`(\\`book_tag2_id\\`);\n \n-create table \\`book_to_tag_unordered\\` (\\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table \\`book_to_tag_unordered\\` (\\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table \\`book_to_tag_unordered\\` add index \\`book_to_tag_unordered_book2_uuid_pk_index\\`(\\`book2_uuid_pk\\`);\n alter table \\`book_to_tag_unordered\\` add index \\`book_to_tag_unordered_book_tag2_id_index\\`(\\`book_tag2_id\\`);\n alter table \\`book_to_tag_unordered\\` add primary key \\`book_to_tag_unordered_pkey\\`(\\`book2_uuid_pk\\`, \\`book_tag2_id\\`);\n@@ -147,7 +147,7 @@ alter table \\`book2\\` add primary key \\`book2_pkey\\`(\\`uuid_pk\\`);\n alter table \\`book2\\` add index \\`book2_author_id_index\\`(\\`author_id\\`);\n alter table \\`book2\\` add index \\`book2_publisher_id_index\\`(\\`publisher_id\\`);\n \n-create table \\`book_tag2\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`name\\` varchar(50) not null) default character set utf8 engine = InnoDB;\n+create table \\`book_tag2\\` (\\`id\\` bigint unsigned not null auto_increment primary key, \\`name\\` varchar(50) not null) default character set utf8 engine = InnoDB;\n \n create table \\`publisher2\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`name\\` varchar(255) not null, \\`type\\` enum('local', 'global') not null, \\`type2\\` enum('LOCAL', 'GLOBAL') not null, \\`enum1\\` tinyint null, \\`enum2\\` tinyint null, \\`enum3\\` tinyint null, \\`enum4\\` enum('a', 'b', 'c') null) default character set utf8 engine = InnoDB;\n \n@@ -173,11 +173,11 @@ alter table \\`author2_to_author2\\` add index \\`author2_to_author2_author2_1_id_i\n alter table \\`author2_to_author2\\` add index \\`author2_to_author2_author2_2_id_index\\`(\\`author2_2_id\\`);\n alter table \\`author2_to_author2\\` add primary key \\`author2_to_author2_pkey\\`(\\`author2_1_id\\`, \\`author2_2_id\\`);\n \n-create table \\`book2_to_book_tag2\\` (\\`order\\` int unsigned not null auto_increment primary key, \\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table \\`book2_to_book_tag2\\` (\\`order\\` int unsigned not null auto_increment primary key, \\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table \\`book2_to_book_tag2\\` add index \\`book2_to_book_tag2_book2_uuid_pk_index\\`(\\`book2_uuid_pk\\`);\n alter table \\`book2_to_book_tag2\\` add index \\`book2_to_book_tag2_book_tag2_id_index\\`(\\`book_tag2_id\\`);\n \n-create table \\`book_to_tag_unordered\\` (\\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table \\`book_to_tag_unordered\\` (\\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table \\`book_to_tag_unordered\\` add index \\`book_to_tag_unordered_book2_uuid_pk_index\\`(\\`book2_uuid_pk\\`);\n alter table \\`book_to_tag_unordered\\` add index \\`book_to_tag_unordered_book_tag2_id_index\\`(\\`book_tag2_id\\`);\n alter table \\`book_to_tag_unordered\\` add primary key \\`book_to_tag_unordered_pkey\\`(\\`book2_uuid_pk\\`, \\`book_tag2_id\\`);\n@@ -250,7 +250,7 @@ alter table \\\\\"author2\\\\\" add constraint \\\\\"author2_name_email_unique\\\\\" unique\n create table \\\\\"book2\\\\\" (\\\\\"uuid_pk\\\\\" varchar(36) not null, \\\\\"created_at\\\\\" timestamptz(3) not null default current_timestamp(3), \\\\\"title\\\\\" varchar(255) null, \\\\\"perex\\\\\" text null, \\\\\"price\\\\\" float null, \\\\\"double\\\\\" double precision null, \\\\\"meta\\\\\" json null, \\\\\"author_id\\\\\" int4 not null, \\\\\"publisher_id\\\\\" int4 null);\n alter table \\\\\"book2\\\\\" add constraint \\\\\"book2_pkey\\\\\" primary key (\\\\\"uuid_pk\\\\\");\n \n-create table \\\\\"book_tag2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"name\\\\\" varchar(50) not null);\n+create table \\\\\"book_tag2\\\\\" (\\\\\"id\\\\\" bigserial primary key, \\\\\"name\\\\\" varchar(50) not null);\n \n create table \\\\\"publisher2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"name\\\\\" varchar(255) not null, \\\\\"type\\\\\" text check (\\\\\"type\\\\\" in ('local', 'global')) not null, \\\\\"type2\\\\\" text check (\\\\\"type2\\\\\" in ('LOCAL', 'GLOBAL')) not null, \\\\\"enum1\\\\\" int2 null, \\\\\"enum2\\\\\" int2 null, \\\\\"enum3\\\\\" int2 null, \\\\\"enum4\\\\\" text check (\\\\\"enum4\\\\\" in ('a', 'b', 'c')) null);\n \n@@ -272,9 +272,9 @@ alter table \\\\\"author_to_friend\\\\\" add constraint \\\\\"author_to_friend_pkey\\\\\" pr\n create table \\\\\"author2_to_author2\\\\\" (\\\\\"author2_1_id\\\\\" int4 not null, \\\\\"author2_2_id\\\\\" int4 not null);\n alter table \\\\\"author2_to_author2\\\\\" add constraint \\\\\"author2_to_author2_pkey\\\\\" primary key (\\\\\"author2_1_id\\\\\", \\\\\"author2_2_id\\\\\");\n \n-create table \\\\\"book2_to_book_tag2\\\\\" (\\\\\"order\\\\\" serial primary key, \\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" int4 not null);\n+create table \\\\\"book2_to_book_tag2\\\\\" (\\\\\"order\\\\\" serial primary key, \\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" bigint not null);\n \n-create table \\\\\"book_to_tag_unordered\\\\\" (\\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" int4 not null);\n+create table \\\\\"book_to_tag_unordered\\\\\" (\\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" bigint not null);\n alter table \\\\\"book_to_tag_unordered\\\\\" add constraint \\\\\"book_to_tag_unordered_pkey\\\\\" primary key (\\\\\"book2_uuid_pk\\\\\", \\\\\"book_tag2_id\\\\\");\n \n create table \\\\\"publisher2_to_test2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"publisher2_id\\\\\" int4 not null, \\\\\"test2_id\\\\\" int4 not null);\n@@ -363,7 +363,7 @@ alter table \\\\\"author2\\\\\" add constraint \\\\\"author2_name_email_unique\\\\\" unique\n create table \\\\\"book2\\\\\" (\\\\\"uuid_pk\\\\\" varchar(36) not null, \\\\\"created_at\\\\\" timestamptz(3) not null default current_timestamp(3), \\\\\"title\\\\\" varchar(255) null, \\\\\"perex\\\\\" text null, \\\\\"price\\\\\" float null, \\\\\"double\\\\\" double precision null, \\\\\"meta\\\\\" json null, \\\\\"author_id\\\\\" int4 not null, \\\\\"publisher_id\\\\\" int4 null);\n alter table \\\\\"book2\\\\\" add constraint \\\\\"book2_pkey\\\\\" primary key (\\\\\"uuid_pk\\\\\");\n \n-create table \\\\\"book_tag2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"name\\\\\" varchar(50) not null);\n+create table \\\\\"book_tag2\\\\\" (\\\\\"id\\\\\" bigserial primary key, \\\\\"name\\\\\" varchar(50) not null);\n \n create table \\\\\"publisher2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"name\\\\\" varchar(255) not null, \\\\\"type\\\\\" text check (\\\\\"type\\\\\" in ('local', 'global')) not null, \\\\\"type2\\\\\" text check (\\\\\"type2\\\\\" in ('LOCAL', 'GLOBAL')) not null, \\\\\"enum1\\\\\" int2 null, \\\\\"enum2\\\\\" int2 null, \\\\\"enum3\\\\\" int2 null, \\\\\"enum4\\\\\" text check (\\\\\"enum4\\\\\" in ('a', 'b', 'c')) null);\n \n@@ -385,9 +385,9 @@ alter table \\\\\"author_to_friend\\\\\" add constraint \\\\\"author_to_friend_pkey\\\\\" pr\n create table \\\\\"author2_to_author2\\\\\" (\\\\\"author2_1_id\\\\\" int4 not null, \\\\\"author2_2_id\\\\\" int4 not null);\n alter table \\\\\"author2_to_author2\\\\\" add constraint \\\\\"author2_to_author2_pkey\\\\\" primary key (\\\\\"author2_1_id\\\\\", \\\\\"author2_2_id\\\\\");\n \n-create table \\\\\"book2_to_book_tag2\\\\\" (\\\\\"order\\\\\" serial primary key, \\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" int4 not null);\n+create table \\\\\"book2_to_book_tag2\\\\\" (\\\\\"order\\\\\" serial primary key, \\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" bigint not null);\n \n-create table \\\\\"book_to_tag_unordered\\\\\" (\\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" int4 not null);\n+create table \\\\\"book_to_tag_unordered\\\\\" (\\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" bigint not null);\n alter table \\\\\"book_to_tag_unordered\\\\\" add constraint \\\\\"book_to_tag_unordered_pkey\\\\\" primary key (\\\\\"book2_uuid_pk\\\\\", \\\\\"book_tag2_id\\\\\");\n \n create table \\\\\"publisher2_to_test2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"publisher2_id\\\\\" int4 not null, \\\\\"test2_id\\\\\" int4 not null);\n@@ -717,7 +717,7 @@ alter table \\`book2\\` add primary key \\`book2_pkey\\`(\\`uuid_pk\\`);\n alter table \\`book2\\` add index \\`book2_author_id_index\\`(\\`author_id\\`);\n alter table \\`book2\\` add index \\`book2_publisher_id_index\\`(\\`publisher_id\\`);\n \n-create table \\`book_tag2\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`name\\` varchar(50) not null) default character set utf8 engine = InnoDB;\n+create table \\`book_tag2\\` (\\`id\\` bigint unsigned not null auto_increment primary key, \\`name\\` varchar(50) not null) default character set utf8 engine = InnoDB;\n \n create table \\`publisher2\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`name\\` varchar(255) not null, \\`type\\` enum('local', 'global') not null, \\`type2\\` enum('LOCAL', 'GLOBAL') not null, \\`enum1\\` tinyint null, \\`enum2\\` tinyint null, \\`enum3\\` tinyint null, \\`enum4\\` enum('a', 'b', 'c') null) default character set utf8 engine = InnoDB;\n \n@@ -743,11 +743,11 @@ alter table \\`author2_to_author2\\` add index \\`author2_to_author2_author2_1_id_i\n alter table \\`author2_to_author2\\` add index \\`author2_to_author2_author2_2_id_index\\`(\\`author2_2_id\\`);\n alter table \\`author2_to_author2\\` add primary key \\`author2_to_author2_pkey\\`(\\`author2_1_id\\`, \\`author2_2_id\\`);\n \n-create table \\`book2_to_book_tag2\\` (\\`order\\` int unsigned not null auto_increment primary key, \\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table \\`book2_to_book_tag2\\` (\\`order\\` int unsigned not null auto_increment primary key, \\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table \\`book2_to_book_tag2\\` add index \\`book2_to_book_tag2_book2_uuid_pk_index\\`(\\`book2_uuid_pk\\`);\n alter table \\`book2_to_book_tag2\\` add index \\`book2_to_book_tag2_book_tag2_id_index\\`(\\`book_tag2_id\\`);\n \n-create table \\`book_to_tag_unordered\\` (\\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table \\`book_to_tag_unordered\\` (\\`book2_uuid_pk\\` varchar(36) not null, \\`book_tag2_id\\` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table \\`book_to_tag_unordered\\` add index \\`book_to_tag_unordered_book2_uuid_pk_index\\`(\\`book2_uuid_pk\\`);\n alter table \\`book_to_tag_unordered\\` add index \\`book_to_tag_unordered_book_tag2_id_index\\`(\\`book_tag2_id\\`);\n alter table \\`book_to_tag_unordered\\` add primary key \\`book_to_tag_unordered_pkey\\`(\\`book2_uuid_pk\\`, \\`book_tag2_id\\`);\n@@ -804,7 +804,7 @@ alter table \\\\\"author2\\\\\" add constraint \\\\\"author2_name_email_unique\\\\\" unique\n create table \\\\\"book2\\\\\" (\\\\\"uuid_pk\\\\\" varchar(36) not null, \\\\\"created_at\\\\\" timestamptz(3) not null default current_timestamp(3), \\\\\"title\\\\\" varchar(255) null, \\\\\"perex\\\\\" text null, \\\\\"price\\\\\" float null, \\\\\"double\\\\\" double precision null, \\\\\"meta\\\\\" json null, \\\\\"author_id\\\\\" int4 not null, \\\\\"publisher_id\\\\\" int4 null);\n alter table \\\\\"book2\\\\\" add constraint \\\\\"book2_pkey\\\\\" primary key (\\\\\"uuid_pk\\\\\");\n \n-create table \\\\\"book_tag2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"name\\\\\" varchar(50) not null);\n+create table \\\\\"book_tag2\\\\\" (\\\\\"id\\\\\" bigserial primary key, \\\\\"name\\\\\" varchar(50) not null);\n \n create table \\\\\"publisher2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"name\\\\\" varchar(255) not null, \\\\\"type\\\\\" text check (\\\\\"type\\\\\" in ('local', 'global')) not null, \\\\\"type2\\\\\" text check (\\\\\"type2\\\\\" in ('LOCAL', 'GLOBAL')) not null, \\\\\"enum1\\\\\" int2 null, \\\\\"enum2\\\\\" int2 null, \\\\\"enum3\\\\\" int2 null, \\\\\"enum4\\\\\" text check (\\\\\"enum4\\\\\" in ('a', 'b', 'c')) null);\n \n@@ -826,9 +826,9 @@ alter table \\\\\"author_to_friend\\\\\" add constraint \\\\\"author_to_friend_pkey\\\\\" pr\n create table \\\\\"author2_to_author2\\\\\" (\\\\\"author2_1_id\\\\\" int4 not null, \\\\\"author2_2_id\\\\\" int4 not null);\n alter table \\\\\"author2_to_author2\\\\\" add constraint \\\\\"author2_to_author2_pkey\\\\\" primary key (\\\\\"author2_1_id\\\\\", \\\\\"author2_2_id\\\\\");\n \n-create table \\\\\"book2_to_book_tag2\\\\\" (\\\\\"order\\\\\" serial primary key, \\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" int4 not null);\n+create table \\\\\"book2_to_book_tag2\\\\\" (\\\\\"order\\\\\" serial primary key, \\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" bigint not null);\n \n-create table \\\\\"book_to_tag_unordered\\\\\" (\\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" int4 not null);\n+create table \\\\\"book_to_tag_unordered\\\\\" (\\\\\"book2_uuid_pk\\\\\" varchar(36) not null, \\\\\"book_tag2_id\\\\\" bigint not null);\n alter table \\\\\"book_to_tag_unordered\\\\\" add constraint \\\\\"book_to_tag_unordered_pkey\\\\\" primary key (\\\\\"book2_uuid_pk\\\\\", \\\\\"book_tag2_id\\\\\");\n \n create table \\\\\"publisher2_to_test2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"publisher2_id\\\\\" int4 not null, \\\\\"test2_id\\\\\" int4 not null);\n@@ -910,7 +910,7 @@ exports[`SchemaGenerator update schema [mysql]: mysql-update-schema-alter-column\n \"alter table \\`author2\\` modify \\`age\\` int(11) null default 42, modify \\`born\\` int not null default 42;\n alter table \\`author2\\` drop foreign key \\`author2_favourite_author_id_foreign\\`;\n alter table \\`author2\\` drop index \\`author2_favourite_author_id_index\\`;\n-alter table \\`author2\\` add constraint \\`author2_favourite_author_id_foreign\\` foreign key (\\`favourite_author_id\\`) references \\`book_tag2\\` (\\`id\\`) on update cascade on delete set null;\n+alter table \\`author2\\` add constraint \\`author2_favourite_author_id_foreign\\` foreign key (\\`favourite_author_id\\`) references \\`foo_bar2\\` (\\`id\\`) on update cascade on delete set null;\n \n \"\n `;\n@@ -977,7 +977,7 @@ alter table \\\\\"author2\\\\\" alter column \\\\\"age\\\\\" drop not null;\n alter table \\\\\"author2\\\\\" alter column \\\\\"age\\\\\" type int4 using (\\\\\"age\\\\\"::int4);\n alter table \\\\\"author2\\\\\" alter column \\\\\"age\\\\\" set default 42;\n alter table \\\\\"author2\\\\\" drop constraint \\\\\"author2_favourite_author_id_foreign\\\\\";\n-alter table \\\\\"author2\\\\\" add constraint \\\\\"author2_favourite_author_id_foreign\\\\\" foreign key (\\\\\"favourite_author_id\\\\\") references \\\\\"book_tag2\\\\\" (\\\\\"id\\\\\") on update cascade on delete set null;\n+alter table \\\\\"author2\\\\\" add constraint \\\\\"author2_favourite_author_id_foreign\\\\\" foreign key (\\\\\"favourite_author_id\\\\\") references \\\\\"foo_bar2\\\\\" (\\\\\"id\\\\\") on update cascade on delete set null;\n \n \"\n `;\n", "BookTag2.ts": "@@ -1,9 +1,12 @@\n-import { Collection, Entity, ManyToMany, Property } from '../../lib';\n+import { BigIntType, Collection, Entity, ManyToMany, PrimaryKey, Property, ReferenceType } from '../../lib';\n import { Book2 } from './Book2';\n-import { BaseEntity2 } from './BaseEntity2';\n+import { MetadataStorage } from '../../lib/metadata';\n \n @Entity()\n-export class BookTag2 extends BaseEntity2 {\n+export class BookTag2 {\n+\n+ @PrimaryKey({ type: BigIntType })\n+ id!: string;\n \n @Property({ length: 50 })\n name: string;\n@@ -15,7 +18,15 @@ export class BookTag2 extends BaseEntity2 {\n booksUnordered!: Collection<Book2>;\n \n constructor(name: string) {\n- super();\n+ const meta = MetadataStorage.getMetadata(this.constructor.name);\n+ const props = meta.properties;\n+\n+ Object.keys(props).forEach(prop => {\n+ if ([ReferenceType.ONE_TO_MANY, ReferenceType.MANY_TO_MANY].includes(props[prop].reference)) {\n+ (this as any)[prop] = new Collection(this);\n+ }\n+ });\n+\n this.name = name;\n }\n \n", "mysql-schema.sql": "@@ -28,7 +28,7 @@ alter table `book2` add primary key `book2_pkey`(`uuid_pk`);\n alter table `book2` add index `book2_author_id_index`(`author_id`);\n alter table `book2` add index `book2_publisher_id_index`(`publisher_id`);\n \n-create table `book_tag2` (`id` int unsigned not null auto_increment primary key, `name` varchar(50) not null) default character set utf8 engine = InnoDB;\n+create table `book_tag2` (`id` bigint unsigned not null auto_increment primary key, `name` varchar(50) not null) default character set utf8 engine = InnoDB;\n \n create table `publisher2` (`id` int unsigned not null auto_increment primary key, `name` varchar(255) not null, `type` enum('local', 'global') not null, `type2` enum('LOCAL', 'GLOBAL') not null, `enum1` tinyint(2) null, `enum2` tinyint(2) null, `enum3` tinyint(2) null, `enum4` enum('a', 'b', 'c') null) default character set utf8 engine = InnoDB;\n \n@@ -56,11 +56,11 @@ alter table `author2_to_author2` add index `author2_to_author2_author2_1_id_inde\n alter table `author2_to_author2` add index `author2_to_author2_author2_2_id_index`(`author2_2_id`);\n alter table `author2_to_author2` add primary key `author2_to_author2_pkey`(`author2_1_id`, `author2_2_id`);\n \n-create table `book2_to_book_tag2` (`order` int unsigned not null auto_increment primary key, `book2_uuid_pk` varchar(36) not null, `book_tag2_id` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table `book2_to_book_tag2` (`order` int unsigned not null auto_increment primary key, `book2_uuid_pk` varchar(36) not null, `book_tag2_id` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table `book2_to_book_tag2` add index `book2_to_book_tag2_book2_uuid_pk_index`(`book2_uuid_pk`);\n alter table `book2_to_book_tag2` add index `book2_to_book_tag2_book_tag2_id_index`(`book_tag2_id`);\n \n-create table `book_to_tag_unordered` (`book2_uuid_pk` varchar(36) not null, `book_tag2_id` int(11) unsigned not null) default character set utf8 engine = InnoDB;\n+create table `book_to_tag_unordered` (`book2_uuid_pk` varchar(36) not null, `book_tag2_id` bigint unsigned not null) default character set utf8 engine = InnoDB;\n alter table `book_to_tag_unordered` add index `book_to_tag_unordered_book2_uuid_pk_index`(`book2_uuid_pk`);\n alter table `book_to_tag_unordered` add index `book_to_tag_unordered_book_tag2_id_index`(`book_tag2_id`);\n alter table `book_to_tag_unordered` add primary key `book_to_tag_unordered_pkey`(`book2_uuid_pk`, `book_tag2_id`);\n", "postgre-schema.sql": "@@ -25,7 +25,7 @@ create index \"author2_terms_accepted_index\" on \"author2\" (\"terms_accepted\");\n create table \"book2\" (\"uuid_pk\" character varying(36) not null, \"created_at\" timestamptz(3) not null default current_timestamp(3), \"title\" varchar(255) null, \"perex\" text null, \"price\" float null, \"double\" numeric null, \"meta\" json null, \"author_id\" int4 not null, \"publisher_id\" int4 null, \"foo\" varchar(255) null);\n alter table \"book2\" add constraint \"book2_pkey\" primary key (\"uuid_pk\");\n \n-create table \"book_tag2\" (\"id\" serial primary key, \"name\" varchar(50) not null);\n+create table \"book_tag2\" (\"id\" bigserial primary key, \"name\" varchar(50) not null);\n \n create table \"publisher2\" (\"id\" serial primary key, \"name\" varchar(255) not null, \"type\" text check (\"type\" in ('local', 'global')) not null, \"type2\" text check (\"type2\" in ('LOCAL', 'GLOBAL')) not null, \"enum1\" int2 null, \"enum2\" int2 null, \"enum3\" int2 null, \"enum4\" text check (\"enum4\" in ('a', 'b', 'c')) null);\n \n@@ -44,9 +44,9 @@ alter table \"author_to_friend\" add constraint \"author_to_friend_pkey\" primary ke\n create table \"author2_to_author2\" (\"author2_1_id\" int4 not null, \"author2_2_id\" int4 not null);\n alter table \"author2_to_author2\" add constraint \"author2_to_author2_pkey\" primary key (\"author2_1_id\", \"author2_2_id\");\n \n-create table \"book2_to_book_tag2\" (\"order\" serial primary key, \"book2_uuid_pk\" varchar(36) not null, \"book_tag2_id\" int4 not null);\n+create table \"book2_to_book_tag2\" (\"order\" serial primary key, \"book2_uuid_pk\" varchar(36) not null, \"book_tag2_id\" bigint not null);\n \n-create table \"book_to_tag_unordered\" (\"book2_uuid_pk\" varchar(36) not null, \"book_tag2_id\" int4 not null, primary key (\"book2_uuid_pk\", \"book_tag2_id\"));\n+create table \"book_to_tag_unordered\" (\"book2_uuid_pk\" varchar(36) not null, \"book_tag2_id\" bigint not null, primary key (\"book2_uuid_pk\", \"book_tag2_id\"));\n \n create table \"publisher2_to_test2\" (\"id\" serial primary key, \"publisher2_id\" int4 not null, \"test2_id\" int4 not null);\n \n", "types.test.ts": "@@ -28,6 +28,10 @@ describe('check typings', () => {\n // object id allows string\n assert<IsExact<Primary<Author>, ObjectId | string>>(true);\n assert<IsExact<Primary<Author>, number>>(false);\n+\n+ // bigint support\n+ assert<IsExact<Primary<BookTag2>, string>>(true);\n+ assert<IsExact<Primary<BookTag2>, number>>(false);\n });\n \n test('EntityOrPrimary', async () => {\n@@ -206,7 +210,10 @@ describe('check typings', () => {\n assert<Has<FilterQuery<Book2>, { author: { favouriteBook?: { title?: string } } }>>(true);\n assert<IsAssignable<FilterQuery<Book2>, { author: { favouriteBook: { tags: FilterValue<BookTag2> } } }>>(true);\n assert<IsAssignable<FilterQuery<Book2>, { author: { favouriteBook: { tags: BookTag2[] } } }>>(true);\n- assert<IsAssignable<FilterQuery<Book2>, { author: { favouriteBook: { tags: number[] } } }>>(true);\n+ assert<IsAssignable<FilterQuery<Book2>, { author: { favouriteBook: { tags: string[] } } }>>(true);\n+ assert<IsAssignable<FilterQuery<Book2>, { tags: string[] }>>(true);\n+ assert<IsAssignable<FilterQuery<Book2>, { tags: string }>>(true);\n+ assert<IsAssignable<FilterQuery<Author2>, { books: { tags: bigint[] } }>>(true);\n });\n \n test('FilterQuery ok assignments', async () => {\n@@ -222,7 +229,7 @@ describe('check typings', () => {\n ok01 = { books: { author: { born: new Date() } } };\n ok01 = { books: { author: { born: new Date() } }, favouriteBook: {} as Book2 };\n ok01 = { books: { tags: { name: 'asd' } } };\n- ok01 = { books: { tags: 1 } };\n+ ok01 = { books: { tags: '1' } };\n ok01 = { books: { tags: { books: { title: 'asd' } } } };\n ok01 = { name: 'asd' };\n ok01 = { $or: [{ name: 'asd' }, { age: 18 }] };\n", "yarn.lock": "Binary files a/yarn.lock and b/yarn.lock differ\n"}
feat: async presets fix: fixed various README.md files feat: all components uses a property for init instead of events
86f3038bfc336744e88bb3d6ab7dfd4a36ada4e6
feat
https://github.com/tsparticles/tsparticles/commit/86f3038bfc336744e88bb3d6ab7dfd4a36ada4e6
async presets fix: fixed various README.md files feat: all components uses a property for init instead of events
{".babelrc": "@@ -30,6 +30,7 @@\n {\n \"loose\": true\n }\n- ]\n+ ],\n+ \"@babel/transform-runtime\"\n ]\n }\n", "package.json": "@@ -5,7 +5,7 @@\n \"scripts\": {\n \"build\": \"rollup -c rollup.config.js\",\n \"dev\": \"rollup -c rollup.config.js -w\",\n- \"start\": \"sirv public\",\n+ \"start\": \"sirv public --host 127.0.0.1\",\n \"validate\": \"svelte-check\"\n },\n \"license\": \"MIT\",\n", "IParticlesProps.ts": "@@ -12,6 +12,6 @@ export interface IParticlesProps {\n \tclassName?: string;\n \tcanvasClassName?: string;\n \tcontainer?: { current: Container };\n-\tinit?: (tsParticles: Main) => void;\n+\tinit?: (tsParticles: Main) => Promise<void>;\n \tloaded?: (container: Container) => void;\n }\n", "Particles.tsx": "@@ -5,6 +5,7 @@ import {\n \tcreateMemo,\n \tcreateSignal,\n \tonCleanup,\n+\tonMount,\n \tJSX,\n } from \"solid-js\";\n \n@@ -16,13 +17,10 @@ interface MutableRefObject<T> {\n * @param (props:IParticlesProps) Particles component properties\n */\n const Particles = (props: IParticlesProps): JSX.Element => {\n+\tconst [init, setInit] = createSignal(false);\n+\n \ttry {\n \t\tconst id = props.id ?? \"tsparticles\";\n-\n-\t\tif (props.init) {\n-\t\t\tprops.init(tsParticles);\n-\t\t}\n-\n \t\tconst options = createMemo(() => props.params ?? props.options ?? {});\n \n \t\tconst refContainer = props.container as MutableRefObject<\n@@ -45,16 +43,38 @@ const Particles = (props: IParticlesProps): JSX.Element => {\n \t\t\t}\n \t\t};\n \n-\t\tcreateEffect(() => {\n-\t\t\tconst container = tsParticles.dom().find((t) => t.id === containerId());\n+\t\tonMount(() => {\n+\t\t\tif (props.init) {\n+\t\t\t\tconsole.log(\"props.init present\");\n+\n+\t\t\t\tprops.init(tsParticles).then(() => {\n+\t\t\t\t\tconsole.log(\"then init\");\n+\n+\t\t\t\t\tsetInit(true);\n+\t\t\t\t});\n+\t\t\t} else {\n+\t\t\t\tsetInit(true);\n+\t\t\t}\n+\t\t});\n+\n+\t\tcreateEffect(async () => {\n+\t\t\tif (!init()) {\n+\t\t\t\tconsole.log(\"not initialized\");\n+\n+\t\t\t\treturn;\n+\t\t\t}\n+\n+\t\t\tlet container = tsParticles.dom().find((t) => t.id === containerId());\n \n \t\t\tcontainer?.destroy();\n \n \t\t\tif (url) {\n-\t\t\t\ttsParticles.loadJSON(id, url).then(cb);\n+\t\t\t\tcontainer = await tsParticles.loadJSON(id, url);\n \t\t\t} else {\n-\t\t\t\ttsParticles.load(id, options()).then(cb);\n+\t\t\t\tcontainer = await tsParticles.load(id, options());\n \t\t\t}\n+\n+\t\t\tcb(container);\n \t\t});\n \n \t\tonCleanup(() => {\n@@ -78,6 +98,8 @@ const Particles = (props: IParticlesProps): JSX.Element => {\n \t\t\t</div>\n \t\t);\n \t} catch (e) {\n+\t\tconsole.log(e);\n+\n \t\treturn <div></div>;\n \t}\n };\n", "yarn.lock": "@@ -847,6 +847,18 @@\n dependencies:\n \"@babel/helper-plugin-utils\" \"^7.14.5\"\n \n+\"@babel/plugin-transform-runtime@^7.16.4\":\n+ version \"7.16.4\"\n+ resolved \"https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.4.tgz#f9ba3c7034d429c581e1bd41b4952f3db3c2c7e8\"\n+ integrity sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==\n+ dependencies:\n+ \"@babel/helper-module-imports\" \"^7.16.0\"\n+ \"@babel/helper-plugin-utils\" \"^7.14.5\"\n+ babel-plugin-polyfill-corejs2 \"^0.3.0\"\n+ babel-plugin-polyfill-corejs3 \"^0.4.0\"\n+ babel-plugin-polyfill-regenerator \"^0.3.0\"\n+ semver \"^6.3.0\"\n+\n \"@babel/plugin-transform-shorthand-properties@^7.16.0\":\n version \"7.16.0\"\n resolved \"https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.0.tgz#090372e3141f7cc324ed70b3daf5379df2fa384d\"\n", "README.md": "@@ -33,7 +33,7 @@ This script **MUST** be placed after the `tsParticles` one.\n A bundled script can also be used, this will include every needed plugin needed by the preset.\n \n ```html\n-<script src=\"https://cdn.jsdelivr.net/npm/tsparticles-preset-triangles/dist/tsparticles.preset.triangles.bundle.min.js\"></script>\n+<script src=\"https://cdn.jsdelivr.net/npm/tsparticles-preset-triangles/tsparticles.preset.triangles.bundle.min.js\"></script>\n ```\n \n ### Usage\n", "Particles.svelte": "@@ -1,54 +1,63 @@\n <script lang=\"ts\">\n- import { afterUpdate, createEventDispatcher } from \"svelte\";\n- import { Container, tsParticles } from \"tsparticles-engine\";\n-\n- export let options = {};\n- export let url = \"\";\n- export let id = \"tsparticles\";\n-\n- const dispatch = createEventDispatcher();\n- const particlesInitEvent = \"particlesInit\";\n- const particlesLoadedEvent = \"particlesLoaded\";\n-\n- let oldId = id;\n-\n- afterUpdate(() => {\n- tsParticles.init();\n-\n- dispatch(particlesInitEvent, tsParticles);\n-\n- if (oldId) {\n- const oldContainer = tsParticles.dom().find((c) => c.id === oldId);\n-\n- if (oldContainer) {\n- oldContainer.destroy();\n- }\n- }\n-\n- if (id) {\n- const cb = (container) => {\n- dispatch(particlesLoadedEvent, {\n- particles: container,\n- });\n-\n- oldId = id;\n- };\n-\n- if (url) {\n- tsParticles.loadJSON(id, url).then(cb);\n- } else if (options) {\n- tsParticles.load(id, options).then(cb);\n- } else {\n- console.error(\"You must specify options or url to load tsParticles\");\n- }\n- } else {\n- dispatch(particlesLoadedEvent, {\n- particles: undefined,\n- });\n- }\n- });\n+ import { afterUpdate, createEventDispatcher } from \"svelte\";\n+ import { tsParticles } from \"tsparticles-engine\";\n+\n+ export let options = {};\n+ export let url = \"\";\n+ export let id = \"tsparticles\";\n+ export let particlesInit;\n+\n+ const dispatch = createEventDispatcher();\n+\n+ const particlesLoadedEvent = \"particlesLoaded\";\n+\n+ let oldId = id;\n+\n+ afterUpdate(async () => {\n+ tsParticles.init();\n+\n+ if (particlesInit) {\n+ await particlesInit(tsParticles);\n+ }\n+\n+ if (oldId) {\n+ const oldContainer = tsParticles.dom().find((c) => c.id === oldId);\n+\n+ if (oldContainer) {\n+ oldContainer.destroy();\n+ }\n+ }\n+\n+ if (id) {\n+ const cb = (container) => {\n+ dispatch(particlesLoadedEvent, {\n+ particles: container,\n+ });\n+\n+ oldId = id;\n+ };\n+\n+ let container;\n+\n+ if (url) {\n+ container = await tsParticles.loadJSON(id, url);\n+ } else if (options) {\n+ container = await tsParticles.load(id, options);\n+ } else {\n+ console.error(\"You must specify options or url to load tsParticles\");\n+\n+ return;\n+ }\n+\n+ cb(container);\n+ } else {\n+ dispatch(particlesLoadedEvent, {\n+ particles: undefined,\n+ });\n+ }\n+ });\n </script>\n \n-<svelte:options accessors={true} />\n+<svelte:options accessors={true}/>\n \n-<div {id} />\n+<div {id}/>\n", "Particles.vue": "@@ -36,11 +36,11 @@ export default class Particles extends Vue {\n private options?: IParticlesProps;\n private url?: string;\n private particlesLoaded?: (container: Container) => void;\n- private particlesInit?: (tsParticles: Main) => void;\n+ private particlesInit?: (tsParticles: Main) => Promise<void>;\n private container?: Container;\n \n public mounted(): void {\n- nextTick(() => {\n+ nextTick(async () => {\n if (!this.id) {\n throw new Error(\"Prop 'id' is required!\");\n }\n@@ -48,7 +48,7 @@ export default class Particles extends Vue {\n tsParticles.init();\n \n if (this.particlesInit) {\n- this.particlesInit(tsParticles);\n+ await this.particlesInit(tsParticles);\n }\n \n const cb = (container?: Container) => {\n@@ -59,15 +59,9 @@ export default class Particles extends Vue {\n }\n };\n \n- if (this.url) {\n- tsParticles\n- .loadJSON(this.id, this.url)\n- .then(cb);\n- } else {\n- tsParticles\n- .load(this.id, this.options ?? {})\n- .then(cb);\n- }\n+ const container = await (this.url ? tsParticles.loadJSON(this.id, this.url) : tsParticles.load(this.id, this.options ?? {}));\n+\n+ cb(container);\n });\n }\n \n", "my-component.riot": "@@ -20,14 +20,14 @@\n \n <script>\n import RiotParticles from \"riot-particles\";\n- import {loadFull} from \"tsparticles\";\n+ import { loadFull } from \"tsparticles\";\n \n export default {\n components: {\n RiotParticles\n },\n- particlesInit: (main) => {\n- loadFull(main);\n+ particlesInit: async (main) => {\n+ await loadFull(main);\n }\n }\n </script>\n", "App.tsx": "@@ -4,15 +4,15 @@ import Particles from \"solid-particles\";\n import type { Main } from \"tsparticles-engine\";\n import { loadFull } from \"tsparticles\";\n \n-function particlesInit(main: Main): void {\n- loadFull(main);\n+async function particlesInit(main: Main): Promise<void> {\n+ await loadFull(main);\n }\n \n function App() {\n return (\n <div class=\"App\">\n <header class=\"App-header\">\n- <img src={ logo } class=\"App-logo\" alt=\"logo\"/>\n+ <img src={logo} class=\"App-logo\" alt=\"logo\"/>\n <p>\n Edit <code>src/App.tsx</code> and save to reload.\n </p>\n@@ -25,7 +25,7 @@ function App() {\n Learn Solid\n </a>\n </header>\n- <Particles id=\"tsparticles\" options={ {\n+ <Particles id=\"tsparticles\" options={{\n background: {\n color: \"#000\"\n },\n@@ -40,7 +40,7 @@ function App() {\n enable: true\n }\n }\n- } } init={ particlesInit }/>\n+ }} init={particlesInit}/>\n </div>\n );\n }\n", "App.svelte": "@@ -26,17 +26,11 @@\n \n console.log(container);\n \n- // use container to call it's methods\n+ // use container to call its methods\n }\n \n- let handleParticlesInit = (e) => {\n- console.log(e);\n-\n- const main = e.detail;\n-\n- loadFull(main);\n-\n- // use container to call it's methods\n+ let particlesInit = async (main) => {\n+ await loadFull(main);\n }\n </script>\n \n@@ -44,7 +38,7 @@\n <h1>Hello {name}!</h1>\n <p>Visit the <a href=\"https://svelte.dev/tutorial\">Svelte tutorial</a> to learn how to build Svelte apps.</p>\n <Particles id=\"tsparticles\" options={particlesConfig} on:particlesLoaded={handleParticlesLoaded}\n- on:particlesInit={handleParticlesInit}/>\n+ particlesInit={particlesInit}/>\n </main>\n \n <style>\n", "App.vue": "@@ -1,24 +1,24 @@\n <template>\n <div>\n <h1\n- class=\"app__title\" \n- align=\"center\"\n+ class=\"app__title\"\n+ align=\"center\"\n >\n Welcome to tsParticles Vue3 Demo\n </h1>\n \n <CodeViewer\n- :code=\"codeStringified\"\n- :optionSelected=\"optionSelected\"\n- :optionsList=\"optionsList\"\n- @change-option=\"changeOption\"\n+ :code=\"codeStringified\"\n+ :optionSelected=\"optionSelected\"\n+ :optionsList=\"optionsList\"\n+ @change-option=\"changeOption\"\n />\n- \n+\n <Particles\n- id=\"tsparticles\"\n- :options=\"options\"\n- :key=\"optionSelected\"\n- :particlesInit=\"particlesInit\"\n+ id=\"tsparticles\"\n+ :options=\"options\"\n+ :key=\"optionSelected\"\n+ :particlesInit=\"particlesInit\"\n />\n </div>\n </template>\n@@ -37,10 +37,10 @@ import { loadFull } from \"tsparticles\";\n },\n })\n export default class App extends Vue {\n- particlesInit(main: Main) {\n- loadFull(main);\n+ async particlesInit(main: Main) {\n+ await loadFull(main);\n }\n- \n+\n optionSelected = 'crazyParticles'\n \n changeOption(newValue: string) {\n@@ -50,7 +50,7 @@ export default class App extends Vue {\n get codeStringified() {\n return stringifyObject(optionsMap[this.optionSelected], {\n indent: ' ',\n- \tsingleQuotes: false,\n+ singleQuotes: false,\n });\n }\n \n", "index.ts": "@@ -7,13 +7,13 @@ import { loadOpacityUpdater } from \"tsparticles-updater-opacity\";\n import { loadOutModesUpdater } from \"tsparticles-updater-out-modes\";\n import { loadSizeUpdater } from \"tsparticles-updater-size\";\n \n-export function loadBigCirclesPreset(tsParticles: Main): void {\n- loadCircleShape(tsParticles);\n- loadColorUpdater(tsParticles);\n- loadSizeUpdater(tsParticles);\n- loadOpacityUpdater(tsParticles);\n- loadOutModesUpdater(tsParticles);\n- loadEmittersPlugin(tsParticles);\n+export async function loadBigCirclesPreset(tsParticles: Main): Promise<void> {\n+ await loadCircleShape(tsParticles);\n+ await loadColorUpdater(tsParticles);\n+ await loadSizeUpdater(tsParticles);\n+ await loadOpacityUpdater(tsParticles);\n+ await loadOutModesUpdater(tsParticles);\n+ await loadEmittersPlugin(tsParticles);\n \n tsParticles.addPreset(\"bigCircles\", options);\n tsParticles.addPreset(\"big-circles\", options);\n"}
feat: `Scheme::try_from(&str)` (#450)
d40f6e1f34eb3f4664caec36727bf0aa3a396a33
feat
https://github.com/Byron/gitoxide/commit/d40f6e1f34eb3f4664caec36727bf0aa3a396a33
`Scheme::try_from(&str)` (#450)
{"lib.rs": "@@ -8,11 +8,8 @@\n #![deny(rust_2018_idioms, missing_docs)]\n #![forbid(unsafe_code)]\n \n+use std::convert::TryFrom;\n use std::path::PathBuf;\n-use std::{\n- convert::TryFrom,\n- fmt::{self},\n-};\n \n use bstr::{BStr, BString};\n \n@@ -26,39 +23,8 @@ pub mod expand_path;\n #[doc(inline)]\n pub use expand_path::expand_path;\n \n-/// A scheme for use in a [`Url`]\n-#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]\n-#[cfg_attr(feature = \"serde1\", derive(serde::Serialize, serde::Deserialize))]\n-#[allow(missing_docs)]\n-pub enum Scheme {\n- File,\n- Git,\n- Ssh,\n- Http,\n- Https,\n- Ext(&'static str),\n-}\n-\n-impl Scheme {\n- /// Return ourselves parseable name.\n- pub fn as_str(&self) -> &'static str {\n- use Scheme::*;\n- match self {\n- File => \"file\",\n- Git => \"git\",\n- Ssh => \"ssh\",\n- Http => \"http\",\n- Https => \"https\",\n- Ext(name) => name,\n- }\n- }\n-}\n-\n-impl fmt::Display for Scheme {\n- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- f.write_str(self.as_str())\n- }\n-}\n+mod scheme;\n+pub use scheme::Scheme;\n \n /// A URL with support for specialized git related capabilities.\n ///\n", "parse.rs": "@@ -1,5 +1,5 @@\n use std::borrow::Cow;\n-use std::convert::Infallible;\n+use std::convert::{Infallible, TryFrom};\n \n use bstr::{BStr, ByteSlice};\n \n@@ -29,14 +29,8 @@ impl From<Infallible> for Error {\n }\n \n fn str_to_protocol(s: &str) -> Result<Scheme, Error> {\n- Ok(match s {\n- \"ssh\" => Scheme::Ssh,\n- \"file\" => Scheme::File,\n- \"git\" => Scheme::Git,\n- \"http\" => Scheme::Http,\n- \"https\" => Scheme::Https,\n- \"rad\" => Scheme::Ext(\"rad\"),\n- _ => return Err(Error::UnsupportedProtocol { protocol: s.into() }),\n+ Scheme::try_from(s).map_err(|invalid| Error::UnsupportedProtocol {\n+ protocol: invalid.into(),\n })\n }\n \n", "scheme.rs": "@@ -0,0 +1,51 @@\n+use std::convert::TryFrom;\n+\n+/// A scheme for use in a [`Url`]\n+#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]\n+#[cfg_attr(feature = \"serde1\", derive(serde::Serialize, serde::Deserialize))]\n+#[allow(missing_docs)]\n+pub enum Scheme {\n+ File,\n+ Git,\n+ Ssh,\n+ Http,\n+ Https,\n+ Ext(&'static str),\n+}\n+\n+impl<'a> TryFrom<&'a str> for Scheme {\n+ type Error = &'a str;\n+\n+ fn try_from(value: &'a str) -> Result<Self, Self::Error> {\n+ Ok(match value {\n+ \"ssh\" => Scheme::Ssh,\n+ \"file\" => Scheme::File,\n+ \"git\" => Scheme::Git,\n+ \"http\" => Scheme::Http,\n+ \"https\" => Scheme::Https,\n+ \"rad\" => Scheme::Ext(\"rad\"),\n+ unknown => return Err(unknown),\n+ })\n+ }\n+}\n+\n+impl Scheme {\n+ /// Return ourselves parseable name.\n+ pub fn as_str(&self) -> &'static str {\n+ use Scheme::*;\n+ match self {\n+ File => \"file\",\n+ Git => \"git\",\n+ Ssh => \"ssh\",\n+ Http => \"http\",\n+ Https => \"https\",\n+ Ext(name) => name,\n+ }\n+ }\n+}\n+\n+impl std::fmt::Display for Scheme {\n+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {\n+ f.write_str(self.as_str())\n+ }\n+}\n"}
fix(polars): handle the case of an empty `InValues` list
b26aa5593694db405c6c77ffc29f1f08e7b89333
fix
https://github.com/ibis-project/ibis/commit/b26aa5593694db405c6c77ffc29f1f08e7b89333
handle the case of an empty `InValues` list
{"compiler.py": "@@ -431,6 +431,8 @@ def in_column(op, **kw):\n def in_values(op, **kw):\n value = translate(op.value, **kw)\n options = list(map(translate, op.options))\n+ if not options:\n+ return pl.lit(False)\n return pl.any_horizontal([value == option for option in options])\n \n \n"}
feat(pandas): implement zeroifnull
48e8ed10c7062bedb351585785991980406b2eda
feat
https://github.com/ibis-project/ibis/commit/48e8ed10c7062bedb351585785991980406b2eda
implement zeroifnull
{"generic.py": "@@ -1214,3 +1214,19 @@ def execute_rowid(op, *args, **kwargs):\n @execute_node.register(ops.TableArrayView, pd.DataFrame)\n def execute_table_array_view(op, _, **kwargs):\n return execute(op.table).squeeze()\n+\n+\n+@execute_node.register(ops.ZeroIfNull, pd.Series)\n+def execute_zero_if_null_series(op, data, **kwargs):\n+ zero = op.arg.type().to_pandas().type(0)\n+ return data.replace({np.nan: zero, None: zero, pd.NA: zero})\n+\n+\n+@execute_node.register(\n+ ops.ZeroIfNull,\n+ (type(None), type(pd.NA), numbers.Real, np.integer, np.floating),\n+)\n+def execute_zero_if_null_scalar(op, data, **kwargs):\n+ if data is None or pd.isna(data) or math.isnan(data) or np.isnan(data):\n+ return op.arg.type().to_pandas().type(0)\n+ return data\n"}
fix: ignore undefined values in "Globals.assign" And categorize more globals as required
645c49d415c38b7c5a866990cb03b2695f16db15
fix
https://github.com/pmndrs/react-spring/commit/645c49d415c38b7c5a866990cb03b2695f16db15
ignore undefined values in "Globals.assign" And categorize more globals as required
{"globals.ts": "@@ -1,4 +1,5 @@\n import { SpringInterpolator, InterpolatorConfig } from './types'\n+import { ElementType } from 'react'\n \n declare const window: {\n requestAnimationFrame: (cb: (time: number) => void) => number\n@@ -16,8 +17,12 @@ export interface AnimatedRef<T> {\n // Required\n //\n \n+export let defaultElement: string | ElementType\n+\n export let applyAnimatedValues: (node: any, props: Props) => boolean | void\n \n+export let createAnimatedInterpolation: SpringInterpolator\n+\n export let createStringInterpolator: (\n config: InterpolatorConfig<string>\n ) => (input: number) => string\n@@ -35,17 +40,15 @@ export let frameLoop: {\n \n export let now = () => Date.now()\n \n-export let colorNames: { [key: string]: number } | undefined\n+export let colorNames: { [key: string]: number } | null = null as any\n \n export let skipAnimation = false\n \n-export let defaultElement: any\n-\n-export let createAnimatedStyle: ((style: any) => any) | undefined\n+export let createAnimatedStyle: ((style: any) => any) | null = null as any\n \n-export let createAnimatedTransform: ((transform: any) => any) | undefined\n-\n-export let createAnimatedInterpolation: SpringInterpolator\n+export let createAnimatedTransform:\n+ | ((transform: any) => any)\n+ | null = null as any\n \n export let createAnimatedRef: <T extends React.ElementType>(\n node: React.MutableRefObject<T>,\n@@ -53,10 +56,10 @@ export let createAnimatedRef: <T extends React.ElementType>(\n forceUpdate: () => void\n ) => T | AnimatedRef<T> = node => node.current\n \n-export let requestAnimationFrame =\n- typeof window !== 'undefined' ? window.requestAnimationFrame : () => {}\n+export let requestAnimationFrame: typeof window.requestAnimationFrame =\n+ typeof window !== 'undefined' ? window.requestAnimationFrame : () => -1\n \n-export let cancelAnimationFrame =\n+export let cancelAnimationFrame: typeof window.cancelAnimationFrame =\n typeof window !== 'undefined' ? window.cancelAnimationFrame : () => {}\n \n //\n@@ -110,5 +113,14 @@ export const assign = (globals: AnimatedGlobals): AnimatedGlobals =>\n requestAnimationFrame,\n cancelAnimationFrame,\n },\n- globals\n+ pluckDefined(globals)\n ))\n+\n+// Ignore undefined values\n+function pluckDefined(globals: any) {\n+ const defined: any = {}\n+ for (const key in globals) {\n+ if (globals[key] !== void 0) defined[key] = globals[key]\n+ }\n+ return defined\n+}\n"}
build: changed tsconfig target from es6 to es2019 (less transpilation to a reasonable target)
31897bbbdfad272aca69bc1d6e5190d9643a91d7
build
https://github.com/tsparticles/tsparticles/commit/31897bbbdfad272aca69bc1d6e5190d9643a91d7
changed tsconfig target from es6 to es2019 (less transpilation to a reasonable target)
{".browserslistrc": "@@ -0,0 +1,2 @@\n+since 2019\n+not dead\n", "tsconfig.json": "@@ -1,7 +1,8 @@\n {\n \"extends\": \"./tsconfig.base.json\",\n \"compilerOptions\": {\n- \"module\": \"commonjs\",\n+ \"target\": \"ES2015\",\n+ \"module\": \"CommonJS\",\n \"outDir\": \"./dist\"\n }\n }\n", "tsconfig.types.json": "@@ -0,0 +1,9 @@\n+{\n+ \"extends\": \"./tsconfig.base.json\",\n+ \"compilerOptions\": {\n+ \"target\": \"ESNext\",\n+ \"module\": \"ESNext\",\n+ \"declaration\": true,\n+ \"emitDeclarationOnly\": true\n+ }\n+}\n", "tsconfig.browser.json": "@@ -1,7 +1,7 @@\n {\n \"extends\": \"./tsconfig.base.json\",\n \"compilerOptions\": {\n- \"module\": \"esnext\",\n+ \"module\": \"ESNext\",\n \"outDir\": \"./dist/browser\",\n \"removeComments\": false\n }\n", "tsconfig.module.json": "@@ -1,7 +1,7 @@\n {\n \"extends\": \"./tsconfig.base.json\",\n \"compilerOptions\": {\n- \"module\": \"esnext\",\n+ \"module\": \"ESNext\",\n \"outDir\": \"./dist/esm\"\n }\n }\n", "tsconfig.schema.json": "@@ -1,8 +1,8 @@\n {\n \"extends\": \"./tsconfig.base.json\",\n \"compilerOptions\": {\n- \"target\": \"esnext\",\n- \"module\": \"esnext\",\n+ \"target\": \"ESNext\",\n+ \"module\": \"ESNext\",\n \"noEmit\": true\n }\n }\n", "tsconfig.test.json": "@@ -1,6 +1,6 @@\n {\n \"compilerOptions\": {\n- \"target\": \"es2017\",\n+ \"target\": \"ES2017\",\n \"lib\": [\n \"ESNext\",\n \"ES2020\",\n", "tsconfig.umd.json": "@@ -0,0 +1,7 @@\n+{\n+ \"extends\": \"./tsconfig.base.json\",\n+ \"compilerOptions\": {\n+ \"module\": \"UMD\",\n+ \"outDir\": \"./dist/umd\"\n+ }\n+}\n", "tsconfig.base.json": "@@ -2,12 +2,20 @@\n \"compilerOptions\": {\n /* Basic Options */\n // \"incremental\": true, /* Enable incremental compilation */\n- \"target\": \"es6\",\n+ \"target\": \"ES2019\",\n /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */\n- \"module\": \"esnext\",\n+ \"module\": \"ESNext\",\n /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */\n \"lib\": [\n+ \"ESNext\",\n+ \"ES2021\",\n+ \"ES2020\",\n+ \"ES2019\",\n+ \"ES2018\",\n+ \"ES2017\",\n+ \"ES2016\",\n \"ES2015\",\n+ \"ES5\",\n \"DOM\"\n ],\n /* Specify library files to be included in the compilation. */\n@@ -40,13 +48,17 @@\n /* Raise error on expressions and declarations with an implied 'any' type. */\n \"strictNullChecks\": true,\n /* Enable strict null checks. */\n- // \"strictFunctionTypes\": true, /* Enable strict checking of function types. */\n- // \"strictBindCallApply\": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */\n+ \"strictFunctionTypes\": true,\n+ /* Enable strict checking of function types. */\n+ \"strictBindCallApply\": true,\n+ /* Enable strict 'bind', 'call', and 'apply' methods on functions. */\n \"strictPropertyInitialization\": true,\n /* Enable strict checking of property initialization in classes. */\n- // \"noImplicitThis\": true, /* Raise error on 'this' expressions with an implied 'any' type. */\n+ \"noImplicitThis\": true,\n+ /* Raise error on 'this' expressions with an implied 'any' type. */\n \"alwaysStrict\": true,\n /* Parse in strict mode and emit \"use strict\" for each source file. */\n+ \"useUnknownInCatchVariables\": true,\n \n /* Additional Checks */\n // \"noUnusedLocals\": true, /* Report errors on unused locals. */\n@@ -62,7 +74,8 @@\n // \"paths\": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */\n // \"rootDirs\": [], /* List of root folders whose combined content represents the structure of the project at runtime. */\n // \"typeRoots\": [], /* List of folders to include type definitions from. */\n- \"types\": [], /* Type declaration files to be included in compilation. */\n+ \"types\": [],\n+ /* Type declaration files to be included in compilation. */\n // \"allowSyntheticDefaultImports\": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */\n \"esModuleInterop\": true,\n /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */\n"}
test: add failing test case for projection that removes sorting
b9fb231447f1987b5d1763d8793865c5ba0279d5
test
https://github.com/rohankumardubey/ibis/commit/b9fb231447f1987b5d1763d8793865c5ba0279d5
add failing test case for projection that removes sorting
{"test_ddl.py": "@@ -32,11 +32,8 @@ def awards_players_csv_connector_configs():\n \n \n def test_list_tables(con):\n- assert len(con.list_tables()) == 4\n- assert (\n- len(con.list_tables(catalog=\"default_catalog\", database=\"default_database\"))\n- == 4\n- )\n+ assert len(con.list_tables())\n+ assert con.list_tables(catalog=\"default_catalog\", database=\"default_database\")\n \n \n def test_create_table_from_schema(\n@@ -47,38 +44,26 @@ def test_create_table_from_schema(\n schema=awards_players_schema,\n tbl_properties=awards_players_csv_connector_configs,\n )\n- assert len(con.list_tables()) == 5\n assert temp_table in con.list_tables()\n assert new_table.schema() == awards_players_schema\n \n \n-def test_drop_table(\n- con, awards_players_schema, temp_table, awards_players_csv_connector_configs\[email protected](\"temp\", [True, False])\n+def test_create_table(\n+ con, awards_players_schema, temp_table, awards_players_csv_connector_configs, temp\n ):\n con.create_table(\n temp_table,\n schema=awards_players_schema,\n tbl_properties=awards_players_csv_connector_configs,\n+ temp=temp,\n )\n- assert len(con.list_tables()) == 5\n- con.drop_table(temp_table)\n- assert len(con.list_tables()) == 4\n- assert temp_table not in con.list_tables()\n+ assert temp_table in con.list_tables()\n \n+ if temp:\n+ with pytest.raises(Py4JJavaError):\n+ con.drop_table(temp_table)\n+\n+ con.drop_table(temp_table, temp=temp)\n \n-def test_temp_table(\n- con, awards_players_schema, temp_table, awards_players_csv_connector_configs\n-):\n- con.create_table(\n- temp_table,\n- schema=awards_players_schema,\n- tbl_properties=awards_players_csv_connector_configs,\n- temp=True,\n- )\n- assert len(con.list_tables()) == 5\n- assert temp_table in con.list_tables()\n- with pytest.raises(Py4JJavaError):\n- con.drop_table(temp_table)\n- con.drop_table(temp_table, temp=True)\n- assert len(con.list_tables()) == 4\n assert temp_table not in con.list_tables()\n", "test_dot_sql.py": "@@ -292,3 +292,20 @@ def test_con_dot_sql_transpile(backend, con, dialect, df):\n result = expr.execute()\n expected = df.int_col.add(1).rename(\"x\")\n backend.assert_series_equal(result.x, expected)\n+\n+\n+@dot_sql_notimpl\n+@dot_sql_notyet\n+@dot_sql_never\[email protected]([\"druid\", \"flink\", \"impala\", \"polars\", \"pyspark\"])\n+def test_order_by_no_projection(backend):\n+ con = backend.connection\n+ astronauts = con.table(\"astronauts\")\n+ expr = (\n+ astronauts.group_by(\"name\")\n+ .agg(nbr_missions=_.count())\n+ .order_by(_.nbr_missions.desc())\n+ )\n+\n+ result = con.sql(ibis.to_sql(expr)).execute().name.iloc[:2]\n+ assert set(result) == {\"Ross, Jerry L.\", \"Chang-Diaz, Franklin R.\"}\n"}
build: updated websites
a896c47e6267bf832b8057caaf6d75a5fdb3a46d
build
https://github.com/tsparticles/tsparticles/commit/a896c47e6267bf832b8057caaf6d75a5fdb3a46d
updated websites
{"index.html": "@@ -737,62 +737,62 @@\n ></script>\n <script async defer src=\"https://buttons.github.io/buttons.js\"></script>\n \n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.attract.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bounce.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bubble.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.connect.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.grab.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.pause.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.push.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.remove.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.repulse.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.attract.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.collisions.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.parallax.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.pjs.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.image.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.line.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.polygon.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.square.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.star.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.text.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.stroke-color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.slim.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.trail.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.absorbers.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.polygon-mask.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.roll.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.tilt.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.twinkle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.infection.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.hsvColor.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.light.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.repulse.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.gradient.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.orbit.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.curves.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.polygon.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.perlin.noise.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.simplex.noise.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.links.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.bubble.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.heart.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.multiline-text.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.rounded-rect.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.spiral.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.attract.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bounce.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bubble.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.connect.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.grab.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.pause.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.push.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.remove.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.repulse.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.attract.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.collisions.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.parallax.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.pjs.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.image.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.line.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.polygon.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.square.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.star.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.text.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.stroke-color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.slim.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.trail.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.absorbers.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.polygon-mask.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.roll.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.tilt.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.twinkle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.infection.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.hsvColor.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.light.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.repulse.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.gradient.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.orbit.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.curves.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.polygon.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.perlin.noise.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.simplex.noise.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.links.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.bubble.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.heart.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.multiline-text.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.rounded-rect.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.spiral.min.js\"></script>\n \n <script src=\"../js/demo.min.js\"></script>\n </body>\n", "404.html": "@@ -169,46 +169,46 @@\n integrity=\"sha256-NP9NujdEzS5m4ZxvNqkcbxyHB0dTRy9hG13RwTVBGwo=\"\n crossorigin=\"anonymous\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.attract.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bounce.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bubble.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.connect.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.grab.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.pause.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.push.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.remove.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.repulse.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.attract.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.collisions.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.parallax.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.pjs.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.image.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.line.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.polygon.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.square.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.star.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.text.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.stroke-color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.slim.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.trail.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.absorbers.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.polygon-mask.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.roll.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.tilt.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.twinkle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.attract.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bounce.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.bubble.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.connect.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.grab.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.pause.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.push.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.remove.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.repulse.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.attract.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.collisions.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.parallax.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.pjs.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.image.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.line.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.polygon.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.square.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.star.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.text.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.stroke-color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.slim.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.trail.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.absorbers.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.polygon-mask.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.roll.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.tilt.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.twinkle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.min.js\"></script>\n <script src=\"/js/404.min.js\"></script>\n </body>\n </html>\n", "demo.js": "@@ -299,7 +299,7 @@\n <div id=\"tsparticles\"></div>`,\n css: ``,\n js: `tsParticles.load(\"tsparticles\", ${JSON.stringify(container.options)});`,\n- js_external: \"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.bundle.min.js\",\n+ js_external: \"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.bundle.min.js\",\n title: \"tsParticles example\",\n description: \"This pen was created with tsParticles from https://particles.js.org\",\n tags: \"tsparticles, javascript, typescript, design, animation\",\n", "demo.min.js": "@@ -1 +1 @@\n-!function(){let t,e={};const o=new Stats;o.addPanel(\"count\",\"#ff8\",0,(()=>{const t=tsParticles.domItem(0);if(t)return n=Math.max(t.particles.count,n),{value:t.particles.count,maxValue:n}}));let n=0;o.showPanel(2),o.dom.style.position=\"absolute\",o.dom.style.left=\"3px\",o.dom.style.top=\"3px\",o.dom.id=\"stats-graph\";function a(t,e,o){return o.indexOf(t)===e}let i=function(t,o,n){const s=o[n],r=function(t,o,n){if(t)if(t.type)switch(t.type){case\"boolean\":return[\"true\",\"false\"];case\"number\":case\"string\":return t.enum;case\"array\":return getSchemaValuesFromProp(t.items)}else{if(t.$ref){const a=t.$ref.split(\"/\"),s=a[a.length-1],r=e.definitions[s];return i(r,o,n+(/I[A-Z]/.exec(s)?1:0))}if(t.anyOf){let e=[];for(const a of t.anyOf){const t=getSchemaValuesFromProp(a,o,n);for(const o of t)e.push(o)}return e.filter(a)}}}(t.properties?t.properties[s]:t,o,n);return r},s=function(t,o,n,a){try{switch(n){case\"field\":break;case\"value\":return i(e,o,0).filter((function(e){return e.includes(t)}))}}catch(t){}return null},r=function(t){tsParticles.domItem(0).refresh().then((()=>{t&&\"function\"==typeof t&&t()}))},c=function(){const t=document.body.querySelector(\".caret-right\"),e=document.body.querySelector(\".caret-left\"),o=document.getElementById(\"sidebar\");o.hasAttribute(\"hidden\")?(t.setAttribute(\"hidden\",\"\"),e.removeAttribute(\"hidden\"),o.removeAttribute(\"hidden\"),o.classList.add(\"d-md-block\")):(e.setAttribute(\"hidden\",\"\"),t.removeAttribute(\"hidden\"),o.setAttribute(\"hidden\",\"\"),o.classList.remove(\"d-md-block\")),r()},d=function(){const t=tsParticles.domItem(0);t&&t.exportImage((function(t){const e=document.body.querySelector(\"#exportModal .modal-body .modal-body-content\"),o=document.getElementById(\"tsparticles\");e.innerHTML=\"\",e.style.backgroundColor=o.style.backgroundColor,e.style.backgroundImage=o.style.backgroundImage,e.style.backgroundPosition=o.style.backgroundPosition,e.style.backgroundRepeat=o.style.backgroundRepeat,e.style.backgroundSize=o.style.backgroundSize;const n=new Image;n.className=\"img-fluid\",n.onload=()=>URL.revokeObjectURL(n.src);const a=URL.createObjectURL(t);n.src=a,e.appendChild(n);new bootstrap.Modal(document.getElementById(\"exportModal\")).show()}))},l=function(){const t=tsParticles.domItem(0);if(t){const e=document.body.querySelector(\"#exportModal .modal-body .modal-body-content\"),o=document.createElement(\"div\");tsParticles.set(\"tmp\",o,{}).then((o=>{const n={};_.assignIn(n,o.options),o.destroy();const a=function t(e,o){return _.transform(e,(function(e,n,a){_.isEqual(n,o[a])||(e[a]=_.isObject(n)&&_.isObject(o[a])?t(n,o[a]):n)}))}(t.options,n);const i=JSON.stringify(a,void 0,2);e.innerHTML=`<pre style=\"max-height: 70vh\">${i}</pre>`;const s=document.querySelector(\"#exportConfigCopy\"),r=document.querySelector(\"#exportConfigDownload\");s.onclick=function(){navigator.clipboard&&navigator.clipboard.writeText(i)},r.onclick=function(){const t=\"application/json\",e=new Blob([i],{type:t}),o=URL.createObjectURL(e),n=document.createElement(\"a\");n.download=\"particles.json\",n.href=o,n.dataset.downloadUrl=[t,n.download,n.href].join(\":\");const a=document.createEvent(\"MouseEvents\");a.initMouseEvent(\"click\",!0,!1,window,0,0,0,0,0,!1,!1,!1,!1,0,null),n.dispatchEvent(a)};new bootstrap.Modal(document.getElementById(\"exportModal\")).show()}))}},u=function(){const t=tsParticles.domItem(0);if(t){const e=document.getElementById(\"code-pen-form\"),o=document.getElementById(\"code-pen-data\"),n=(document.getElementById(\"tsparticles\"),{html:'\\x3c!-- tsParticles - https://particles.js.org - https://github.com/matteobruni/tsparticles --\\x3e\\n<div id=\"tsparticles\"></div>',css:\"\",js:`tsParticles.load(\"tsparticles\", ${JSON.stringify(t.options)});`,js_external:\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.bundle.min.js\",title:\"tsParticles example\",description:\"This pen was created with tsParticles from https://particles.js.org\",tags:\"tsparticles, javascript, typescript, design, animation\",editors:\"001\"}),a=JSON.stringify(n).replace(/\"/g,\"&quot;\").replace(/'/g,\"&apos;\");o.value=a,e.submit()}},m=function(){const t=document.body.querySelector(\"#stats\");t.hasAttribute(\"hidden\")?t.removeAttribute(\"hidden\"):t.setAttribute(\"hidden\",\"\")},p=function(){tsParticles.domItem(0).options.load(t.get()),r((()=>{}))},h=function(e){localStorage.presetId;localStorage.presetId=e,window.location.hash=e,function(t){const e=document.body.querySelectorAll(\".preset-item\"),o=e[Math.floor(Math.random()*e.length)].dataset.preset,n=localStorage.presetId||o;document.getElementById(\"repulse-div\").className=\"divRepulse\"===n?\"d-block\":\"d-none\",tsParticles.loadJSON(\"tsparticles\",`../presets/${n}.json`).then((e=>{localStorage.presetId=n,window.location.hash=n,t.set(e.options),t.expandAll()}))}(t)},g=function(){h(this.dataset.preset)};window.addEventListener(\"hashchange\",(function(){const t=document.body.querySelectorAll(\".preset-item\");if(window.location.hash)for(let e=0;e<t.length;e++)if(t[e].dataset.preset===window.location.hash.replace(\"#\",\"\"))return localStorage.presetId=window.location.hash.replace(\"#\",\"\"),void h(localStorage.presetId)})),window.addEventListener(\"load\",(async()=>{const n=document.getElementById(\"editor\");t=new JSONEditor(n,{mode:\"form\",modes:[\"code\",\"form\",\"view\",\"preview\",\"text\"],autocomplete:{filter:\"contain\",trigger:\"focus\",getOptions:s},onError:function(t){alert(t.toString())},onModeChange:function(t,e){},onChange:function(){}});const a=document.body.querySelectorAll(\".preset-item\");if(window.location.hash)for(let t=0;t<a.length;t++)if(a[t].dataset.preset===window.location.hash.replace(\"#\",\"\")){localStorage.presetId=window.location.hash.replace(\"#\",\"\");break}localStorage.presetId||(localStorage.presetId=a[Math.floor(Math.random()*a.length)].dataset.preset),h(localStorage.presetId),fetch(\"../schema/options.schema.json\").then((function(o){o.json().then((function(o){e=o,t.setSchema(e)}))})),document.getElementById(\"btnUpdate\").addEventListener(\"click\",p),document.getElementById(\"btnNavUpdate\").addEventListener(\"click\",p),document.getElementById(\"stats\").appendChild(o.dom),document.getElementById(\"toggle-stats\").addEventListener(\"click\",m),document.getElementById(\"nav-toggle-stats\").addEventListener(\"click\",m),document.body.querySelector(\".toggle-sidebar\").addEventListener(\"click\",c);for(const t of a)t.addEventListener(\"click\",g);document.getElementById(\"export-image\").addEventListener(\"click\",d),document.getElementById(\"nav-export-image\").addEventListener(\"click\",d),document.getElementById(\"export-config\").addEventListener(\"click\",l),document.getElementById(\"nav-export-config\").addEventListener(\"click\",l),document.getElementById(\"codepen-export\").addEventListener(\"click\",u),document.getElementById(\"nav-codepen-export\").addEventListener(\"click\",u),function(){const t=document.body.querySelector(\".caret-right\"),e=document.body.querySelector(\".caret-left\");document.getElementById(\"sidebar\").hasAttribute(\"hidden\")?(e.setAttribute(\"hidden\",\"\"),t.removeAttribute(\"hidden\")):(t.setAttribute(\"hidden\",\"\"),e.removeAttribute(\"hidden\"))}(),function(){const t=function(){o.begin(),o.end(),requestAnimationFrame(t)};requestAnimationFrame(t)}(),await loadFull(tsParticles),await loadInfectionPlugin(tsParticles),await loadHsvColorPlugin(tsParticles),await loadLightInteraction(tsParticles),await loadParticlesRepulseInteraction(tsParticles),await loadGradientUpdater(tsParticles),await loadOrbitUpdater(tsParticles),await loadCurvesPath(tsParticles),await loadPolygonPath(tsParticles),await loadPerlinNoisePath(tsParticles),await loadSimplexNoisePath(tsParticles),await loadBubbleShape(tsParticles),await loadHeartShape(tsParticles),await loadMultilineTextShape(tsParticles),await loadRoundedRectShape(tsParticles),await loadSpiralShape(tsParticles)}))}();\n+!function(){let t,e={};const o=new Stats;o.addPanel(\"count\",\"#ff8\",0,(()=>{const t=tsParticles.domItem(0);if(t)return n=Math.max(t.particles.count,n),{value:t.particles.count,maxValue:n}}));let n=0;o.showPanel(2),o.dom.style.position=\"absolute\",o.dom.style.left=\"3px\",o.dom.style.top=\"3px\",o.dom.id=\"stats-graph\";function a(t,e,o){return o.indexOf(t)===e}let i=function(t,o,n){const s=o[n],r=function(t,o,n){if(t)if(t.type)switch(t.type){case\"boolean\":return[\"true\",\"false\"];case\"number\":case\"string\":return t.enum;case\"array\":return getSchemaValuesFromProp(t.items)}else{if(t.$ref){const a=t.$ref.split(\"/\"),s=a[a.length-1],r=e.definitions[s];return i(r,o,n+(/I[A-Z]/.exec(s)?1:0))}if(t.anyOf){let e=[];for(const a of t.anyOf){const t=getSchemaValuesFromProp(a,o,n);for(const o of t)e.push(o)}return e.filter(a)}}}(t.properties?t.properties[s]:t,o,n);return r},s=function(t,o,n,a){try{switch(n){case\"field\":break;case\"value\":return i(e,o,0).filter((function(e){return e.includes(t)}))}}catch(t){}return null},r=function(t){tsParticles.domItem(0).refresh().then((()=>{t&&\"function\"==typeof t&&t()}))},c=function(){const t=document.body.querySelector(\".caret-right\"),e=document.body.querySelector(\".caret-left\"),o=document.getElementById(\"sidebar\");o.hasAttribute(\"hidden\")?(t.setAttribute(\"hidden\",\"\"),e.removeAttribute(\"hidden\"),o.removeAttribute(\"hidden\"),o.classList.add(\"d-md-block\")):(e.setAttribute(\"hidden\",\"\"),t.removeAttribute(\"hidden\"),o.setAttribute(\"hidden\",\"\"),o.classList.remove(\"d-md-block\")),r()},d=function(){const t=tsParticles.domItem(0);t&&t.exportImage((function(t){const e=document.body.querySelector(\"#exportModal .modal-body .modal-body-content\"),o=document.getElementById(\"tsparticles\");e.innerHTML=\"\",e.style.backgroundColor=o.style.backgroundColor,e.style.backgroundImage=o.style.backgroundImage,e.style.backgroundPosition=o.style.backgroundPosition,e.style.backgroundRepeat=o.style.backgroundRepeat,e.style.backgroundSize=o.style.backgroundSize;const n=new Image;n.className=\"img-fluid\",n.onload=()=>URL.revokeObjectURL(n.src);const a=URL.createObjectURL(t);n.src=a,e.appendChild(n);new bootstrap.Modal(document.getElementById(\"exportModal\")).show()}))},l=function(){const t=tsParticles.domItem(0);if(t){const e=document.body.querySelector(\"#exportModal .modal-body .modal-body-content\"),o=document.createElement(\"div\");tsParticles.set(\"tmp\",o,{}).then((o=>{const n={};_.assignIn(n,o.options),o.destroy();const a=function t(e,o){return _.transform(e,(function(e,n,a){_.isEqual(n,o[a])||(e[a]=_.isObject(n)&&_.isObject(o[a])?t(n,o[a]):n)}))}(t.options,n);const i=JSON.stringify(a,void 0,2);e.innerHTML=`<pre style=\"max-height: 70vh\">${i}</pre>`;const s=document.querySelector(\"#exportConfigCopy\"),r=document.querySelector(\"#exportConfigDownload\");s.onclick=function(){navigator.clipboard&&navigator.clipboard.writeText(i)},r.onclick=function(){const t=\"application/json\",e=new Blob([i],{type:t}),o=URL.createObjectURL(e),n=document.createElement(\"a\");n.download=\"particles.json\",n.href=o,n.dataset.downloadUrl=[t,n.download,n.href].join(\":\");const a=document.createEvent(\"MouseEvents\");a.initMouseEvent(\"click\",!0,!1,window,0,0,0,0,0,!1,!1,!1,!1,0,null),n.dispatchEvent(a)};new bootstrap.Modal(document.getElementById(\"exportModal\")).show()}))}},u=function(){const t=tsParticles.domItem(0);if(t){const e=document.getElementById(\"code-pen-form\"),o=document.getElementById(\"code-pen-data\"),n=(document.getElementById(\"tsparticles\"),{html:'\\x3c!-- tsParticles - https://particles.js.org - https://github.com/matteobruni/tsparticles --\\x3e\\n<div id=\"tsparticles\"></div>',css:\"\",js:`tsParticles.load(\"tsparticles\", ${JSON.stringify(t.options)});`,js_external:\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.bundle.min.js\",title:\"tsParticles example\",description:\"This pen was created with tsParticles from https://particles.js.org\",tags:\"tsparticles, javascript, typescript, design, animation\",editors:\"001\"}),a=JSON.stringify(n).replace(/\"/g,\"&quot;\").replace(/'/g,\"&apos;\");o.value=a,e.submit()}},m=function(){const t=document.body.querySelector(\"#stats\");t.hasAttribute(\"hidden\")?t.removeAttribute(\"hidden\"):t.setAttribute(\"hidden\",\"\")},p=function(){tsParticles.domItem(0).options.load(t.get()),r((()=>{}))},h=function(e){localStorage.presetId;localStorage.presetId=e,window.location.hash=e,function(t){const e=document.body.querySelectorAll(\".preset-item\"),o=e[Math.floor(Math.random()*e.length)].dataset.preset,n=localStorage.presetId||o;document.getElementById(\"repulse-div\").className=\"divRepulse\"===n?\"d-block\":\"d-none\",tsParticles.loadJSON(\"tsparticles\",`../presets/${n}.json`).then((e=>{localStorage.presetId=n,window.location.hash=n,t.set(e.options),t.expandAll()}))}(t)},g=function(){h(this.dataset.preset)};window.addEventListener(\"hashchange\",(function(){const t=document.body.querySelectorAll(\".preset-item\");if(window.location.hash)for(let e=0;e<t.length;e++)if(t[e].dataset.preset===window.location.hash.replace(\"#\",\"\"))return localStorage.presetId=window.location.hash.replace(\"#\",\"\"),void h(localStorage.presetId)})),window.addEventListener(\"load\",(async()=>{const n=document.getElementById(\"editor\");t=new JSONEditor(n,{mode:\"form\",modes:[\"code\",\"form\",\"view\",\"preview\",\"text\"],autocomplete:{filter:\"contain\",trigger:\"focus\",getOptions:s},onError:function(t){alert(t.toString())},onModeChange:function(t,e){},onChange:function(){}});const a=document.body.querySelectorAll(\".preset-item\");if(window.location.hash)for(let t=0;t<a.length;t++)if(a[t].dataset.preset===window.location.hash.replace(\"#\",\"\")){localStorage.presetId=window.location.hash.replace(\"#\",\"\");break}localStorage.presetId||(localStorage.presetId=a[Math.floor(Math.random()*a.length)].dataset.preset),h(localStorage.presetId),fetch(\"../schema/options.schema.json\").then((function(o){o.json().then((function(o){e=o,t.setSchema(e)}))})),document.getElementById(\"btnUpdate\").addEventListener(\"click\",p),document.getElementById(\"btnNavUpdate\").addEventListener(\"click\",p),document.getElementById(\"stats\").appendChild(o.dom),document.getElementById(\"toggle-stats\").addEventListener(\"click\",m),document.getElementById(\"nav-toggle-stats\").addEventListener(\"click\",m),document.body.querySelector(\".toggle-sidebar\").addEventListener(\"click\",c);for(const t of a)t.addEventListener(\"click\",g);document.getElementById(\"export-image\").addEventListener(\"click\",d),document.getElementById(\"nav-export-image\").addEventListener(\"click\",d),document.getElementById(\"export-config\").addEventListener(\"click\",l),document.getElementById(\"nav-export-config\").addEventListener(\"click\",l),document.getElementById(\"codepen-export\").addEventListener(\"click\",u),document.getElementById(\"nav-codepen-export\").addEventListener(\"click\",u),function(){const t=document.body.querySelector(\".caret-right\"),e=document.body.querySelector(\".caret-left\");document.getElementById(\"sidebar\").hasAttribute(\"hidden\")?(e.setAttribute(\"hidden\",\"\"),t.removeAttribute(\"hidden\")):(t.setAttribute(\"hidden\",\"\"),e.removeAttribute(\"hidden\"))}(),function(){const t=function(){o.begin(),o.end(),requestAnimationFrame(t)};requestAnimationFrame(t)}(),await loadFull(tsParticles),await loadInfectionPlugin(tsParticles),await loadHsvColorPlugin(tsParticles),await loadLightInteraction(tsParticles),await loadParticlesRepulseInteraction(tsParticles),await loadGradientUpdater(tsParticles),await loadOrbitUpdater(tsParticles),await loadCurvesPath(tsParticles),await loadPolygonPath(tsParticles),await loadPerlinNoisePath(tsParticles),await loadSimplexNoisePath(tsParticles),await loadBubbleShape(tsParticles),await loadHeartShape(tsParticles),await loadMultilineTextShape(tsParticles),await loadRoundedRectShape(tsParticles),await loadSpiralShape(tsParticles)}))}();\n", "bigCircles.html": "@@ -149,15 +149,15 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.bigCircles.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.bigCircles.min.js\"></script>\n <script src=\"https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n", "bubbles.html": "@@ -145,15 +145,15 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.bubbles.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.bubbles.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadBubblesPreset(tsParticles);\n", "confetti.html": "@@ -148,21 +148,21 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.square.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.roll.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.tilt.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.confetti.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.square.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.roll.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.tilt.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.confetti.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadConfettiPreset(tsParticles);\n", "fire.html": "@@ -145,15 +145,15 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.push.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.fire.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.push.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.fire.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadFirePreset(tsParticles);\n", "firefly.html": "@@ -145,16 +145,16 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.trail.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.firefly.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.external.trail.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.firefly.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadFireflyPreset(tsParticles);\n", "fireworks.html": "@@ -145,19 +145,19 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.line.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.stroke-color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.fireworks.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.line.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.angle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.life.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.stroke-color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.fireworks.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadFireworksPreset(tsParticles);\n", "fountain.html": "@@ -145,15 +145,15 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.fountain.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.fountain.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadFountainPreset(tsParticles);\n", "links.html": "@@ -145,15 +145,15 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.links.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.links.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadLinksPreset(tsParticles);\n", "seaAnemone.html": "@@ -145,16 +145,16 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.curves.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.seaAnemone.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.path.curves.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.plugin.emitters.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.seaAnemone.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadSeaAnemonePreset(tsParticles);\n", "snow.html": "@@ -147,15 +147,15 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.snow.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.wobble.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.snow.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadSnowPreset(tsParticles);\n", "stars.html": "@@ -145,14 +145,14 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.stars.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.stars.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadStarsPreset(tsParticles);\n", "triangles.html": "@@ -145,15 +145,15 @@\n src=\"//cdn.carbonads.com/carbon.js?serve=CEAI6KJL&placement=particlesjsorg\"\n id=\"_carbonads_js\"\n ></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n- <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.triangles.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.engine.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.interaction.particles.links.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.move.base.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.shape.circle.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.color.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.opacity.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.out-modes.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.updater.size.min.js\"></script>\n+ <script src=\"https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.preset.triangles.min.js\"></script>\n <script type=\"text/javascript\">\n (async () => {\n await loadTrianglesPreset(tsParticles);\n"}
chore(deps): regenerate conda lock files
a7c3fabb8cde9ccd71686d23c1263fa9e0665534
chore
https://github.com/rohankumardubey/ibis/commit/a7c3fabb8cde9ccd71686d23c1263fa9e0665534
regenerate conda lock files
{"generate.sh": "@@ -29,6 +29,13 @@ extras=(\n -e decompiler\n )\n template=\"conda-lock/{platform}-${python_version}.lock\"\n+\n+linux_osx_extras=()\n+if [ \"${python_version}\" != \"3.11\" ]; then\n+ # clickhouse cityhash doesn't exist for python 3.11\n+ linux_osx_extras+=(-e clickhouse)\n+fi\n+\n conda lock \\\n --file pyproject.toml \\\n --file \"${python_version_file}\" \\\n@@ -39,7 +46,7 @@ conda lock \\\n --filter-extras \\\n --mamba \\\n --category dev --category test --category docs \\\n- \"${extras[@]}\" -e clickhouse -e datafusion\n+ \"${extras[@]}\" \"${linux_osx_extras[@]}\" -e datafusion\n \n conda lock \\\n --file pyproject.toml \\\n", "linux-64-3.10.lock": "@@ -1,6 +1,6 @@\n # Generated by conda-lock.\n # platform: linux-64\n-# input_hash: e337489aade475fb935c479cfe01d96113b1761afe68842e83a6c5e39aabf36b\n+# input_hash: 364563baaac42851c70ea73b6bfb72cdfc33e70700bffeaedfc5f63a8fead819\n @EXPLICIT\n https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81\n https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda#ff9f73d45c4a07d6f424495288a26080\n@@ -13,14 +13,14 @@ https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.\n https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2#1030b1f38c129f2634eae026f704fe60\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-3_cp310.conda#4eb33d14d794b0f4be116443ffed3853\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2#cd7a806282c16e1f2d39a7e80d3a3e0d\n https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2#cedcee7c064c01c403f962c9e8d3c373\n https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2#e4c94f80aef025c17ab0828cd85ef535\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.6.2-h7f98852_0.tar.bz2#ce69a062b3080485b760378841240634\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.8.14-h0b41bf4_0.conda#2512d4aa4007fdf7b705713d73bf6967\n https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2#a1fd65c7ccbf10880423d82bca54eb54\n https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.18.1-h7f98852_0.tar.bz2#f26ef8098fab1f719c91eb760d63381a\n https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2#c4fbad8d4bddeb3c085f18cbf97fbfad\n@@ -29,7 +29,7 @@ https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz\n https://conda.anaconda.org/conda-forge/linux-64/geos-3.11.1-h27087fc_0.tar.bz2#917b9a50001fffdd89b321b5dba31e55\n https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2#14947d8770185e5153fdd04d4673ed37\n https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2#cddaf2c63ea4a5901cf09524c490ecdc\n-https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h36c2ea0_2.tar.bz2#626e68ae9cc5912d6adb79d318cf962d\n+https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f\n https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2#b94cf2db16066b242ebd26db2facbd56\n https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2#8c54672728e8ec6aa6db90cf2806d220\n https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2#87473a15119779e021c314249d4b4aed\n@@ -37,14 +37,16 @@ https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda#c7a0692\n https://conda.anaconda.org/conda-forge/linux-64/json-c-0.16-hc379101_0.tar.bz2#0e2bca6857cb73acec30387fef7c3142\n https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3\n https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f\n-https://conda.anaconda.org/conda-forge/linux-64/libabseil-20220623.0-cxx17_h05df665_6.conda#39f6394ae835f0b16f01cbbd3bb1e8e2\n+https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230125.0-cxx17_hcb278e6_1.conda#a1c65f83198fd8d0328c0a6482c6f31b\n+https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda#0f683578378cddb223e7fd24f785ab2a\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2#9194c9bf9428035a05352d031462eae4\n https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400\n-https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.14-h166bdaf_0.tar.bz2#fc84a0446e4e4fb882e78d786cfb9734\n+https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda#5cc781fd91968b11a8a7fdbee0982676\n https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2#6f8720dff19e17ce5d48cfe7f3d2f0a3\n https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3\n https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2#b62b52da46c39ee2bc3c162ac7f1804d\n https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2#39b1328babf85c7c3a61636d9cd50206\n+https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda#28bfe2cb11357ccc5be21101a6b7ce86\n https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2#8c5963a49b6035c40646a763293fbb35\n https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2#c3788462a6fbddafdb413a9f9053e58d\n https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-h9c3ff4c_4.tar.bz2#d87fbe9c0ff589e802ff13872980bfd9\n@@ -56,81 +58,85 @@ https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz\n https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0\n https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2#4acfc691e64342b9dae57cf2adc63238\n https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1\n-https://conda.anaconda.org/conda-forge/linux-64/openssl-1.1.1t-h0b41bf4_0.conda#a35dc66c4cee8c4399507d14cf1501b1\n+https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.0-h0b41bf4_0.conda#2d833be81a21128e317325a01326d36f\n https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2#660e72c82f2e75a6b3fe6a6e75c79f19\n https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036\n-https://conda.anaconda.org/conda-forge/linux-64/re2-2022.06.01-h27087fc_1.conda#68070cd09c67755f37e0db13f00a008b\n-https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.9-hbd366e4_2.tar.bz2#48018e187dacc6002d3ede9c824238ac\n-https://conda.anaconda.org/conda-forge/linux-64/tzcode-2022g-h166bdaf_0.conda#229620ecbc0bf2f9f04b888fd3478f79\n+https://conda.anaconda.org/conda-forge/linux-64/re2-2023.02.02-hcb278e6_0.conda#ecfc7890f1bd597ba55fbda1396f46fe\n+https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda#e6d228cd0bb74a51dd18f5bfce0b4115\n+https://conda.anaconda.org/conda-forge/linux-64/tzcode-2023b-h0b41bf4_0.conda#54e266a59d6da0d119461e830a41f1db\n https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2#d6b0b50b49eccfe0be0373be628be0f3\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2#bf6f803a544f26ebbdc3bfff272eb179\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2#be93aabceefa2fac576e971aef407908\n https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2#06feff3d2634e3097ce2fe681474b534\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2#1e15f6ad85a7d743a2ac68dae6c82b98\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87\n https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15\n https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0\n https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2#4cb3ad778ec2d5a7acbdf254eb1c42ae\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.11-h95a6274_0.tar.bz2#d4e7b241fb22dd3d7be1171f813d5da3\n-https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.11-ha31a3da_7.tar.bz2#2fdb96aaab883abc0766ff76c0a34483\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.21-h48707d8_2.conda#de2efba4b6f1635d5682728460808487\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.16-h03acc5a_5.conda#6bc5d85dbafdd7acbcc243793ae8fa05\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.8-h03acc5a_0.conda#347cdfafa34723feda1beed53ac7d092\n+https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.14-h03acc5a_5.conda#621ec569388ccd005e974a8cb66ab869\n https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2#b31f3565cb84435407594e548a2fb7b2\n https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2#d9b7a8639171f6c6fa0a983edabcfe2b\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2#4ae4d7795d33e02bd20f6b23d91caf82\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2#04bac51ba35ea023dc48af73c1c88c25\n https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1\n-https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h9b69904_4.tar.bz2#390026683aef81db27ff1b8570ca1336\n-https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.51.0-hdcd2b5c_0.conda#c42b460bae0365fb9777b1ff9d09a554\n+https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2#4a049fc560e00e43151dc51368915fdd\n+https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda#613955a50485812985c059e7b269f42e\n https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda#e1c890aebdebbfbf87e2c917187b4416\n-https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.20.2-h6239696_0.tar.bz2#dd9c398d02aa82219a4ea5fa69739ae7\n+https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.21.12-h3eb15da_0.conda#4b36c68184c6c85d88c6e595a32a1ede\n https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-ha49c73b_12.tar.bz2#d2047c6de84b07a1db9cbe1683939956\n https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2#2e5f9a37d487e1019fd4d8113adb2f9f\n-https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-haa6b8db_3.tar.bz2#89acee135f0809a18a1f4537390aa2dd\n+https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-hf14f497_3.tar.bz2#d85acad4b47dff4e3def14a769a97906\n https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2#b3653fdc58d03face9724f602218a904\n-https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2#3b933ea47ef8f330c4c068af25fcd6a8\n-https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc869a4a_1.tar.bz2#7a268cf1386d271e576e35ae82149ef2\n-https://conda.anaconda.org/conda-forge/linux-64/pandoc-2.19.2-h32600fe_1.tar.bz2#35a82883468c85ac8bf41f083c1933cf\n+https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-hca2bb57_4.conda#bb808b654bdc3c783deaf107a2ffb503\n+https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc929e4a_1.tar.bz2#5b122b50e738c4be5c3f2899f010d7cf\n+https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.1.1-h32600fe_0.conda#68dcea6605bcebb17215d2b4efb3e1cf\n https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2#69e2c796349cd9b273890bee0febfe1b\n-https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2#db2ebbe2943aae81ed051a6a9af8e0fa\n-https://conda.anaconda.org/conda-forge/linux-64/s2n-1.0.10-h9b69904_0.tar.bz2#9708c3ac26c20b4c4549cbe8fef937eb\n+https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4\n+https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.41-h3358134_0.conda#6e3b75864fd97aef652c0d61bc2804be\n https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2#5b8c42eb62e9fc961af70bdd6a26e168\n+https://conda.anaconda.org/conda-forge/linux-64/ucx-1.14.0-ha0ee010_0.conda#7f34aae830e22c4212c14bd456c1796c\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2#9e856f78d5c80d5a78f61e72d1d473a3\n https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2#21743a8d2ea0c8cfbbf8fe489b0347df\n https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2#4b11e365c0275b808be78b30f904e295\n https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda#6b63daed8feeca47be78f323e793d555\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.10.5-hfb6a706_0.tar.bz2#47d6b88b0c42a8c9877f3993b49f052d\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.19-h5b20300_3.conda#2f8cdd45bb9983aa337a6357b12951c5\n https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.3-hafa529b_0.conda#bcf0664a2dbbbb86cbd4c1e6ff10ddd6\n https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.78.0-h75c5d50_1.tar.bz2#accc1f1ca33809bbf9ad067a0a69e236\n https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2#e5613f2bc717e9945840ff474419b8e4\n https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda#e1232042de76d24539a436d37597eb06\n-https://conda.anaconda.org/conda-forge/linux-64/grpc-cpp-1.47.1-hbad87ad_6.tar.bz2#6d0f1ddd701aebf007274ee5ea9a3018\n https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_5.tar.bz2#ee08782aff2ff9b3291c967fa6bc7336\n-https://conda.anaconda.org/conda-forge/linux-64/krb5-1.19.3-h3790be6_0.tar.bz2#7d862b05445123144bec92cb1acc8ef8\n+https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda#89a41adce7106749573d883b2f657d78\n https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2#20bae26d0a1db73f758fc3754cab4719\n https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2#ed5349aa96776e00b34eccecf4a948fe\n+https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.52.1-hcf146ea_1.conda#999b2527de4ab2a3472d51a5aab719c4\n https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2#955d993f41f9354bf753d29864ea20ad\n-https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.16.0-h491838f_2.tar.bz2#9134d477d02ad9264c6ee359fa36702c\n-https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.4.0-h82bc61c_5.conda#e712a63a21f9db647982971dc121cdcf\n-https://conda.anaconda.org/conda-forge/linux-64/nss-3.88-he45b914_0.conda#d7a81dfb99ad8fbb88872fb7ec646e6c\n-https://conda.anaconda.org/conda-forge/linux-64/orc-1.7.6-h6c59b99_0.tar.bz2#7978db6ca7b2932ccf9d3c36093f8281\n-https://conda.anaconda.org/conda-forge/linux-64/python-3.10.8-h257c98d_0_cpython.conda#fa742265350d7f6d664bc13436caf4ad\n+https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.18.1-h5e4af38_0.conda#a2fab690ff5efa0d31cf5e27cd433faa\n+https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda#2e648a34072eb39d7c4fc2a9981c5f0c\n+https://conda.anaconda.org/conda-forge/linux-64/nss-3.89-he45b914_0.conda#2745719a58eeaab6657256a3f142f099\n+https://conda.anaconda.org/conda-forge/linux-64/orc-1.8.3-hfdbbad2_0.conda#8aafd0a5ba97bf0cc451550b147a4e0a\n+https://conda.anaconda.org/conda-forge/linux-64/python-3.10.10-he550d4f_0_cpython.conda#de25afc7041c103c7f510c746bb63435\n https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.40.0-h4ff8645_0.tar.bz2#bb11803129cbbb53ed56f9506ff74145\n https://conda.anaconda.org/conda-forge/linux-64/unixodbc-2.3.10-h583eb01_0.tar.bz2#906893193434d971b6f92839086f430d\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2#12a61e640b8894504326aadafccbb790\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h0b41bf4_0.conda#ea8fbfeb976ac49cbeb594e985393514\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2#6c72ec3e660a51736913ef6ea68c454b\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.7-h3541f99_13.tar.bz2#39768ba0fe69c241d54703a7f5e3119f\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.20-h00877a2_4.conda#cd282ae47b410df93a192b16399100d0\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.6-hf342b9f_0.conda#ddec786d29917630faee14b54aac584d\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py310hff52083_7.tar.bz2#02d7c823f5e6fd4bbe5562c612465aed\n-https://conda.anaconda.org/conda-forge/linux-64/bitarray-2.7.2-py310h1fa729e_0.conda#acdcda77a0268d6c7c80acb671d7ec26\n+https://conda.anaconda.org/conda-forge/linux-64/bitarray-2.7.3-py310h1fa729e_0.conda#03193e8062c1a0b4e21552064f8aa049\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2#2ff08978892a3e8b954397c461f18418\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/linux-64/clickhouse-cityhash-1.0.2.3-py310hd8f1fbe_4.tar.bz2#40518690075b4630382e9ca0b47128a1\n@@ -140,31 +146,32 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.6.6-py310heca2aa9_0.conda#1235d03bc69ce4633b802a91ba58b3dd\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n-https://conda.anaconda.org/conda-forge/noarch/flit-core-3.8.0-pyhd8ed1ab_0.tar.bz2#6d5e56de2e65da7aa35fd10131226efa\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d\n-https://conda.anaconda.org/conda-forge/linux-64/freetds-1.3.16-h41fea10_0.conda#912ba9630b3d6287760536bf041e78b0\n+https://conda.anaconda.org/conda-forge/linux-64/freetds-1.1.15-h1770fba_1.tar.bz2#9ebc291d4a9f33099a59a47f9af72a17\n https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.3.3-py310h5764c6d_0.tar.bz2#25e1626333f9a0646579a162e7b174ee\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.8-hff1cb4f_1.tar.bz2#a61c6312192e7c9de71548a6706a21e6\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.10-h05c8ddd_0.conda#1a109126a43003d65b39c1cad656bc9b\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/linux-64/greenlet-2.0.2-py310heca2aa9_0.conda#2a6e2e6deb0ddf5344ac74395444e3df\n+https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.52.1-py310heca2aa9_1.conda#ae3c71c3af66ea2856fd33e7daa926f5\n https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h64030ff_2.tar.bz2#112eb9b5b93f0c02e59aea4fd1967363\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.2-pyhd8ed1ab_0.conda#1a7584b46014b66568069cb6ef2253bf\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py310hbf28c38_1.tar.bz2#ad5647e517ba68e2868ef2e6e6ff7723\n-https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-h6ed2654_0.tar.bz2#dcc588839de1445d90995a0a2c4f3a39\n-https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.86.0-h7bff187_1.tar.bz2#5e5f33d81f31598d87f9b849f73c30e3\n+https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-hfd0df8a_0.conda#aa8840cdf17ef0c6084d1e24abc7a28b\n+https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.88.1-hdc1c0ab_1.conda#3d1189864d1c0ed2a5919cb067b5903d\n https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h37653c0_1015.tar.bz2#37d3747dd24d604f63d2610910576e63\n-https://conda.anaconda.org/conda-forge/linux-64/libpq-15.1-hf695f80_1.conda#12a501b9ee0927abfc95083303b6c89f\n-https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h522a892_0.tar.bz2#802e43f480122a85ae6a34c1909f8f98\n+https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda#4654b17eccaba55b8581d6b9c77f53cc\n+https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h1daa5a0_1.conda#77003f63d1763c1e6569a02c1742c9f4\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/linux-64/lz4-4.3.2-py310h0cfdcf0_0.conda#29674148bef03cc0355e81cd069fa047\n https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py310h1fa729e_0.conda#a1f0db6709778b77b5903541eeac4032\n@@ -172,24 +179,23 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.4-py310hbf28c38_1.tar.bz2#1fa34c9e9be72b7e4c3c9b95017463a3\n+https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.5-py310hdf3cbec_0.conda#5311a49aaea44b73935c84a6d9a68e5f\n https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py310h1fa729e_0.conda#b33287be963a70f8fb4b143b4561ba62\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py310h8deb116_0.conda#b7085457309e206174b8e234d90a7605\n-https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h7d73246_1.tar.bz2#a11b4df9271a8d7917686725aa04c8f2\n+https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda#5ce6a42505c6e9e6151c54c3ec8d68ea\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n-https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.16.0-pyhd8ed1ab_0.conda#8efaddc1c8b8ce262c4d1a7c6571c799\n https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py310h5764c6d_0.tar.bz2#c3c55664e9becc48e6a652e2b641961f\n https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263\n https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n@@ -200,30 +206,24 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/linux-64/pycryptodomex-3.16.0-py310h5764c6d_0.conda#681bc14a8297b76ea10b05773e2ff4dd\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/linux-64/pyrsistent-0.19.3-py310h1fa729e_0.conda#f732bec05ecc2e302a868d971ae484e0\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.6-pyhd8ed1ab_0.conda#525828457f46cf124526760c5400982d\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py310h5764c6d_5.tar.bz2#9e68d2ff6d98737c855b65f48dd3c597\n-https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.0-py310h059b190_0.conda#125d2a047e37a0ff0676912c91a622ae\n-https://conda.anaconda.org/conda-forge/linux-64/regex-2022.10.31-py310h5764c6d_0.tar.bz2#8fad03b61d0e8a70f03115677cb55e61\n-https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f\n+https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.2-py310h059b190_0.conda#a0cf00cb5dd15f3d243f7bdab7d28800\n+https://conda.anaconda.org/conda-forge/linux-64/regex-2023.3.23-py310h1fa729e_0.conda#684679589ab49049183640b15554be5d\n https://conda.anaconda.org/conda-forge/linux-64/rtree-1.0.1-py310hbdcdc62_1.tar.bz2#49ad4035b71bbf7289ac1523f8023ebe\n-https://conda.anaconda.org/conda-forge/linux-64/ruff-0.0.249-py310h11c32a7_0.conda#040a526549bd174c9abeba804a29cf83\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.0-pyhd8ed1ab_0.tar.bz2#edab14119efe85c3bf131ad747e9005c\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/linux-64/ruff-0.0.259-py310h11c32a7_0.conda#d1ebc250f9eb06229c5be50f0a44ce34\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n-https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -233,22 +233,23 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py310h5764c6d_1.tar.bz2#be4a201ac582c11d89ed7d15b3157cc3\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py310h5764c6d_0.tar.bz2#e972c5a1f472561cf4a91962cb01f4b4\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.5.1-pyhd8ed1ab_0.conda#2a914654b9ade742049dab13e29571c6\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2#536cc5db4d0a3ba0630541aec064b5e4\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2#f59c1242cc1dd93e72c2ee2b360979eb\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n-https://conda.anaconda.org/conda-forge/noarch/anyio-3.6.2-pyhd8ed1ab_0.tar.bz2#8ada050fa88f26916fc1e76e368a49fd\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.8.186-hecaee15_4.tar.bz2#e29dc8e8611b70cdfcc3139dba6e9001\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.6.26-hf365957_1.conda#5f2aefd743f82e4177c997c314a55f22\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.8.6-hc4349f7_12.conda#0ba6aa71b51d31d48195b26f343d926f\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2#d1a88f3ed5b52e1024b80d4bcd26a7a0\n@@ -256,190 +257,187 @@ https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py310h255011f_3.cond\n https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.2.0-hd9d235c_0.conda#8c57a9adbafd87f5eff842abde599cb4\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py310hdf3cbec_0.conda#7bf9d8c765b6b04882c719509652c6d6\n-https://conda.anaconda.org/conda-forge/linux-64/coverage-7.1.0-py310h1fa729e_0.conda#da7c45dbe780f5e162011a3af44e5009\n-https://conda.anaconda.org/conda-forge/linux-64/curl-7.86.0-h7bff187_1.tar.bz2#bc9567c50833f4b0d36b25caca7b34f8\n+https://conda.anaconda.org/conda-forge/linux-64/coverage-7.2.2-py310h1fa729e_0.conda#8750e87414347c0208b1b2e035aa6af2\n+https://conda.anaconda.org/conda-forge/linux-64/curl-7.88.1-hdc1c0ab_1.conda#2016c398f234cfa354ea704c6731b5d5\n https://conda.anaconda.org/conda-forge/linux-64/cytoolz-0.12.0-py310h5764c6d_1.tar.bz2#fd18cd597d23b2b5ddde23bd5b7aec32\n-https://conda.anaconda.org/conda-forge/linux-64/fastavro-1.7.1-py310h1fa729e_0.conda#0c808b2a78cfcb35d661e6496fa77318\n-https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py310h5764c6d_1.tar.bz2#12ebe92a8a578bc903bd844744f4d040\n+https://conda.anaconda.org/conda-forge/linux-64/fastavro-1.7.3-py310h1fa729e_0.conda#9682ebe9bdcdfbe2ae248b8ed97ae2d3\n+https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.39.2-py310h1fa729e_0.conda#3b354798e12b65fa8ebe1d189de6a507\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.47.1-py310h946def9_6.tar.bz2#0f9f69ca8543d9f114e69344054f2189\n-https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h2386368_100.tar.bz2#b014a5f912e0193783e48086b7bb3995\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h4df4325_101.conda#162a25904af6586b234b2dd52ee99c61\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n-https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h18fbbfe_3.tar.bz2#ea9758cf553476ddf75c789fdd239dc5\n-https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.1.0-h9ebe8e8_2.tar.bz2#e8ae8bddbc20f598706dc3ae15dbf95e\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h5aea950_4.conda#82ef57611ace65b59db35a9687264572\n+https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.8.0-h0bc5f78_1.conda#bdf605748604b09602f3c841abdba817\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n-https://conda.anaconda.org/conda-forge/linux-64/maturin-0.14.13-py310h4426083_0.conda#98f82b06b7949bd91a0d3fb8aff848d5\n+https://conda.anaconda.org/conda-forge/linux-64/maturin-0.14.16-py310h4426083_0.conda#07946162e03b9f5725862e7b389c0359\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py310h454ad03_3.tar.bz2#eb354ff791f505b1d6f13f776359d88e\n+https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py310h023d228_1.conda#bbea829b541aa15df5c65bd40b8c1981\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/linux-64/polars-0.16.7-py310h4426083_0.conda#b4351b35651c1341ddfdeb8e62ed3f3a\n-https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.1-hdeef612_1.conda#f89d4c616e48fc8976edaf3b6a9dde0f\n-https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.0-h93bde94_0.tar.bz2#255c7204dda39747c3ba380d28b026d7\n-https://conda.anaconda.org/conda-forge/linux-64/protobuf-3.20.2-py310hd8f1fbe_1.conda#5fe061917ac4008c9880829c04ea6a7e\n+https://conda.anaconda.org/conda-forge/linux-64/polars-0.16.16-py310h4426083_0.conda#d92c4b3ca9d8569adbf1f0d521d3b5f5\n+https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.2-h3248436_0.conda#4dbd6c4bc33369751a4d728b392943ba\n+https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.1-h8ffa02c_2.conda#c264aea0e16bba26afa0a0940e954492\n+https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.21.12-py310heca2aa9_0.conda#90bb7e1b729c4b50272cf78be97ab912\n https://conda.anaconda.org/conda-forge/linux-64/psycopg2-2.9.3-py310h416cc33_2.conda#c37b231d9031334c8d07a5b183749d27\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/linux-64/pymssql-2.2.7-py310heca2aa9_0.conda#4d693e2a608410cdd96849685cadc62a\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/linux-64/pymssql-2.2.5-py310hd8f1fbe_2.tar.bz2#f288e5854c7d500b002e7b5aa6d1ef6c\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/linux-64/pytz-deprecation-shim-0.1.0.post0-py310hff52083_3.tar.bz2#82aa6b712a8268bc74d25b4a254b7dbc\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n-https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520\n https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.5-py310h5b266fc_2.tar.bz2#c4a3707d6a630facb6cf7ed8e0d37326\n https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-1.4.46-py310h1fa729e_0.conda#7d70e0b7322c6e9b1f69d72d46af865d\n-https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda#3788984d535770cad699efaeb6cb3037\n https://conda.anaconda.org/conda-forge/linux-64/thrift-0.16.0-py310hd8f1fbe_2.tar.bz2#51baafd32af4f606f455bce5fa784c70\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/linux-64/watchdog-2.2.1-py310hff52083_0.conda#3a50904a55921d7d0d72fc6e90211d28\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/linux-64/watchdog-3.0.0-py310hff52083_0.conda#7fd99455953539786322bad15affa308\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.4-h55805fa_1.tar.bz2#d127dc8efe24033b306180939e51e6af\n https://conda.anaconda.org/conda-forge/linux-64/yarl-1.8.2-py310h5764c6d_0.conda#a88cda17074955bdb5e93b8e3be59e7d\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n-https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310h5764c6d_3.tar.bz2#12f70cd23e4ea88f913dba50b0f0aba0\n-https://conda.anaconda.org/conda-forge/linux-64/arrow-cpp-8.0.1-py310h4f1c134_2_cpu.tar.bz2#a701f00bfad1094e55fb1a25d4746106\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.2.7-h909e904_1.conda#7cb3fd9464ed9aaf8189837fe9d96c28\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py310h5764c6d_1005.tar.bz2#87669c3468dff637bbd0363bc0f895cf\n-https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.4-py310h597c629_0.conda#7581a8173640b98c7f916c966f67ac72\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.4-py310h600f1e7_0.conda#f999dcc21fe27ad97a8afcfa590daa14\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-ha76d385_4.tar.bz2#6a613710a0f19aba3a5dfe83bf1c1c0f\n+https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h7a142b4_6.conda#b7963c107ed1f6a95cadc244f95cd3cd\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/linux-64/google-crc32c-1.1.2-py310he8fe98e_4.tar.bz2#eacd2681883d37f27440cf5cd779bef2\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda#448fe40d2fed88ccf4d9ded37cbb2b38\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.0-ha7026e8_0.conda#c948b920f45fd81a2dde8b1ab514cc84\n-https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.8.1-nompi_h261ec11_106.tar.bz2#9b25de670ce5753a33c18b1090d1d3bf\n-https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-h7c8129e_22.tar.bz2#23abed7562ad969493b89ad0e5f5c521\n+https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.1-nompi_h34a3ff0_101.conda#9ce7f5bde721be2f82da9f861c57f1b3\n+https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-h221c8f1_23.conda#859297085081cfbc123dc60015864f6b\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.0-py310he60537e_0.conda#83a21bbd1c6fbeb339ba914fb5e5c02d\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n+https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.1-py310he60537e_0.conda#68b2dd34c69d08b05a9db5e3596fe3ee\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py310h9b08913_0.conda#467244b0dbb7da40927ac6ee0e9491de\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/linux-64/poppler-22.12.0-h92391eb_0.conda#7ad6d858f5615f9b0e9e4bd60395ea75\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/linux-64/poppler-23.03.0-h091648b_0.conda#a449be485743e64ed48d340d5424774d\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.1-py310hfc24d34_0.conda#c126f81b5cea6b2d4a64d0744249a26f\n+https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.1-py310h15e2413_1.conda#5be35366687def87437d210fd673100c\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hc2ae436_0.conda#8cb0b84db929d2b32fffbd93c497e5ee\n-https://conda.anaconda.org/conda-forge/linux-64/tzlocal-4.2-py310hff52083_2.tar.bz2#3bf45672f7bb89916c06cd5e19e8710d\n+https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hd532e3d_0.conda#6d97164f19dbd27575ef1899b02dc1e0\n+https://conda.anaconda.org/conda-forge/linux-64/tzlocal-4.3-py310hff52083_0.conda#d363eda493802840269f06e445414692\n+https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py310hbf28c38_3.tar.bz2#703ff1ac7d1b27fb5944b8052b5d1edb\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.4-py310h1fa729e_0.conda#ad96f1f4a5a53f6e474953539d0f73ea\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-21.3.0-pyhd8ed1ab_0.tar.bz2#a0b402db58f73aaab8ee0ca1025a362e\n+https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.19.8-hf7fbfca_12.conda#c2940067a049037ec1789ccfcb853fb4\n https://conda.anaconda.org/conda-forge/linux-64/black-23.1.0-py310hff52083_0.conda#079d6366d57f7aff0e674620a8b68a33\n https://conda.anaconda.org/conda-forge/linux-64/clickhouse-driver-0.2.5-py310h5764c6d_0.conda#18ab2576a5c54e1d0704f9f341e72bce\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.2.0-py310hff52083_0.conda#fe002e7c5030e7baec9e0f9a6cdbe15e\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.6.3-pyhd8ed1ab_0.conda#d98c5196ab6ffeb0c2feca2912801353\n-https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.6.1-h896b04b_1.conda#0ef3cdacbcefb93d2e94b017db6d9c8a\n+https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.3.0-py310hff52083_0.conda#49428e10aae69baa6b34cb7e275f1ae9\n+https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.6.2-h6c674c2_9.conda#d6023c0a9a1b0c04c78d0d33d98e6620\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.13-hd33c08f_0.conda#e3b13445b8ee9d6a3d53a714f89ccd76\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.14-hd33c08f_0.conda#a8b9e35dd7be2c945b0de4fe19a7c3a9\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/linux-64/gdal-3.6.1-py310hb0f0f5e_1.conda#83b5fe67f903e60a9c0fc47282642b24\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.10.57-h17c43bd_8.conda#a318ddbd962b0ec5639cc4fb7e9b2230\n+https://conda.anaconda.org/conda-forge/linux-64/gdal-3.6.2-py310hc1b7723_9.conda#9ba152894e33875f9501e7bec0755674\n https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h90689f9_2.tar.bz2#957a0255ab58aaf394a91725d73ab422\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda#4703355103974293bbd8a32449b3ff28\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.54.4-h7abd40a_0.tar.bz2#921e53675ed5ea352f022b79abab076a\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n-https://conda.anaconda.org/conda-forge/linux-64/pyarrow-8.0.1-py310h9be7b57_2_cpu.tar.bz2#27c949ff91ecf4a484956d8d082740e3\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/linux-64/datafusion-0.7.0-py310h4426083_0.conda#3bd49f96523180fce973240e697db2a3\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/linux-64/fiona-1.8.22-py310ha325b7b_5.conda#4dbdf48d4712e8906595291f38423eff\n-https://conda.anaconda.org/conda-forge/linux-64/graphviz-7.0.5-h2e5815a_0.conda#96bf06b24d74a5bf826485e9032c9312\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh210e3f2_0.conda#f4c469f01c4aa05f77ab2f70c2fbbef2\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.1-py310ha325b7b_0.conda#dd86e4232f30ee17fabd28b1020f75a2\n+https://conda.anaconda.org/conda-forge/linux-64/graphviz-7.1.0-h2e5815a_0.conda#e7ecda996c443142a0e9c379f3b28e48\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh41d4057_0.conda#c8f4db8b2fc42692b3b7f1e348b2ab59\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/linux-64/libarrow-11.0.0-h93537a5_13_cpu.conda#49d5c8c33c0d1db3362058d45da6af69\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-0.7.0-py310h13fce15_1.conda#ae42049f122c8ebbba8a5520d5cde8c3\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/linux-64/arrow-cpp-11.0.0-ha770c72_13_cpu.conda#26ab48029304dce678b7084206415e03\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh210e3f2_0.conda#1b463a5f4b7c83f509f6a1168a6ef554\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/linux-64/snowflake-connector-python-2.8.3-py310h1948b5c_0.conda#915ed8f2b3b9313bf89c3815050980b9\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.3.0-pyhd8ed1ab_0.conda#644c60cdd1e85407fc28b9085438c7a0\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.0-py310h8deb116_2.conda#a12933d43fc0e55c2e5e00f56196108c\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.1-py310h8deb116_0.conda#4c9604c5ec179c21f8f0a09e3c164480\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n-https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.2-pyhd8ed1ab_0.tar.bz2#40be846cd4e78672a40e43db9dae753c\n+https://conda.anaconda.org/conda-forge/linux-64/pyarrow-11.0.0-py310h633f555_13_cpu.conda#502e78eaa1dd2577a06d210a6d5b2890\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.1-py310h209a8ca_0.conda#3ffef54f2577d392e8d8790b3815ced6\n-https://conda.anaconda.org/conda-forge/linux-64/google-cloud-bigquery-core-3.4.2-py310hff52083_0.conda#eb287ab67b6321f123cda2050cc1b2c9\n+https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.2-py310h41b6a48_1.conda#7d06046647be68f5cbf331532d020a71\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/linux-64/datafusion-0.7.0-py310h4426083_0.conda#3bd49f96523180fce973240e697db2a3\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n-https://conda.anaconda.org/conda-forge/noarch/nbclassic-0.5.2-pyhd8ed1ab_0.conda#c5039404bd47fbdc811b5e9282c51afe\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-0.7.1-py310h13fce15_0.conda#c110a1f253bd834d40f91e4c5d752a6b\n+https://conda.anaconda.org/conda-forge/linux-64/snowflake-connector-python-3.0.2-py310hf85a2ed_0.conda#dfd2056d2d29b93c66588f2640287b39\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/notebook-6.5.2-pyha770c72_1.tar.bz2#7bf26ca095481f206e6f9dd7681085fe\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.1-pyha770c72_0.tar.bz2#03cd073d4dc0623b857bf9e175d0f736\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.7.1-pyhd8ed1ab_0.tar.bz2#96ba78bf526df670bf9562d6100eb627\n-https://conda.anaconda.org/conda-forge/linux-64/google-cloud-bigquery-3.4.2-py310hff52083_0.conda#c2ca1e382774df71c4ac8df78b3ab080\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n", "linux-64-3.11.lock": "@@ -0,0 +1,440 @@\n+# Generated by conda-lock.\n+# platform: linux-64\n+# input_hash: ba4c66ab1a9a5f6544513cad565377fb4eeee96bf34a32ca37671225f20ff5b5\n+@EXPLICIT\n+https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81\n+https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda#ff9f73d45c4a07d6f424495288a26080\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n+https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3\n+https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2#164b4b1acaedc47ee7e658ae6b308ca3\n+https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2#1030b1f38c129f2634eae026f704fe60\n+https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n+https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-3_cp311.conda#c2e2630ddb68cf52eec74dc7dfab20b5\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n+https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2#cd7a806282c16e1f2d39a7e80d3a3e0d\n+https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2#cedcee7c064c01c403f962c9e8d3c373\n+https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n+https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2#e4c94f80aef025c17ab0828cd85ef535\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.8.14-h0b41bf4_0.conda#2512d4aa4007fdf7b705713d73bf6967\n+https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2#a1fd65c7ccbf10880423d82bca54eb54\n+https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.18.1-h7f98852_0.tar.bz2#f26ef8098fab1f719c91eb760d63381a\n+https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2#c4fbad8d4bddeb3c085f18cbf97fbfad\n+https://conda.anaconda.org/conda-forge/linux-64/freexl-1.0.6-h166bdaf_1.tar.bz2#897e772a157faf3330d72dd291486f62\n+https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2#ac7bc6a654f8f41b352b38f4051135f8\n+https://conda.anaconda.org/conda-forge/linux-64/geos-3.11.1-h27087fc_0.tar.bz2#917b9a50001fffdd89b321b5dba31e55\n+https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2#14947d8770185e5153fdd04d4673ed37\n+https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2#cddaf2c63ea4a5901cf09524c490ecdc\n+https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f\n+https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2#b94cf2db16066b242ebd26db2facbd56\n+https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2#8c54672728e8ec6aa6db90cf2806d220\n+https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2#87473a15119779e021c314249d4b4aed\n+https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda#c7a069243e1fbe9a556ed2ec030e6407\n+https://conda.anaconda.org/conda-forge/linux-64/json-c-0.16-hc379101_0.tar.bz2#0e2bca6857cb73acec30387fef7c3142\n+https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3\n+https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f\n+https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230125.0-cxx17_hcb278e6_1.conda#a1c65f83198fd8d0328c0a6482c6f31b\n+https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda#0f683578378cddb223e7fd24f785ab2a\n+https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2#9194c9bf9428035a05352d031462eae4\n+https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400\n+https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda#5cc781fd91968b11a8a7fdbee0982676\n+https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2#6f8720dff19e17ce5d48cfe7f3d2f0a3\n+https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3\n+https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2#b62b52da46c39ee2bc3c162ac7f1804d\n+https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2#39b1328babf85c7c3a61636d9cd50206\n+https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda#28bfe2cb11357ccc5be21101a6b7ce86\n+https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2#8c5963a49b6035c40646a763293fbb35\n+https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2#c3788462a6fbddafdb413a9f9053e58d\n+https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-h9c3ff4c_4.tar.bz2#d87fbe9c0ff589e802ff13872980bfd9\n+https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.7-h27087fc_0.conda#f204c8ba400ec475452737094fb81d52\n+https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2#ede4266dc02e875fe1ea77b25dd43747\n+https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2#772d69f030955d9646d3d0eaf21d859d\n+https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2#ac2ccf7323d21f2994e4d1f5da664f37\n+https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2#f3f9de449d32ca9b9c66a22863c96f41\n+https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0\n+https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2#4acfc691e64342b9dae57cf2adc63238\n+https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1\n+https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.0-h0b41bf4_0.conda#2d833be81a21128e317325a01326d36f\n+https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2#660e72c82f2e75a6b3fe6a6e75c79f19\n+https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036\n+https://conda.anaconda.org/conda-forge/linux-64/re2-2023.02.02-hcb278e6_0.conda#ecfc7890f1bd597ba55fbda1396f46fe\n+https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda#e6d228cd0bb74a51dd18f5bfce0b4115\n+https://conda.anaconda.org/conda-forge/linux-64/tzcode-2023b-h0b41bf4_0.conda#54e266a59d6da0d119461e830a41f1db\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2#d6b0b50b49eccfe0be0373be628be0f3\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2#bf6f803a544f26ebbdc3bfff272eb179\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2#be93aabceefa2fac576e971aef407908\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2#06feff3d2634e3097ce2fe681474b534\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15\n+https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0\n+https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2#4cb3ad778ec2d5a7acbdf254eb1c42ae\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.21-h48707d8_2.conda#de2efba4b6f1635d5682728460808487\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.16-h03acc5a_5.conda#6bc5d85dbafdd7acbcc243793ae8fa05\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.8-h03acc5a_0.conda#347cdfafa34723feda1beed53ac7d092\n+https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.14-h03acc5a_5.conda#621ec569388ccd005e974a8cb66ab869\n+https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2#b31f3565cb84435407594e548a2fb7b2\n+https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2#d9b7a8639171f6c6fa0a983edabcfe2b\n+https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2#4ae4d7795d33e02bd20f6b23d91caf82\n+https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2#04bac51ba35ea023dc48af73c1c88c25\n+https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1\n+https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2#4a049fc560e00e43151dc51368915fdd\n+https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda#613955a50485812985c059e7b269f42e\n+https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda#e1c890aebdebbfbf87e2c917187b4416\n+https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.21.12-h3eb15da_0.conda#4b36c68184c6c85d88c6e595a32a1ede\n+https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-ha49c73b_12.tar.bz2#d2047c6de84b07a1db9cbe1683939956\n+https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2#2e5f9a37d487e1019fd4d8113adb2f9f\n+https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-hf14f497_3.tar.bz2#d85acad4b47dff4e3def14a769a97906\n+https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2#b3653fdc58d03face9724f602218a904\n+https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-hca2bb57_4.conda#bb808b654bdc3c783deaf107a2ffb503\n+https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc929e4a_1.tar.bz2#5b122b50e738c4be5c3f2899f010d7cf\n+https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.1.1-h32600fe_0.conda#68dcea6605bcebb17215d2b4efb3e1cf\n+https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2#69e2c796349cd9b273890bee0febfe1b\n+https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4\n+https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.41-h3358134_0.conda#6e3b75864fd97aef652c0d61bc2804be\n+https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2#5b8c42eb62e9fc961af70bdd6a26e168\n+https://conda.anaconda.org/conda-forge/linux-64/ucx-1.14.0-ha0ee010_0.conda#7f34aae830e22c4212c14bd456c1796c\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2#9e856f78d5c80d5a78f61e72d1d473a3\n+https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2#21743a8d2ea0c8cfbbf8fe489b0347df\n+https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2#4b11e365c0275b808be78b30f904e295\n+https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda#6b63daed8feeca47be78f323e793d555\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.19-h5b20300_3.conda#2f8cdd45bb9983aa337a6357b12951c5\n+https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.3-hafa529b_0.conda#bcf0664a2dbbbb86cbd4c1e6ff10ddd6\n+https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.78.0-h75c5d50_1.tar.bz2#accc1f1ca33809bbf9ad067a0a69e236\n+https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2#e5613f2bc717e9945840ff474419b8e4\n+https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda#e1232042de76d24539a436d37597eb06\n+https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_5.tar.bz2#ee08782aff2ff9b3291c967fa6bc7336\n+https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda#89a41adce7106749573d883b2f657d78\n+https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2#20bae26d0a1db73f758fc3754cab4719\n+https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2#ed5349aa96776e00b34eccecf4a948fe\n+https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.52.1-hcf146ea_1.conda#999b2527de4ab2a3472d51a5aab719c4\n+https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2#955d993f41f9354bf753d29864ea20ad\n+https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.18.1-h5e4af38_0.conda#a2fab690ff5efa0d31cf5e27cd433faa\n+https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda#2e648a34072eb39d7c4fc2a9981c5f0c\n+https://conda.anaconda.org/conda-forge/linux-64/nss-3.89-he45b914_0.conda#2745719a58eeaab6657256a3f142f099\n+https://conda.anaconda.org/conda-forge/linux-64/orc-1.8.3-hfdbbad2_0.conda#8aafd0a5ba97bf0cc451550b147a4e0a\n+https://conda.anaconda.org/conda-forge/linux-64/python-3.11.0-he550d4f_1_cpython.conda#8d14fc2aa12db370a443753c8230be1e\n+https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.40.0-h4ff8645_0.tar.bz2#bb11803129cbbb53ed56f9506ff74145\n+https://conda.anaconda.org/conda-forge/linux-64/unixodbc-2.3.10-h583eb01_0.tar.bz2#906893193434d971b6f92839086f430d\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h0b41bf4_0.conda#ea8fbfeb976ac49cbeb594e985393514\n+https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n+https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2#6c72ec3e660a51736913ef6ea68c454b\n+https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n+https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.20-h00877a2_4.conda#cd282ae47b410df93a192b16399100d0\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.6-hf342b9f_0.conda#ddec786d29917630faee14b54aac584d\n+https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n+https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n+https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py311h38be061_7.tar.bz2#ec62b3c5b953cb610f5e2b09cd776caf\n+https://conda.anaconda.org/conda-forge/linux-64/bitarray-2.7.3-py311h2582759_0.conda#e6deddf513a8ecfa4357c94f0cca0fb3\n+https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n+https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2#2ff08978892a3e8b954397c461f18418\n+https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n+https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n+https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n+https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n+https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n+https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n+https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99\n+https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2#a50559fad0affdbb33729a68669ca1cb\n+https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.6.6-py311hcafe171_0.conda#bd1a16fa506659546f686deb96eb60c6\n+https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n+https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n+https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n+https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n+https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n+https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d\n+https://conda.anaconda.org/conda-forge/linux-64/freetds-1.1.15-h1770fba_1.tar.bz2#9ebc291d4a9f33099a59a47f9af72a17\n+https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.3.3-py311hd4cff14_0.tar.bz2#b81ebef162551d6cf909263695fd6d6b\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.10-h05c8ddd_0.conda#1a109126a43003d65b39c1cad656bc9b\n+https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n+https://conda.anaconda.org/conda-forge/linux-64/greenlet-2.0.2-py311hcafe171_0.conda#ed14793904097c2d91698cb59dbd2b70\n+https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.52.1-py311hcafe171_1.conda#235b598d924b0a87cdc86227b5d4a2ab\n+https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h64030ff_2.tar.bz2#112eb9b5b93f0c02e59aea4fd1967363\n+https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n+https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n+https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n+https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py311h4dd048b_1.tar.bz2#46d451f575392c01dc193069bd89766d\n+https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-hfd0df8a_0.conda#aa8840cdf17ef0c6084d1e24abc7a28b\n+https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.88.1-hdc1c0ab_1.conda#3d1189864d1c0ed2a5919cb067b5903d\n+https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h37653c0_1015.tar.bz2#37d3747dd24d604f63d2610910576e63\n+https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda#4654b17eccaba55b8581d6b9c77f53cc\n+https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h1daa5a0_1.conda#77003f63d1763c1e6569a02c1742c9f4\n+https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n+https://conda.anaconda.org/conda-forge/linux-64/lz4-4.3.2-py311h9f220a4_0.conda#b8aad2507303e04037e8d02d8ac54217\n+https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py311h2582759_0.conda#adb20bd57069614552adac60a020c36d\n+https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268\n+https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n+https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n+https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.5-py311ha3edf6b_0.conda#7415f24f8c44e44152623d93c5015000\n+https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py311h2582759_0.conda#8f581c14b50f2df47a2c6bd8d230a579\n+https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n+https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n+https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n+https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n+https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py311h8e6699e_0.conda#90db8cc0dfa20853329bfc6642f887aa\n+https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda#5ce6a42505c6e9e6151c54c3ec8d68ea\n+https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n+https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n+https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n+https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n+https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n+https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n+https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n+https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py311hd4cff14_0.tar.bz2#6fbda857a56adb4140bed339fbe0b801\n+https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263\n+https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n+https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883\n+https://conda.anaconda.org/conda-forge/noarch/py-cpuinfo-9.0.0-pyhd8ed1ab_0.tar.bz2#6f6d42b894118f8378fce11887ccdaff\n+https://conda.anaconda.org/conda-forge/noarch/py4j-0.10.9.5-pyhd8ed1ab_0.tar.bz2#aa4b90e96537b3178e500ecb0d7913ce\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f8f72ac77911db942eda24fb9\n+https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n+https://conda.anaconda.org/conda-forge/linux-64/pycryptodomex-3.16.0-py311hd4cff14_0.conda#e0803d5b8e9c506c7b76ad496dc44148\n+https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n+https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n+https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n+https://conda.anaconda.org/conda-forge/linux-64/pyrsistent-0.19.3-py311h2582759_0.conda#e53876b66dcc4ba8a0afa63cd8502ac3\n+https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n+https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py311hd4cff14_5.tar.bz2#da8769492e423103c59f469f4f17f8d9\n+https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.2-py311hd6ccaeb_0.conda#8917d0819ab7180b5204a60fe12f7c3a\n+https://conda.anaconda.org/conda-forge/linux-64/regex-2023.3.23-py311h2582759_0.conda#139c07fd7955fe864351190f3bd1d48b\n+https://conda.anaconda.org/conda-forge/linux-64/rtree-1.0.1-py311h3bb2b0f_1.tar.bz2#1b020e2257c97aea220dd46f3f57db4b\n+https://conda.anaconda.org/conda-forge/linux-64/ruff-0.0.259-py311ha4fe6a1_0.conda#f777879dc22257f5388c3dc2afc14122\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n+https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n+https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n+https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n+https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n+https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n+https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n+https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n+https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095\n+https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96\n+https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36\n+https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py311hd4cff14_1.tar.bz2#4d86cd6dbdc1185f4e72d974f1f1f852\n+https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n+https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n+https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2#f59c1242cc1dd93e72c2ee2b360979eb\n+https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n+https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n+https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.6.26-hf365957_1.conda#5f2aefd743f82e4177c997c314a55f22\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.8.6-hc4349f7_12.conda#0ba6aa71b51d31d48195b26f343d926f\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n+https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n+https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n+https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n+https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2#d1a88f3ed5b52e1024b80d4bcd26a7a0\n+https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py311h409f033_3.conda#9025d0786dbbe4bc91fd8e85502decce\n+https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.2.0-hd9d235c_0.conda#8c57a9adbafd87f5eff842abde599cb4\n+https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n+https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py311ha3edf6b_0.conda#e7548e7f58965a2fe97a95950a5fedc6\n+https://conda.anaconda.org/conda-forge/linux-64/coverage-7.2.2-py311h2582759_0.conda#41f2bca794aa1b4e70c1a23f8ec2dfa5\n+https://conda.anaconda.org/conda-forge/linux-64/curl-7.88.1-hdc1c0ab_1.conda#2016c398f234cfa354ea704c6731b5d5\n+https://conda.anaconda.org/conda-forge/linux-64/cytoolz-0.12.0-py311hd4cff14_1.tar.bz2#21523141b35484b1edafba962c6ea883\n+https://conda.anaconda.org/conda-forge/linux-64/fastavro-1.7.3-py311h2582759_0.conda#7adc34c55807055978517230f0585f0e\n+https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.39.2-py311h2582759_0.conda#f227528f25c3d45717f71774222a2200\n+https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n+https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h4df4325_101.conda#162a25904af6586b234b2dd52ee99c61\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n+https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n+https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n+https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n+https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n+https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h5aea950_4.conda#82ef57611ace65b59db35a9687264572\n+https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.8.0-h0bc5f78_1.conda#bdf605748604b09602f3c841abdba817\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n+https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n+https://conda.anaconda.org/conda-forge/linux-64/maturin-0.14.16-py311hfe55011_0.conda#3eb292b516ce8f72c9a21fa50f4440a9\n+https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n+https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n+https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n+https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n+https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n+https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py311h50def17_1.conda#8b5d1da23907114bd7aa3d562150ff36\n+https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n+https://conda.anaconda.org/conda-forge/linux-64/polars-0.16.16-py311hfe55011_0.conda#e3570e974c324877bedecf02dc5257aa\n+https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.2-h3248436_0.conda#4dbd6c4bc33369751a4d728b392943ba\n+https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.1-h8ffa02c_2.conda#c264aea0e16bba26afa0a0940e954492\n+https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.21.12-py311hcafe171_0.conda#e50c8a6b26b30cc435a04391d654f572\n+https://conda.anaconda.org/conda-forge/linux-64/psycopg2-2.9.3-py311h968e94b_2.conda#fdbb71c126dfaa4149f026c31f536ca8\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n+https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n+https://conda.anaconda.org/conda-forge/linux-64/pymssql-2.2.5-py311ha362b79_2.tar.bz2#c953f09ff112a2363ebc1434fc2859f1\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n+https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n+https://conda.anaconda.org/conda-forge/linux-64/pytz-deprecation-shim-0.1.0.post0-py311h38be061_3.tar.bz2#8783590d2a26e07f0386342563c861a4\n+https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n+https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n+https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n+https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.5-py311h2b60523_2.tar.bz2#069246afc942fd3530060b8f349afa9b\n+https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-1.4.46-py311h2582759_0.conda#3030087ba2101543b8b82e2832a70063\n+https://conda.anaconda.org/conda-forge/linux-64/thrift-0.16.0-py311ha362b79_2.tar.bz2#d30537612b1a2b805c6735aaf97f9e07\n+https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/linux-64/watchdog-3.0.0-py311h38be061_0.conda#a3e24b38169e66795f7af4779ea337b3\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n+https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.4-h55805fa_1.tar.bz2#d127dc8efe24033b306180939e51e6af\n+https://conda.anaconda.org/conda-forge/linux-64/yarl-1.8.2-py311hd4cff14_0.conda#42c1455c6ccdb660f81e868675dae664\n+https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n+https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.2.7-h909e904_1.conda#7cb3fd9464ed9aaf8189837fe9d96c28\n+https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n+https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n+https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py311hd4cff14_1005.tar.bz2#9bdac7084ecfc08338bae1b976535724\n+https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.4-py311h42a1071_0.conda#34c95722eb879d7a9ee0546671084b2d\n+https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n+https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n+https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h7a142b4_6.conda#b7963c107ed1f6a95cadc244f95cd3cd\n+https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n+https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n+https://conda.anaconda.org/conda-forge/linux-64/google-crc32c-1.1.2-py311h98db957_4.tar.bz2#30fc7e9e67651173963320d38fb3cb12\n+https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n+https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n+https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda#448fe40d2fed88ccf4d9ded37cbb2b38\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n+https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n+https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.0-ha7026e8_0.conda#c948b920f45fd81a2dde8b1ab514cc84\n+https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.1-nompi_h34a3ff0_101.conda#9ce7f5bde721be2f82da9f861c57f1b3\n+https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-h221c8f1_23.conda#859297085081cfbc123dc60015864f6b\n+https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n+https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.1-py311h8597a09_0.conda#70c3b734ffe82c16b6d121aaa11929a8\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py311h2872171_0.conda#a129a2aa7f5c2f45808399d60c3080f2\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/linux-64/poppler-23.03.0-h091648b_0.conda#a449be485743e64ed48d340d5424774d\n+https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n+https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.1-py311h945b3ca_1.conda#0c2122f649780a766ec6b2b4fd83887f\n+https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n+https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n+https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n+https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n+https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n+https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n+https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n+https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hd532e3d_0.conda#6d97164f19dbd27575ef1899b02dc1e0\n+https://conda.anaconda.org/conda-forge/linux-64/tzlocal-4.3-py311h38be061_0.conda#bbf76fe49723742045e1d2fcd1a0a4e5\n+https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py311h4dd048b_3.tar.bz2#dbfea4376856bf7bd2121e719cf816e5\n+https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n+https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.4-py311h2582759_0.conda#0760bb979717fc0db601e34ede5fa4bc\n+https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.19.8-hf7fbfca_12.conda#c2940067a049037ec1789ccfcb853fb4\n+https://conda.anaconda.org/conda-forge/linux-64/black-23.1.0-py311h38be061_0.conda#c737160bd5ce6abee26abc6a9e8da79c\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n+https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n+https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n+https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.3.0-py311h38be061_0.conda#1dd43a18a75d59206019e2a2a28555e5\n+https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.6.2-h6c674c2_9.conda#d6023c0a9a1b0c04c78d0d33d98e6620\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n+https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n+https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.14-hd33c08f_0.conda#a8b9e35dd7be2c945b0de4fe19a7c3a9\n+https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n+https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n+https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.10.57-h17c43bd_8.conda#a318ddbd962b0ec5639cc4fb7e9b2230\n+https://conda.anaconda.org/conda-forge/linux-64/gdal-3.6.2-py311hadb6153_9.conda#0b35e6680807865ea017bec5c41422de\n+https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h90689f9_2.tar.bz2#957a0255ab58aaf394a91725d73ab422\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n+https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.54.4-h7abd40a_0.tar.bz2#921e53675ed5ea352f022b79abab076a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.1-py311h3f14cef_0.conda#193fd1cb5a7737422c8fa50c087f0e7a\n+https://conda.anaconda.org/conda-forge/linux-64/graphviz-7.1.0-h2e5815a_0.conda#e7ecda996c443142a0e9c379f3b28e48\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh41d4057_0.conda#c8f4db8b2fc42692b3b7f1e348b2ab59\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/linux-64/libarrow-11.0.0-h93537a5_13_cpu.conda#49d5c8c33c0d1db3362058d45da6af69\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n+https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n+https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n+https://conda.anaconda.org/conda-forge/linux-64/arrow-cpp-11.0.0-ha770c72_13_cpu.conda#26ab48029304dce678b7084206415e03\n+https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh210e3f2_0.conda#1b463a5f4b7c83f509f6a1168a6ef554\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n+https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n+https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.1-py311h8e6699e_0.conda#a9dba1242a54275e4914a2540f4eb233\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/linux-64/pyarrow-11.0.0-py311hbdf6286_13_cpu.conda#f221289ac50a72d575bd91d964418f81\n+https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n+https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.2-py311h103fc68_1.conda#1a69529b0bcf0e3a03e6585903659df7\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/linux-64/datafusion-0.7.0-py311hfe55011_0.conda#0085ebe708a84bcf58c203cc6c74ea73\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n+https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-0.7.1-py311h3f2ac15_0.conda#e6ef6bb8795678905d8d6deeb0f9ac89\n+https://conda.anaconda.org/conda-forge/linux-64/snowflake-connector-python-3.0.2-py311h4eb5c51_0.conda#69ed6757ee1e24e3727c5e3203666fca\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n", "linux-64-3.8.lock": "@@ -1,6 +1,6 @@\n # Generated by conda-lock.\n # platform: linux-64\n-# input_hash: 6aef5fddb7afbe59b633fecd654e13b9a3735cefbc6f41a6aa915bd6358945ce\n+# input_hash: c3bc56fa25393daa2334f7ad97656a25ac9826b71a69e367ee0a66dcde14e6f2\n @EXPLICIT\n https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81\n https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda#ff9f73d45c4a07d6f424495288a26080\n@@ -13,14 +13,14 @@ https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.\n https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2#1030b1f38c129f2634eae026f704fe60\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.8-3_cp38.conda#2f3f7af062b42d664117662612022204\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2#cd7a806282c16e1f2d39a7e80d3a3e0d\n https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2#cedcee7c064c01c403f962c9e8d3c373\n https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2#e4c94f80aef025c17ab0828cd85ef535\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.6.2-h7f98852_0.tar.bz2#ce69a062b3080485b760378841240634\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.8.14-h0b41bf4_0.conda#2512d4aa4007fdf7b705713d73bf6967\n https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2#a1fd65c7ccbf10880423d82bca54eb54\n https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.18.1-h7f98852_0.tar.bz2#f26ef8098fab1f719c91eb760d63381a\n https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2#c4fbad8d4bddeb3c085f18cbf97fbfad\n@@ -29,7 +29,7 @@ https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz\n https://conda.anaconda.org/conda-forge/linux-64/geos-3.11.1-h27087fc_0.tar.bz2#917b9a50001fffdd89b321b5dba31e55\n https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2#14947d8770185e5153fdd04d4673ed37\n https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2#cddaf2c63ea4a5901cf09524c490ecdc\n-https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h36c2ea0_2.tar.bz2#626e68ae9cc5912d6adb79d318cf962d\n+https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f\n https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2#b94cf2db16066b242ebd26db2facbd56\n https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2#8c54672728e8ec6aa6db90cf2806d220\n https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2#87473a15119779e021c314249d4b4aed\n@@ -37,14 +37,16 @@ https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda#c7a0692\n https://conda.anaconda.org/conda-forge/linux-64/json-c-0.16-hc379101_0.tar.bz2#0e2bca6857cb73acec30387fef7c3142\n https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3\n https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f\n-https://conda.anaconda.org/conda-forge/linux-64/libabseil-20220623.0-cxx17_h05df665_6.conda#39f6394ae835f0b16f01cbbd3bb1e8e2\n+https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230125.0-cxx17_hcb278e6_1.conda#a1c65f83198fd8d0328c0a6482c6f31b\n+https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda#0f683578378cddb223e7fd24f785ab2a\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2#9194c9bf9428035a05352d031462eae4\n https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400\n-https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.14-h166bdaf_0.tar.bz2#fc84a0446e4e4fb882e78d786cfb9734\n+https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda#5cc781fd91968b11a8a7fdbee0982676\n https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2#6f8720dff19e17ce5d48cfe7f3d2f0a3\n https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3\n https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2#b62b52da46c39ee2bc3c162ac7f1804d\n https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2#39b1328babf85c7c3a61636d9cd50206\n+https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda#28bfe2cb11357ccc5be21101a6b7ce86\n https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2#8c5963a49b6035c40646a763293fbb35\n https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2#c3788462a6fbddafdb413a9f9053e58d\n https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-h9c3ff4c_4.tar.bz2#d87fbe9c0ff589e802ff13872980bfd9\n@@ -56,80 +58,84 @@ https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz\n https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0\n https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2#4acfc691e64342b9dae57cf2adc63238\n https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1\n-https://conda.anaconda.org/conda-forge/linux-64/openssl-1.1.1t-h0b41bf4_0.conda#a35dc66c4cee8c4399507d14cf1501b1\n+https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.0-h0b41bf4_0.conda#2d833be81a21128e317325a01326d36f\n https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2#660e72c82f2e75a6b3fe6a6e75c79f19\n https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036\n-https://conda.anaconda.org/conda-forge/linux-64/re2-2022.06.01-h27087fc_1.conda#68070cd09c67755f37e0db13f00a008b\n-https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.9-hbd366e4_2.tar.bz2#48018e187dacc6002d3ede9c824238ac\n-https://conda.anaconda.org/conda-forge/linux-64/tzcode-2022g-h166bdaf_0.conda#229620ecbc0bf2f9f04b888fd3478f79\n+https://conda.anaconda.org/conda-forge/linux-64/re2-2023.02.02-hcb278e6_0.conda#ecfc7890f1bd597ba55fbda1396f46fe\n+https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda#e6d228cd0bb74a51dd18f5bfce0b4115\n+https://conda.anaconda.org/conda-forge/linux-64/tzcode-2023b-h0b41bf4_0.conda#54e266a59d6da0d119461e830a41f1db\n https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2#d6b0b50b49eccfe0be0373be628be0f3\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2#bf6f803a544f26ebbdc3bfff272eb179\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2#be93aabceefa2fac576e971aef407908\n https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2#06feff3d2634e3097ce2fe681474b534\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2#1e15f6ad85a7d743a2ac68dae6c82b98\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87\n https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15\n https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0\n https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2#4cb3ad778ec2d5a7acbdf254eb1c42ae\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.11-h95a6274_0.tar.bz2#d4e7b241fb22dd3d7be1171f813d5da3\n-https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.11-ha31a3da_7.tar.bz2#2fdb96aaab883abc0766ff76c0a34483\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.21-h48707d8_2.conda#de2efba4b6f1635d5682728460808487\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.16-h03acc5a_5.conda#6bc5d85dbafdd7acbcc243793ae8fa05\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.8-h03acc5a_0.conda#347cdfafa34723feda1beed53ac7d092\n+https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.14-h03acc5a_5.conda#621ec569388ccd005e974a8cb66ab869\n https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2#b31f3565cb84435407594e548a2fb7b2\n https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2#d9b7a8639171f6c6fa0a983edabcfe2b\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2#4ae4d7795d33e02bd20f6b23d91caf82\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2#04bac51ba35ea023dc48af73c1c88c25\n https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1\n-https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h9b69904_4.tar.bz2#390026683aef81db27ff1b8570ca1336\n-https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.51.0-hdcd2b5c_0.conda#c42b460bae0365fb9777b1ff9d09a554\n+https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2#4a049fc560e00e43151dc51368915fdd\n+https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda#613955a50485812985c059e7b269f42e\n https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda#e1c890aebdebbfbf87e2c917187b4416\n-https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.20.2-h6239696_0.tar.bz2#dd9c398d02aa82219a4ea5fa69739ae7\n+https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.21.12-h3eb15da_0.conda#4b36c68184c6c85d88c6e595a32a1ede\n https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-ha49c73b_12.tar.bz2#d2047c6de84b07a1db9cbe1683939956\n https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2#2e5f9a37d487e1019fd4d8113adb2f9f\n-https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-haa6b8db_3.tar.bz2#89acee135f0809a18a1f4537390aa2dd\n+https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-hf14f497_3.tar.bz2#d85acad4b47dff4e3def14a769a97906\n https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2#b3653fdc58d03face9724f602218a904\n-https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2#3b933ea47ef8f330c4c068af25fcd6a8\n-https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc869a4a_1.tar.bz2#7a268cf1386d271e576e35ae82149ef2\n-https://conda.anaconda.org/conda-forge/linux-64/pandoc-2.19.2-h32600fe_1.tar.bz2#35a82883468c85ac8bf41f083c1933cf\n+https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-hca2bb57_4.conda#bb808b654bdc3c783deaf107a2ffb503\n+https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc929e4a_1.tar.bz2#5b122b50e738c4be5c3f2899f010d7cf\n+https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.1.1-h32600fe_0.conda#68dcea6605bcebb17215d2b4efb3e1cf\n https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2#69e2c796349cd9b273890bee0febfe1b\n-https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2#db2ebbe2943aae81ed051a6a9af8e0fa\n-https://conda.anaconda.org/conda-forge/linux-64/s2n-1.0.10-h9b69904_0.tar.bz2#9708c3ac26c20b4c4549cbe8fef937eb\n+https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4\n+https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.41-h3358134_0.conda#6e3b75864fd97aef652c0d61bc2804be\n https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2#5b8c42eb62e9fc961af70bdd6a26e168\n+https://conda.anaconda.org/conda-forge/linux-64/ucx-1.14.0-ha0ee010_0.conda#7f34aae830e22c4212c14bd456c1796c\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2#9e856f78d5c80d5a78f61e72d1d473a3\n https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2#21743a8d2ea0c8cfbbf8fe489b0347df\n https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2#4b11e365c0275b808be78b30f904e295\n https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda#6b63daed8feeca47be78f323e793d555\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.10.5-hfb6a706_0.tar.bz2#47d6b88b0c42a8c9877f3993b49f052d\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.19-h5b20300_3.conda#2f8cdd45bb9983aa337a6357b12951c5\n https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.3-hafa529b_0.conda#bcf0664a2dbbbb86cbd4c1e6ff10ddd6\n https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.78.0-h75c5d50_1.tar.bz2#accc1f1ca33809bbf9ad067a0a69e236\n https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2#e5613f2bc717e9945840ff474419b8e4\n https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda#e1232042de76d24539a436d37597eb06\n-https://conda.anaconda.org/conda-forge/linux-64/grpc-cpp-1.47.1-hbad87ad_6.tar.bz2#6d0f1ddd701aebf007274ee5ea9a3018\n https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_5.tar.bz2#ee08782aff2ff9b3291c967fa6bc7336\n-https://conda.anaconda.org/conda-forge/linux-64/krb5-1.19.3-h3790be6_0.tar.bz2#7d862b05445123144bec92cb1acc8ef8\n+https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda#89a41adce7106749573d883b2f657d78\n https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2#20bae26d0a1db73f758fc3754cab4719\n https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2#ed5349aa96776e00b34eccecf4a948fe\n+https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.52.1-hcf146ea_1.conda#999b2527de4ab2a3472d51a5aab719c4\n https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2#955d993f41f9354bf753d29864ea20ad\n-https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.16.0-h491838f_2.tar.bz2#9134d477d02ad9264c6ee359fa36702c\n-https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.4.0-h82bc61c_5.conda#e712a63a21f9db647982971dc121cdcf\n-https://conda.anaconda.org/conda-forge/linux-64/nss-3.88-he45b914_0.conda#d7a81dfb99ad8fbb88872fb7ec646e6c\n-https://conda.anaconda.org/conda-forge/linux-64/orc-1.7.6-h6c59b99_0.tar.bz2#7978db6ca7b2932ccf9d3c36093f8281\n-https://conda.anaconda.org/conda-forge/linux-64/python-3.8.15-h257c98d_0_cpython.conda#485151f9b0c1cfb2375b6c4995ac52ba\n+https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.18.1-h5e4af38_0.conda#a2fab690ff5efa0d31cf5e27cd433faa\n+https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda#2e648a34072eb39d7c4fc2a9981c5f0c\n+https://conda.anaconda.org/conda-forge/linux-64/nss-3.89-he45b914_0.conda#2745719a58eeaab6657256a3f142f099\n+https://conda.anaconda.org/conda-forge/linux-64/orc-1.8.3-hfdbbad2_0.conda#8aafd0a5ba97bf0cc451550b147a4e0a\n+https://conda.anaconda.org/conda-forge/linux-64/python-3.8.16-he550d4f_1_cpython.conda#9de84cccfbc5f8350a3667bb6ef6fc30\n https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.40.0-h4ff8645_0.tar.bz2#bb11803129cbbb53ed56f9506ff74145\n https://conda.anaconda.org/conda-forge/linux-64/unixodbc-2.3.10-h583eb01_0.tar.bz2#906893193434d971b6f92839086f430d\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2#12a61e640b8894504326aadafccbb790\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h0b41bf4_0.conda#ea8fbfeb976ac49cbeb594e985393514\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2#6c72ec3e660a51736913ef6ea68c454b\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.7-h3541f99_13.tar.bz2#39768ba0fe69c241d54703a7f5e3119f\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.20-h00877a2_4.conda#cd282ae47b410df93a192b16399100d0\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.6-hf342b9f_0.conda#ddec786d29917630faee14b54aac584d\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n-https://conda.anaconda.org/conda-forge/linux-64/bitarray-2.7.2-py38h1de0b5d_0.conda#e1fb81e8fd28a040f878740fb6e2ea2b\n+https://conda.anaconda.org/conda-forge/linux-64/bitarray-2.7.3-py38h1de0b5d_0.conda#0a7c44f6b1c850f41c631bdc3c086cdd\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2#2ff08978892a3e8b954397c461f18418\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/linux-64/clickhouse-cityhash-1.0.2.3-py38hfa26641_4.tar.bz2#bb3017877771e658fba9231521dc8273\n@@ -139,31 +145,32 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.6.6-py38h8dc9893_0.conda#155f4cc0da35e5801e30783065768e9a\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n-https://conda.anaconda.org/conda-forge/noarch/flit-core-3.8.0-pyhd8ed1ab_0.tar.bz2#6d5e56de2e65da7aa35fd10131226efa\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d\n-https://conda.anaconda.org/conda-forge/linux-64/freetds-1.3.16-h41fea10_0.conda#912ba9630b3d6287760536bf041e78b0\n+https://conda.anaconda.org/conda-forge/linux-64/freetds-1.1.15-h1770fba_1.tar.bz2#9ebc291d4a9f33099a59a47f9af72a17\n https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.3.3-py38h0a891b7_0.tar.bz2#b68f1b24442f2c93d0a4651341c88345\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.8-hff1cb4f_1.tar.bz2#a61c6312192e7c9de71548a6706a21e6\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.10-h05c8ddd_0.conda#1a109126a43003d65b39c1cad656bc9b\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/linux-64/greenlet-2.0.2-py38h8dc9893_0.conda#f20dc3894796d8a3a2ebd3e2854a5dee\n+https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.52.1-py38h8dc9893_1.conda#a0be4b8de15ef01db2eab431379edd1a\n https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h64030ff_2.tar.bz2#112eb9b5b93f0c02e59aea4fd1967363\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.2-pyhd8ed1ab_0.conda#1a7584b46014b66568069cb6ef2253bf\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py38h43d8883_1.tar.bz2#41ca56d5cac7bfc7eb4fcdbee878eb84\n-https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-h6ed2654_0.tar.bz2#dcc588839de1445d90995a0a2c4f3a39\n-https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.86.0-h7bff187_1.tar.bz2#5e5f33d81f31598d87f9b849f73c30e3\n+https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-hfd0df8a_0.conda#aa8840cdf17ef0c6084d1e24abc7a28b\n+https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.88.1-hdc1c0ab_1.conda#3d1189864d1c0ed2a5919cb067b5903d\n https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h37653c0_1015.tar.bz2#37d3747dd24d604f63d2610910576e63\n-https://conda.anaconda.org/conda-forge/linux-64/libpq-15.1-hf695f80_1.conda#12a501b9ee0927abfc95083303b6c89f\n-https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h522a892_0.tar.bz2#802e43f480122a85ae6a34c1909f8f98\n+https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda#4654b17eccaba55b8581d6b9c77f53cc\n+https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h1daa5a0_1.conda#77003f63d1763c1e6569a02c1742c9f4\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/linux-64/lz4-4.3.2-py38hd012fdc_0.conda#96568ab147a75c61657d079dc1a9b427\n https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py38h1de0b5d_0.conda#6d97b5d6f06933ab653f1862ddf6e33e\n@@ -171,24 +178,23 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.4-py38h43d8883_1.tar.bz2#c7791d28af035651ed6ecac71096c76d\n+https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.5-py38hfbd4bf9_0.conda#5401b83c1007f408d0c74e23fa9b5eff\n https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py38h1de0b5d_0.conda#3b6e650480e6b628b2922dd3acd75fd6\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py38h10c12cc_0.conda#05592c85b9f6931dc2df1e80c0d56294\n-https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h7d73246_1.tar.bz2#a11b4df9271a8d7917686725aa04c8f2\n+https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda#5ce6a42505c6e9e6151c54c3ec8d68ea\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n-https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.16.0-pyhd8ed1ab_0.conda#8efaddc1c8b8ce262c4d1a7c6571c799\n https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py38h0a891b7_0.tar.bz2#fe2ef279417faa1af0adf178de2032f7\n https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263\n https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n@@ -199,30 +205,24 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/linux-64/pycryptodomex-3.16.0-py38h0a891b7_0.conda#4e4e73fd062174c4f78c7a13b852f783\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/linux-64/pyrsistent-0.19.3-py38h1de0b5d_0.conda#a33157288d499397a2a56da4d724948d\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.6-pyhd8ed1ab_0.conda#525828457f46cf124526760c5400982d\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py38h0a891b7_5.tar.bz2#0856c59f9ddb710c640dc0428d66b1b7\n-https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.0-py38he24dcef_0.conda#b7527850daeb11074c2d316fdb9e573e\n-https://conda.anaconda.org/conda-forge/linux-64/regex-2022.10.31-py38h0a891b7_0.tar.bz2#307f1db6d6b682f961385e2201cec729\n-https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f\n+https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.2-py38he24dcef_0.conda#2809c142d8afb750687432f64da8a0a9\n+https://conda.anaconda.org/conda-forge/linux-64/regex-2023.3.23-py38h1de0b5d_0.conda#a02e83e3d2a7fc72112d63354f3a6b9e\n https://conda.anaconda.org/conda-forge/linux-64/rtree-1.0.1-py38h02d302b_1.tar.bz2#b85cc606fa58810cd623e6853aa58322\n-https://conda.anaconda.org/conda-forge/linux-64/ruff-0.0.249-py38h3fb8c2e_0.conda#4688382caf3634fed64b34ead5375965\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.0-pyhd8ed1ab_0.tar.bz2#edab14119efe85c3bf131ad747e9005c\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/linux-64/ruff-0.0.259-py38h3fb8c2e_0.conda#1c52f6929a733b237ed967813dec0577\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n-https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -232,23 +232,24 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py38h0a891b7_1.tar.bz2#358beb228a53b5e1031862de3525d1d3\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py38h0a891b7_0.tar.bz2#44421904760e9f5ae2035193e04360f0\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.5.1-pyhd8ed1ab_0.conda#2a914654b9ade742049dab13e29571c6\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2#536cc5db4d0a3ba0630541aec064b5e4\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2#f59c1242cc1dd93e72c2ee2b360979eb\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n-https://conda.anaconda.org/conda-forge/noarch/anyio-3.6.2-pyhd8ed1ab_0.tar.bz2#8ada050fa88f26916fc1e76e368a49fd\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.8.186-hecaee15_4.tar.bz2#e29dc8e8611b70cdfcc3139dba6e9001\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.6.26-hf365957_1.conda#5f2aefd743f82e4177c997c314a55f22\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.8.6-hc4349f7_12.conda#0ba6aa71b51d31d48195b26f343d926f\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py38h0a891b7_7.tar.bz2#003b3a64d3cfff545dd0c12732c5270f\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2#d1a88f3ed5b52e1024b80d4bcd26a7a0\n@@ -256,191 +257,188 @@ https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py38h4a40e3a_3.conda\n https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.2.0-hd9d235c_0.conda#8c57a9adbafd87f5eff842abde599cb4\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py38hfbd4bf9_0.conda#638537863b298151635c05c762a997ab\n-https://conda.anaconda.org/conda-forge/linux-64/coverage-7.1.0-py38h1de0b5d_0.conda#b3bb4543dd1be00a686c5545293432cc\n-https://conda.anaconda.org/conda-forge/linux-64/curl-7.86.0-h7bff187_1.tar.bz2#bc9567c50833f4b0d36b25caca7b34f8\n+https://conda.anaconda.org/conda-forge/linux-64/coverage-7.2.2-py38h1de0b5d_0.conda#fca73ffc742e51b98eaf7c9114b6c60d\n+https://conda.anaconda.org/conda-forge/linux-64/curl-7.88.1-hdc1c0ab_1.conda#2016c398f234cfa354ea704c6731b5d5\n https://conda.anaconda.org/conda-forge/linux-64/cytoolz-0.12.0-py38h0a891b7_1.tar.bz2#183f6160ab3498b882e903b06be7d430\n-https://conda.anaconda.org/conda-forge/linux-64/fastavro-1.7.1-py38h1de0b5d_0.conda#1bb12697a36ddcaf5603ed8ef8f374d4\n-https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py38h0a891b7_1.tar.bz2#62c89ddefed9c5835e228a32b357a28d\n+https://conda.anaconda.org/conda-forge/linux-64/fastavro-1.7.3-py38h1de0b5d_0.conda#a159a0ff7a53d0c2087179749a13ba9b\n+https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.39.2-py38h1de0b5d_0.conda#affec6061f9a2d056db74561477a62b5\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.47.1-py38h5b6373e_6.tar.bz2#d49c41d0b1e691d7c8be386f0e83dee4\n-https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h2386368_100.tar.bz2#b014a5f912e0193783e48086b7bb3995\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h4df4325_101.conda#162a25904af6586b234b2dd52ee99c61\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n-https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h18fbbfe_3.tar.bz2#ea9758cf553476ddf75c789fdd239dc5\n-https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.1.0-h9ebe8e8_2.tar.bz2#e8ae8bddbc20f598706dc3ae15dbf95e\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h5aea950_4.conda#82ef57611ace65b59db35a9687264572\n+https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.8.0-h0bc5f78_1.conda#bdf605748604b09602f3c841abdba817\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n-https://conda.anaconda.org/conda-forge/linux-64/maturin-0.14.13-py38h9fda977_0.conda#07548beda349117ae97a174bc27741d0\n+https://conda.anaconda.org/conda-forge/linux-64/maturin-0.14.16-py38h9fda977_0.conda#44296071d5866bab1da7c880414bc602\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py38h9eb91d8_3.tar.bz2#61dc7b3140b7b79b1985b53d52726d74\n+https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py38hde6dc18_1.conda#3de5619d3f556f966189e5251a266125\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.1-hdeef612_1.conda#f89d4c616e48fc8976edaf3b6a9dde0f\n-https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.0-h93bde94_0.tar.bz2#255c7204dda39747c3ba380d28b026d7\n-https://conda.anaconda.org/conda-forge/linux-64/protobuf-3.20.2-py38hfa26641_1.conda#c8173cbe54565255c8e9965763bce393\n+https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.2-h3248436_0.conda#4dbd6c4bc33369751a4d728b392943ba\n+https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.1-h8ffa02c_2.conda#c264aea0e16bba26afa0a0940e954492\n+https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.21.12-py38h8dc9893_0.conda#237767c44dee8908f533454f9f3cdaae\n https://conda.anaconda.org/conda-forge/linux-64/psycopg2-2.9.3-py38h0ca591d_2.conda#d0b1c5e0fa3db14fd5c390cd1282c20e\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/linux-64/pymssql-2.2.7-py38h8dc9893_0.conda#24503b47e01adda0860e1e9efa6341c2\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/linux-64/pymssql-2.2.5-py38hfa26641_2.tar.bz2#dff8c64010a97809c1e347e6861f6db7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n-https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520\n https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.5-py38hafd38ec_2.tar.bz2#8df75c6a8c1deac4e99583ec624ff327\n https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-1.4.46-py38h1de0b5d_0.conda#c4a14465b79d2e799f24c67d718410e3\n-https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda#3788984d535770cad699efaeb6cb3037\n https://conda.anaconda.org/conda-forge/linux-64/thrift-0.16.0-py38hfa26641_2.tar.bz2#0b8284fee57cd0c59828174238047263\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/linux-64/watchdog-2.2.1-py38h578d9bd_0.conda#409c1af0d9b411bf50c848428d36d5bf\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/linux-64/watchdog-3.0.0-py38h578d9bd_0.conda#41680fdab13981c012669868b4db1c1f\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.4-h55805fa_1.tar.bz2#d127dc8efe24033b306180939e51e6af\n https://conda.anaconda.org/conda-forge/linux-64/yarl-1.8.2-py38h0a891b7_0.conda#221202cfdefa7ab301209c9f8e35a00d\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n-https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py38h0a891b7_3.tar.bz2#efcaa056d265a3138d2038a4b6b68791\n-https://conda.anaconda.org/conda-forge/linux-64/arrow-cpp-9.0.0-py38he270906_2_cpu.tar.bz2#5d57f15a58fd3c6e7923320960c3f131\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.2.7-h909e904_1.conda#7cb3fd9464ed9aaf8189837fe9d96c28\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py38h0a891b7_1005.tar.bz2#e99e08812dfff30fdd17b3f8838e2759\n-https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.4-py38h2b5fc30_0.conda#6929a22f82fc8b7b0432b07be73796e2\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.4-py38h80a4ca7_0.conda#d3c4698fd7475640f4d9eff8d792deac\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-ha76d385_4.tar.bz2#6a613710a0f19aba3a5dfe83bf1c1c0f\n+https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h7a142b4_6.conda#b7963c107ed1f6a95cadc244f95cd3cd\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/linux-64/google-crc32c-1.1.2-py38h57c428a_4.tar.bz2#17d0194449074c5bb7f227b234f577d3\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda#448fe40d2fed88ccf4d9ded37cbb2b38\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.0-ha7026e8_0.conda#c948b920f45fd81a2dde8b1ab514cc84\n-https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.8.1-nompi_h261ec11_106.tar.bz2#9b25de670ce5753a33c18b1090d1d3bf\n-https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-h7c8129e_22.tar.bz2#23abed7562ad969493b89ad0e5f5c521\n+https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.1-nompi_h34a3ff0_101.conda#9ce7f5bde721be2f82da9f861c57f1b3\n+https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-h221c8f1_23.conda#859297085081cfbc123dc60015864f6b\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py38hdc8b05c_0.conda#5073966d63a54434d2a2fc41d325b072\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/linux-64/polars-0.16.7-py38h9fda977_0.conda#e9398ee90ac1fb8fe80130db7b98885d\n-https://conda.anaconda.org/conda-forge/linux-64/poppler-22.12.0-h92391eb_0.conda#7ad6d858f5615f9b0e9e4bd60395ea75\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/linux-64/polars-0.16.16-py38h9fda977_0.conda#9b3be213431657ea28efe779fda637c0\n+https://conda.anaconda.org/conda-forge/linux-64/poppler-23.03.0-h091648b_0.conda#a449be485743e64ed48d340d5424774d\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.1-py38hf928c62_0.conda#bb6d6874f1dcafdd2dce7dfd54d2b96c\n+https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.1-py38h58d5fe2_1.conda#5286eaec7e93586e4ae05e7d658cd3e2\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n https://conda.anaconda.org/conda-forge/linux-64/pytz-deprecation-shim-0.1.0.post0-py38h578d9bd_3.tar.bz2#e3b86d38943bd7d6ed6122a7e142bf5a\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hc2ae436_0.conda#8cb0b84db929d2b32fffbd93c497e5ee\n+https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hd532e3d_0.conda#6d97164f19dbd27575ef1899b02dc1e0\n+https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py38h43d8883_3.tar.bz2#82b3797d08a43a101b645becbb938e65\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.4-py38h1de0b5d_0.conda#97eb5f64bbb0b5847d5dbdfbf1ddadaf\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-21.3.0-pyhd8ed1ab_0.tar.bz2#a0b402db58f73aaab8ee0ca1025a362e\n+https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.19.8-hf7fbfca_12.conda#c2940067a049037ec1789ccfcb853fb4\n https://conda.anaconda.org/conda-forge/linux-64/black-23.1.0-py38h578d9bd_0.conda#a47f6789960a5f7455799605586b617f\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.2.0-py38h578d9bd_0.conda#7372cbf4e1dccc1a6358c43d7487c322\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.6.3-pyhd8ed1ab_0.conda#d98c5196ab6ffeb0c2feca2912801353\n-https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.6.1-h896b04b_1.conda#0ef3cdacbcefb93d2e94b017db6d9c8a\n-https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.0-py38hd6c3c57_0.conda#dd63f6486ba95c036b6bfe0b5c53d875\n+https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.3.0-py38h578d9bd_0.conda#d75b783a348cf33c6d3d75480300fecd\n+https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.6.2-h6c674c2_9.conda#d6023c0a9a1b0c04c78d0d33d98e6620\n+https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.1-py38hd6c3c57_0.conda#3b8ba76acae09fbd4b2247c4ee4c0324\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.13-hd33c08f_0.conda#e3b13445b8ee9d6a3d53a714f89ccd76\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.14-hd33c08f_0.conda#a8b9e35dd7be2c945b0de4fe19a7c3a9\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/linux-64/tzlocal-4.2-py38h578d9bd_2.tar.bz2#c03287c09bf8c4ccdfc7b1a2df094f1e\n+https://conda.anaconda.org/conda-forge/linux-64/tzlocal-4.3-py38h578d9bd_0.conda#a87c25e71408ea93e3cf38d2503e6669\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.10.57-h17c43bd_8.conda#a318ddbd962b0ec5639cc4fb7e9b2230\n https://conda.anaconda.org/conda-forge/linux-64/clickhouse-driver-0.2.5-py38h0a891b7_0.conda#76149a89552ea2a138c6425abb7cdefd\n-https://conda.anaconda.org/conda-forge/linux-64/gdal-3.6.1-py38h99c2c3e_1.conda#e85c717e9362ca0691096e6fc178de0e\n+https://conda.anaconda.org/conda-forge/linux-64/gdal-3.6.2-py38h58634bd_9.conda#8c1d5b9547768e355a247cfc3df9fb99\n https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h90689f9_2.tar.bz2#957a0255ab58aaf394a91725d73ab422\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda#4703355103974293bbd8a32449b3ff28\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.54.4-h7abd40a_0.tar.bz2#921e53675ed5ea352f022b79abab076a\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n-https://conda.anaconda.org/conda-forge/linux-64/pyarrow-9.0.0-py38h097c49a_2_cpu.tar.bz2#86671f0fe2da758bd20bf4434b16599c\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/linux-64/datafusion-0.7.0-py38h9fda977_0.conda#52495a8228668ed03c13ea8d7c3cce40\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/linux-64/fiona-1.8.22-py38h85a5e0f_5.conda#64b9f580d12189fa35c480719efd518a\n-https://conda.anaconda.org/conda-forge/linux-64/graphviz-7.0.5-h2e5815a_0.conda#96bf06b24d74a5bf826485e9032c9312\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh210e3f2_0.conda#f4c469f01c4aa05f77ab2f70c2fbbef2\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.1-py38h85a5e0f_0.conda#809691aba60f9d63d1d3c4e52f716d16\n+https://conda.anaconda.org/conda-forge/linux-64/graphviz-7.1.0-h2e5815a_0.conda#e7ecda996c443142a0e9c379f3b28e48\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh41d4057_0.conda#c8f4db8b2fc42692b3b7f1e348b2ab59\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/linux-64/libarrow-11.0.0-h93537a5_13_cpu.conda#49d5c8c33c0d1db3362058d45da6af69\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-0.7.0-py38h8db18de_1.conda#80334c349cb162ca40209f8044e1a129\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/linux-64/arrow-cpp-11.0.0-ha770c72_13_cpu.conda#26ab48029304dce678b7084206415e03\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh210e3f2_0.conda#1b463a5f4b7c83f509f6a1168a6ef554\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/linux-64/snowflake-connector-python-2.8.3-py38hd7a726b_0.conda#d79759301cabe7f80dc736556b9df829\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.3.0-pyhd8ed1ab_0.conda#644c60cdd1e85407fc28b9085438c7a0\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.0-py38h10c12cc_2.conda#d6a3defdc4ab4acd69c04c8ef73d9b57\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.1-py38h10c12cc_0.conda#1cbc47bb9a600ce4a49d8da797d375bf\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n-https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.2-pyhd8ed1ab_0.tar.bz2#40be846cd4e78672a40e43db9dae753c\n+https://conda.anaconda.org/conda-forge/linux-64/pyarrow-11.0.0-py38hf05218d_13_cpu.conda#115e8efa8efec9d2925d24018299a6bc\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.1-py38h1e1a916_0.conda#77841d41b4928e10aba52fb485cb7f5c\n-https://conda.anaconda.org/conda-forge/linux-64/google-cloud-bigquery-core-3.4.2-py38h578d9bd_0.conda#19ca445749c30988d969213c37219824\n+https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.2-py38hd4b6e60_1.conda#63220c9150e5af9d41e0c311969af04c\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/linux-64/datafusion-0.7.0-py38h9fda977_0.conda#52495a8228668ed03c13ea8d7c3cce40\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n-https://conda.anaconda.org/conda-forge/noarch/nbclassic-0.5.2-pyhd8ed1ab_0.conda#c5039404bd47fbdc811b5e9282c51afe\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-0.7.1-py38hc166876_0.conda#a545037c993c4fc552e5241c2eb2729f\n+https://conda.anaconda.org/conda-forge/linux-64/snowflake-connector-python-3.0.2-py38hc166876_0.conda#707d8d3e030d04ec6eedc3ddefa7b4d4\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/notebook-6.5.2-pyha770c72_1.tar.bz2#7bf26ca095481f206e6f9dd7681085fe\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.1-pyha770c72_0.tar.bz2#03cd073d4dc0623b857bf9e175d0f736\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.7.1-pyhd8ed1ab_0.tar.bz2#96ba78bf526df670bf9562d6100eb627\n-https://conda.anaconda.org/conda-forge/linux-64/google-cloud-bigquery-3.4.2-py38h578d9bd_0.conda#c711eaa01acb06524e25a70cdf458e6b\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n", "linux-64-3.9.lock": "@@ -1,6 +1,6 @@\n # Generated by conda-lock.\n # platform: linux-64\n-# input_hash: dff7f7654e544dee36e375397820eaa36a102f153d8d750db4d6fbeaa1607e92\n+# input_hash: 66beede71ed2acd3e40122bf6226a5dfd9ae0bfc2edcb377ba742057d10a0222\n @EXPLICIT\n https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81\n https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda#ff9f73d45c4a07d6f424495288a26080\n@@ -13,14 +13,14 @@ https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.\n https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2#1030b1f38c129f2634eae026f704fe60\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-3_cp39.conda#0dd193187d54e585cac7eab942a8847e\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2#cd7a806282c16e1f2d39a7e80d3a3e0d\n https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2#cedcee7c064c01c403f962c9e8d3c373\n https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2#e4c94f80aef025c17ab0828cd85ef535\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.6.2-h7f98852_0.tar.bz2#ce69a062b3080485b760378841240634\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.8.14-h0b41bf4_0.conda#2512d4aa4007fdf7b705713d73bf6967\n https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2#a1fd65c7ccbf10880423d82bca54eb54\n https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.18.1-h7f98852_0.tar.bz2#f26ef8098fab1f719c91eb760d63381a\n https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2#c4fbad8d4bddeb3c085f18cbf97fbfad\n@@ -29,7 +29,7 @@ https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz\n https://conda.anaconda.org/conda-forge/linux-64/geos-3.11.1-h27087fc_0.tar.bz2#917b9a50001fffdd89b321b5dba31e55\n https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2#14947d8770185e5153fdd04d4673ed37\n https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2#cddaf2c63ea4a5901cf09524c490ecdc\n-https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h36c2ea0_2.tar.bz2#626e68ae9cc5912d6adb79d318cf962d\n+https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f\n https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2#b94cf2db16066b242ebd26db2facbd56\n https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2#8c54672728e8ec6aa6db90cf2806d220\n https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2#87473a15119779e021c314249d4b4aed\n@@ -37,14 +37,16 @@ https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda#c7a0692\n https://conda.anaconda.org/conda-forge/linux-64/json-c-0.16-hc379101_0.tar.bz2#0e2bca6857cb73acec30387fef7c3142\n https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3\n https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f\n-https://conda.anaconda.org/conda-forge/linux-64/libabseil-20220623.0-cxx17_h05df665_6.conda#39f6394ae835f0b16f01cbbd3bb1e8e2\n+https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230125.0-cxx17_hcb278e6_1.conda#a1c65f83198fd8d0328c0a6482c6f31b\n+https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda#0f683578378cddb223e7fd24f785ab2a\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2#9194c9bf9428035a05352d031462eae4\n https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400\n-https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.14-h166bdaf_0.tar.bz2#fc84a0446e4e4fb882e78d786cfb9734\n+https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda#5cc781fd91968b11a8a7fdbee0982676\n https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2#6f8720dff19e17ce5d48cfe7f3d2f0a3\n https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3\n https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2#b62b52da46c39ee2bc3c162ac7f1804d\n https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2#39b1328babf85c7c3a61636d9cd50206\n+https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda#28bfe2cb11357ccc5be21101a6b7ce86\n https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2#8c5963a49b6035c40646a763293fbb35\n https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2#c3788462a6fbddafdb413a9f9053e58d\n https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-h9c3ff4c_4.tar.bz2#d87fbe9c0ff589e802ff13872980bfd9\n@@ -56,81 +58,85 @@ https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz\n https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0\n https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2#4acfc691e64342b9dae57cf2adc63238\n https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1\n-https://conda.anaconda.org/conda-forge/linux-64/openssl-1.1.1t-h0b41bf4_0.conda#a35dc66c4cee8c4399507d14cf1501b1\n+https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.0-h0b41bf4_0.conda#2d833be81a21128e317325a01326d36f\n https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2#660e72c82f2e75a6b3fe6a6e75c79f19\n https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036\n-https://conda.anaconda.org/conda-forge/linux-64/re2-2022.06.01-h27087fc_1.conda#68070cd09c67755f37e0db13f00a008b\n-https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.9-hbd366e4_2.tar.bz2#48018e187dacc6002d3ede9c824238ac\n-https://conda.anaconda.org/conda-forge/linux-64/tzcode-2022g-h166bdaf_0.conda#229620ecbc0bf2f9f04b888fd3478f79\n+https://conda.anaconda.org/conda-forge/linux-64/re2-2023.02.02-hcb278e6_0.conda#ecfc7890f1bd597ba55fbda1396f46fe\n+https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda#e6d228cd0bb74a51dd18f5bfce0b4115\n+https://conda.anaconda.org/conda-forge/linux-64/tzcode-2023b-h0b41bf4_0.conda#54e266a59d6da0d119461e830a41f1db\n https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2#d6b0b50b49eccfe0be0373be628be0f3\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2#bf6f803a544f26ebbdc3bfff272eb179\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2#be93aabceefa2fac576e971aef407908\n https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2#06feff3d2634e3097ce2fe681474b534\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2#1e15f6ad85a7d743a2ac68dae6c82b98\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87\n https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15\n https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0\n https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2#4cb3ad778ec2d5a7acbdf254eb1c42ae\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.11-h95a6274_0.tar.bz2#d4e7b241fb22dd3d7be1171f813d5da3\n-https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.11-ha31a3da_7.tar.bz2#2fdb96aaab883abc0766ff76c0a34483\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.21-h48707d8_2.conda#de2efba4b6f1635d5682728460808487\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.16-h03acc5a_5.conda#6bc5d85dbafdd7acbcc243793ae8fa05\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.8-h03acc5a_0.conda#347cdfafa34723feda1beed53ac7d092\n+https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.14-h03acc5a_5.conda#621ec569388ccd005e974a8cb66ab869\n https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2#b31f3565cb84435407594e548a2fb7b2\n https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2#d9b7a8639171f6c6fa0a983edabcfe2b\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2#4ae4d7795d33e02bd20f6b23d91caf82\n https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2#04bac51ba35ea023dc48af73c1c88c25\n https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1\n-https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h9b69904_4.tar.bz2#390026683aef81db27ff1b8570ca1336\n-https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.51.0-hdcd2b5c_0.conda#c42b460bae0365fb9777b1ff9d09a554\n+https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2#4a049fc560e00e43151dc51368915fdd\n+https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda#613955a50485812985c059e7b269f42e\n https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda#e1c890aebdebbfbf87e2c917187b4416\n-https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.20.2-h6239696_0.tar.bz2#dd9c398d02aa82219a4ea5fa69739ae7\n+https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.21.12-h3eb15da_0.conda#4b36c68184c6c85d88c6e595a32a1ede\n https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-ha49c73b_12.tar.bz2#d2047c6de84b07a1db9cbe1683939956\n https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2#2e5f9a37d487e1019fd4d8113adb2f9f\n-https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-haa6b8db_3.tar.bz2#89acee135f0809a18a1f4537390aa2dd\n+https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-hf14f497_3.tar.bz2#d85acad4b47dff4e3def14a769a97906\n https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2#b3653fdc58d03face9724f602218a904\n-https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2#3b933ea47ef8f330c4c068af25fcd6a8\n-https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc869a4a_1.tar.bz2#7a268cf1386d271e576e35ae82149ef2\n-https://conda.anaconda.org/conda-forge/linux-64/pandoc-2.19.2-h32600fe_1.tar.bz2#35a82883468c85ac8bf41f083c1933cf\n+https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-hca2bb57_4.conda#bb808b654bdc3c783deaf107a2ffb503\n+https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc929e4a_1.tar.bz2#5b122b50e738c4be5c3f2899f010d7cf\n+https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.1.1-h32600fe_0.conda#68dcea6605bcebb17215d2b4efb3e1cf\n https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2#69e2c796349cd9b273890bee0febfe1b\n-https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2#db2ebbe2943aae81ed051a6a9af8e0fa\n-https://conda.anaconda.org/conda-forge/linux-64/s2n-1.0.10-h9b69904_0.tar.bz2#9708c3ac26c20b4c4549cbe8fef937eb\n+https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4\n+https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.41-h3358134_0.conda#6e3b75864fd97aef652c0d61bc2804be\n https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2#5b8c42eb62e9fc961af70bdd6a26e168\n+https://conda.anaconda.org/conda-forge/linux-64/ucx-1.14.0-ha0ee010_0.conda#7f34aae830e22c4212c14bd456c1796c\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2#9e856f78d5c80d5a78f61e72d1d473a3\n https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2#21743a8d2ea0c8cfbbf8fe489b0347df\n https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2#4b11e365c0275b808be78b30f904e295\n https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda#6b63daed8feeca47be78f323e793d555\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.10.5-hfb6a706_0.tar.bz2#47d6b88b0c42a8c9877f3993b49f052d\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.19-h5b20300_3.conda#2f8cdd45bb9983aa337a6357b12951c5\n https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.3-hafa529b_0.conda#bcf0664a2dbbbb86cbd4c1e6ff10ddd6\n https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.78.0-h75c5d50_1.tar.bz2#accc1f1ca33809bbf9ad067a0a69e236\n https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2#e5613f2bc717e9945840ff474419b8e4\n https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda#e1232042de76d24539a436d37597eb06\n-https://conda.anaconda.org/conda-forge/linux-64/grpc-cpp-1.47.1-hbad87ad_6.tar.bz2#6d0f1ddd701aebf007274ee5ea9a3018\n https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_5.tar.bz2#ee08782aff2ff9b3291c967fa6bc7336\n-https://conda.anaconda.org/conda-forge/linux-64/krb5-1.19.3-h3790be6_0.tar.bz2#7d862b05445123144bec92cb1acc8ef8\n+https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda#89a41adce7106749573d883b2f657d78\n https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2#20bae26d0a1db73f758fc3754cab4719\n https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2#ed5349aa96776e00b34eccecf4a948fe\n+https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.52.1-hcf146ea_1.conda#999b2527de4ab2a3472d51a5aab719c4\n https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2#955d993f41f9354bf753d29864ea20ad\n-https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.16.0-h491838f_2.tar.bz2#9134d477d02ad9264c6ee359fa36702c\n-https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.4.0-h82bc61c_5.conda#e712a63a21f9db647982971dc121cdcf\n-https://conda.anaconda.org/conda-forge/linux-64/nss-3.88-he45b914_0.conda#d7a81dfb99ad8fbb88872fb7ec646e6c\n-https://conda.anaconda.org/conda-forge/linux-64/orc-1.7.6-h6c59b99_0.tar.bz2#7978db6ca7b2932ccf9d3c36093f8281\n-https://conda.anaconda.org/conda-forge/linux-64/python-3.9.15-h47a2c10_0_cpython.conda#4c15ad54369ad2fa36a0d56c6675e241\n+https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.18.1-h5e4af38_0.conda#a2fab690ff5efa0d31cf5e27cd433faa\n+https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda#2e648a34072eb39d7c4fc2a9981c5f0c\n+https://conda.anaconda.org/conda-forge/linux-64/nss-3.89-he45b914_0.conda#2745719a58eeaab6657256a3f142f099\n+https://conda.anaconda.org/conda-forge/linux-64/orc-1.8.3-hfdbbad2_0.conda#8aafd0a5ba97bf0cc451550b147a4e0a\n+https://conda.anaconda.org/conda-forge/linux-64/python-3.9.16-h2782a2a_0_cpython.conda#95c9b7c96a7fd7342e0c9d0a917b8f78\n https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.40.0-h4ff8645_0.tar.bz2#bb11803129cbbb53ed56f9506ff74145\n https://conda.anaconda.org/conda-forge/linux-64/unixodbc-2.3.10-h583eb01_0.tar.bz2#906893193434d971b6f92839086f430d\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2#12a61e640b8894504326aadafccbb790\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h0b41bf4_0.conda#ea8fbfeb976ac49cbeb594e985393514\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2#6c72ec3e660a51736913ef6ea68c454b\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.7-h3541f99_13.tar.bz2#39768ba0fe69c241d54703a7f5e3119f\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.20-h00877a2_4.conda#cd282ae47b410df93a192b16399100d0\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.6-hf342b9f_0.conda#ddec786d29917630faee14b54aac584d\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py39hf3d152e_7.tar.bz2#b1a72c73acf3527aa5c1e2eed594fa25\n-https://conda.anaconda.org/conda-forge/linux-64/bitarray-2.7.2-py39h72bdee0_0.conda#31c9d1166ff5c29cc6d82ad96bec6800\n+https://conda.anaconda.org/conda-forge/linux-64/bitarray-2.7.3-py39h72bdee0_0.conda#1857719e898766bdaf3b8e2d79a284cb\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2#2ff08978892a3e8b954397c461f18418\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/linux-64/clickhouse-cityhash-1.0.2.3-py39h5a03fae_4.tar.bz2#1f3e58a560fcf033a81d8ac88a678f39\n@@ -140,31 +146,32 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.6.6-py39h227be39_0.conda#bfd2d6f572201394387edcadc4a08888\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n-https://conda.anaconda.org/conda-forge/noarch/flit-core-3.8.0-pyhd8ed1ab_0.tar.bz2#6d5e56de2e65da7aa35fd10131226efa\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d\n-https://conda.anaconda.org/conda-forge/linux-64/freetds-1.3.16-h41fea10_0.conda#912ba9630b3d6287760536bf041e78b0\n+https://conda.anaconda.org/conda-forge/linux-64/freetds-1.1.15-h1770fba_1.tar.bz2#9ebc291d4a9f33099a59a47f9af72a17\n https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.3.3-py39hb9d737c_0.tar.bz2#e5e0bc1285c83d925b42ad139adca58f\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.8-hff1cb4f_1.tar.bz2#a61c6312192e7c9de71548a6706a21e6\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.10-h05c8ddd_0.conda#1a109126a43003d65b39c1cad656bc9b\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/linux-64/greenlet-2.0.2-py39h227be39_0.conda#c286c4afbe034845b96c78125c1aff15\n+https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.52.1-py39h227be39_1.conda#605c929b282ee88a42f08c61131ec1fc\n https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h64030ff_2.tar.bz2#112eb9b5b93f0c02e59aea4fd1967363\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.2-pyhd8ed1ab_0.conda#1a7584b46014b66568069cb6ef2253bf\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py39hf939315_1.tar.bz2#41679a052a8ce841c74df1ebc802e411\n-https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-h6ed2654_0.tar.bz2#dcc588839de1445d90995a0a2c4f3a39\n-https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.86.0-h7bff187_1.tar.bz2#5e5f33d81f31598d87f9b849f73c30e3\n+https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-hfd0df8a_0.conda#aa8840cdf17ef0c6084d1e24abc7a28b\n+https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.88.1-hdc1c0ab_1.conda#3d1189864d1c0ed2a5919cb067b5903d\n https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h37653c0_1015.tar.bz2#37d3747dd24d604f63d2610910576e63\n-https://conda.anaconda.org/conda-forge/linux-64/libpq-15.1-hf695f80_1.conda#12a501b9ee0927abfc95083303b6c89f\n-https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h522a892_0.tar.bz2#802e43f480122a85ae6a34c1909f8f98\n+https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda#4654b17eccaba55b8581d6b9c77f53cc\n+https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h1daa5a0_1.conda#77003f63d1763c1e6569a02c1742c9f4\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/linux-64/lz4-4.3.2-py39h724f13c_0.conda#c2c31bf17fa6b19094709472ed6580fe\n https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py39h72bdee0_0.conda#35514f5320206df9f4661c138c02e1c1\n@@ -172,24 +179,23 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.4-py39hf939315_1.tar.bz2#1476ded6cd61da1e2d921a2396207c75\n+https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.5-py39h4b4f3f3_0.conda#413374bab5022a5199c5dd89aef75df5\n https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py39h72bdee0_0.conda#85d78bf46da38d726c8c6bec78f90fa8\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py39h7360e5f_0.conda#757070dc7cc33003254888808cd34f1e\n-https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h7d73246_1.tar.bz2#a11b4df9271a8d7917686725aa04c8f2\n+https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda#5ce6a42505c6e9e6151c54c3ec8d68ea\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n-https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.16.0-pyhd8ed1ab_0.conda#8efaddc1c8b8ce262c4d1a7c6571c799\n https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py39hb9d737c_0.tar.bz2#12184951da572828fb986b06ffb63eed\n https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263\n https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n@@ -200,30 +206,24 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/linux-64/pycryptodomex-3.16.0-py39hb9d737c_0.conda#242581a5828003ae7002b9037a1de87f\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/linux-64/pyrsistent-0.19.3-py39h72bdee0_0.conda#659013ef00dcd1751bfd26d894f73857\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.6-pyhd8ed1ab_0.conda#525828457f46cf124526760c5400982d\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py39hb9d737c_5.tar.bz2#ef9db3c38ae7275f6b14491cfe61a248\n-https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.0-py39h0be026e_0.conda#7ed232c22ecbe2cabdebafa7d422f51d\n-https://conda.anaconda.org/conda-forge/linux-64/regex-2022.10.31-py39hb9d737c_0.tar.bz2#225db0bae910b9fc6722eb23e60b1079\n-https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f\n+https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.2-py39h0be026e_0.conda#6642e383076fe1c1514ebfe04d7206f2\n+https://conda.anaconda.org/conda-forge/linux-64/regex-2023.3.23-py39h72bdee0_0.conda#ad6db6b8924acbc37ae6d961dfbbf19f\n https://conda.anaconda.org/conda-forge/linux-64/rtree-1.0.1-py39hb102c33_1.tar.bz2#b3813b718ca1da036a48e3fe1db3edd8\n-https://conda.anaconda.org/conda-forge/linux-64/ruff-0.0.249-py39h16b1714_0.conda#588cce074691836c2e8ced8b53d912af\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.0-pyhd8ed1ab_0.tar.bz2#edab14119efe85c3bf131ad747e9005c\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/linux-64/ruff-0.0.259-py39h16b1714_0.conda#7df606cf70461b1b076a7cac1af7e570\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n-https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -233,22 +233,23 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py39hb9d737c_1.tar.bz2#8a7d309b08cff6386fe384aa10dd3748\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py39hb9d737c_0.tar.bz2#230d65004135bf312504a1bbcb0c7a08\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.5.1-pyhd8ed1ab_0.conda#2a914654b9ade742049dab13e29571c6\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2#536cc5db4d0a3ba0630541aec064b5e4\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n+https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec\n https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2#f59c1242cc1dd93e72c2ee2b360979eb\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n-https://conda.anaconda.org/conda-forge/noarch/anyio-3.6.2-pyhd8ed1ab_0.tar.bz2#8ada050fa88f26916fc1e76e368a49fd\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.8.186-hecaee15_4.tar.bz2#e29dc8e8611b70cdfcc3139dba6e9001\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.6.26-hf365957_1.conda#5f2aefd743f82e4177c997c314a55f22\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.8.6-hc4349f7_12.conda#0ba6aa71b51d31d48195b26f343d926f\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2#d1a88f3ed5b52e1024b80d4bcd26a7a0\n@@ -256,73 +257,69 @@ https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_3.conda\n https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.2.0-hd9d235c_0.conda#8c57a9adbafd87f5eff842abde599cb4\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py39h4b4f3f3_0.conda#c5387f3fb1f5b8b71e1c865fc55f4951\n-https://conda.anaconda.org/conda-forge/linux-64/coverage-7.1.0-py39h72bdee0_0.conda#915b100b564875cceb85cbeab61fd678\n-https://conda.anaconda.org/conda-forge/linux-64/curl-7.86.0-h7bff187_1.tar.bz2#bc9567c50833f4b0d36b25caca7b34f8\n+https://conda.anaconda.org/conda-forge/linux-64/coverage-7.2.2-py39h72bdee0_0.conda#a7cd6538571364a455c613e3be652f9d\n+https://conda.anaconda.org/conda-forge/linux-64/curl-7.88.1-hdc1c0ab_1.conda#2016c398f234cfa354ea704c6731b5d5\n https://conda.anaconda.org/conda-forge/linux-64/cytoolz-0.12.0-py39hb9d737c_1.tar.bz2#eb31327ace8dac15c2df243d9505a132\n-https://conda.anaconda.org/conda-forge/linux-64/fastavro-1.7.1-py39h72bdee0_0.conda#d0ae960e1e4ea8cdc65c8c8c64604a53\n-https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_1.tar.bz2#3f2d104f2fefdd5e8a205dd3aacbf1d7\n+https://conda.anaconda.org/conda-forge/linux-64/fastavro-1.7.3-py39h72bdee0_0.conda#30d970b89ae3fd0a513bf6898e610eb5\n+https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.39.2-py39h72bdee0_0.conda#f87853cd6f76c4b8014b41fa522e5bda\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.47.1-py39h43a650c_6.tar.bz2#2d75b0f641ba3e9994810c85b6b189a2\n-https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h2386368_100.tar.bz2#b014a5f912e0193783e48086b7bb3995\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h4df4325_101.conda#162a25904af6586b234b2dd52ee99c61\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n-https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h18fbbfe_3.tar.bz2#ea9758cf553476ddf75c789fdd239dc5\n-https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.1.0-h9ebe8e8_2.tar.bz2#e8ae8bddbc20f598706dc3ae15dbf95e\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h5aea950_4.conda#82ef57611ace65b59db35a9687264572\n+https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.8.0-h0bc5f78_1.conda#bdf605748604b09602f3c841abdba817\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n-https://conda.anaconda.org/conda-forge/linux-64/maturin-0.14.13-py39h50f1755_0.conda#0ef8ecee8ac33c44605d46bfa2c54a71\n+https://conda.anaconda.org/conda-forge/linux-64/maturin-0.14.16-py39h50f1755_0.conda#b6b37a9bf67bf066efbafd5370105c27\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py39hf3a2cdf_3.tar.bz2#2bd111c38da69056e5fe25a51b832eba\n+https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py39h2320bf1_1.conda#d2f79132b9c8e416058a4cd84ef27b3d\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/linux-64/polars-0.16.7-py39h50f1755_0.conda#a7004dc078148808c127cd795a490ac3\n-https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.1-hdeef612_1.conda#f89d4c616e48fc8976edaf3b6a9dde0f\n-https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.0-h93bde94_0.tar.bz2#255c7204dda39747c3ba380d28b026d7\n-https://conda.anaconda.org/conda-forge/linux-64/protobuf-3.20.2-py39h5a03fae_1.conda#5e9cb4dedec15b9db3acf0c7d51f4d4b\n+https://conda.anaconda.org/conda-forge/linux-64/polars-0.16.16-py39h50f1755_0.conda#9d848e79f1a22b14f4b2284ba06441ec\n+https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.2-h3248436_0.conda#4dbd6c4bc33369751a4d728b392943ba\n+https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.1-h8ffa02c_2.conda#c264aea0e16bba26afa0a0940e954492\n+https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.21.12-py39h227be39_0.conda#984b4ee0c3241d7ce715f8a731421073\n https://conda.anaconda.org/conda-forge/linux-64/psycopg2-2.9.3-py39h24a400a_2.conda#83cc563fcaf519ea93c32ed50815abfc\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/linux-64/pymssql-2.2.7-py39h227be39_0.conda#22a232de8d28147f752a4a05f02d46d8\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/linux-64/pymssql-2.2.5-py39h5a03fae_2.tar.bz2#03c724a6917b692639d9295e12eecf9d\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/linux-64/pytz-deprecation-shim-0.1.0.post0-py39hf3d152e_3.tar.bz2#0a74595d069d974d789279cc1337572f\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n-https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520\n https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.5-py39h76a96b7_2.tar.bz2#10bea68a9dd064b703743d210e679408\n https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-1.4.46-py39h72bdee0_0.conda#8e7f9dca9ff278a640f0b63ae0c9633d\n-https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda#3788984d535770cad699efaeb6cb3037\n https://conda.anaconda.org/conda-forge/linux-64/thrift-0.16.0-py39h5a03fae_2.tar.bz2#78d2b516c3d8c729cf57611589a27236\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/linux-64/watchdog-2.2.1-py39hf3d152e_0.conda#94947509459288b220997d8769ae96ec\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/linux-64/watchdog-3.0.0-py39hf3d152e_0.conda#f49b5c4a8ad5e6fe7697185aeb835fa1\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.4-h55805fa_1.tar.bz2#d127dc8efe24033b306180939e51e6af\n https://conda.anaconda.org/conda-forge/linux-64/yarl-1.8.2-py39hb9d737c_0.conda#fc75e67104cc1bdd6aa2a3b970b19f7f\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n-https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py39hb9d737c_3.tar.bz2#4df2495b3be6785029856ab326b949ea\n-https://conda.anaconda.org/conda-forge/linux-64/arrow-cpp-9.0.0-py39hd3ccb9b_2_cpu.tar.bz2#f2e4efbf51eea1bffc1f6dc0898e6d29\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n+https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.2.7-h909e904_1.conda#7cb3fd9464ed9aaf8189837fe9d96c28\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py39hb9d737c_1005.tar.bz2#a639fdd9428d8b25f8326a3838d54045\n-https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.4-py39hd97740a_0.conda#791af88304225b61bdd0e716169d576f\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.4-py39h3ccb8fc_0.conda#dee37fde01f9bbc53ec421199d7b17cf\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-ha76d385_4.tar.bz2#6a613710a0f19aba3a5dfe83bf1c1c0f\n+https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h7a142b4_6.conda#b7963c107ed1f6a95cadc244f95cd3cd\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/linux-64/google-crc32c-1.1.2-py39h8db88ab_4.tar.bz2#5110516ff6a9fcd477c28fad1d88f4af\n@@ -330,117 +327,118 @@ https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-py\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda#448fe40d2fed88ccf4d9ded37cbb2b38\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.0-ha7026e8_0.conda#c948b920f45fd81a2dde8b1ab514cc84\n-https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.8.1-nompi_h261ec11_106.tar.bz2#9b25de670ce5753a33c18b1090d1d3bf\n-https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-h7c8129e_22.tar.bz2#23abed7562ad969493b89ad0e5f5c521\n+https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.1-nompi_h34a3ff0_101.conda#9ce7f5bde721be2f82da9f861c57f1b3\n+https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-h221c8f1_23.conda#859297085081cfbc123dc60015864f6b\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py39h2ad29b5_0.conda#3ea96adbbc2a66fa45178102a9cfbecc\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/linux-64/poppler-22.12.0-h92391eb_0.conda#7ad6d858f5615f9b0e9e4bd60395ea75\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/linux-64/poppler-23.03.0-h091648b_0.conda#a449be485743e64ed48d340d5424774d\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.1-py39h12578bd_0.conda#7edbb99bec2bfab82f86abd71d24b505\n+https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.1-py39hf14cbfd_1.conda#67766c515601b3ee1514072d6fd060bb\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hc2ae436_0.conda#8cb0b84db929d2b32fffbd93c497e5ee\n-https://conda.anaconda.org/conda-forge/linux-64/tzlocal-4.2-py39hf3d152e_2.tar.bz2#8ae86cc3776da514301b9ac2b43bfabb\n+https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hd532e3d_0.conda#6d97164f19dbd27575ef1899b02dc1e0\n+https://conda.anaconda.org/conda-forge/linux-64/tzlocal-4.3-py39hf3d152e_0.conda#c844b4c33c4233387cc90d61ce17e77e\n+https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py39hf939315_3.tar.bz2#0f11bcdf9669a5ae0f39efd8c830209a\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.4-py39h72bdee0_0.conda#0e856218fc838b36e1b340f574b7885f\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-21.3.0-pyhd8ed1ab_0.tar.bz2#a0b402db58f73aaab8ee0ca1025a362e\n+https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.19.8-hf7fbfca_12.conda#c2940067a049037ec1789ccfcb853fb4\n https://conda.anaconda.org/conda-forge/linux-64/black-23.1.0-py39hf3d152e_0.conda#28b0da3dc5c2d75542ea2588068b31c4\n https://conda.anaconda.org/conda-forge/linux-64/clickhouse-driver-0.2.5-py39hb9d737c_0.conda#eb1f2e3b81fa773884a4a40447d60d8e\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.2.0-py39hf3d152e_0.conda#0facf80f55b4ffd4513221354f65f50d\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.6.3-pyhd8ed1ab_0.conda#d98c5196ab6ffeb0c2feca2912801353\n-https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.6.1-h896b04b_1.conda#0ef3cdacbcefb93d2e94b017db6d9c8a\n-https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.0-py39he190548_0.conda#62d6ddd9e534f4d325d12470cc4961ab\n+https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.3.0-py39hf3d152e_0.conda#09aafa6fee56aab97695c6a70194f5e5\n+https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.6.2-h6c674c2_9.conda#d6023c0a9a1b0c04c78d0d33d98e6620\n+https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.1-py39he190548_0.conda#f2a931db797bb58bd335f4a857b4c898\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.13-hd33c08f_0.conda#e3b13445b8ee9d6a3d53a714f89ccd76\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.14-hd33c08f_0.conda#a8b9e35dd7be2c945b0de4fe19a7c3a9\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/linux-64/gdal-3.6.1-py39hee12558_1.conda#5d240db308be07fdc1156dfd56417557\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.10.57-h17c43bd_8.conda#a318ddbd962b0ec5639cc4fb7e9b2230\n+https://conda.anaconda.org/conda-forge/linux-64/gdal-3.6.2-py39hc6cd174_9.conda#a769ad84090d6580c587e019f664efd7\n https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h90689f9_2.tar.bz2#957a0255ab58aaf394a91725d73ab422\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda#4703355103974293bbd8a32449b3ff28\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.54.4-h7abd40a_0.tar.bz2#921e53675ed5ea352f022b79abab076a\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n-https://conda.anaconda.org/conda-forge/linux-64/pyarrow-9.0.0-py39hc0775d8_2_cpu.tar.bz2#7ce89474ea7932b29491ade87bfba19a\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/linux-64/datafusion-0.7.0-py39h50f1755_0.conda#8c94cc4c1ba1ec9551e1de479e9b9284\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/linux-64/fiona-1.8.22-py39hbc5ff6d_5.conda#2721b7501252fabde467f0fedc8299b9\n-https://conda.anaconda.org/conda-forge/linux-64/graphviz-7.0.5-h2e5815a_0.conda#96bf06b24d74a5bf826485e9032c9312\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh210e3f2_0.conda#f4c469f01c4aa05f77ab2f70c2fbbef2\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.1-py39hbc5ff6d_0.conda#6b42665b571986222f0f28d9bcc0e627\n+https://conda.anaconda.org/conda-forge/linux-64/graphviz-7.1.0-h2e5815a_0.conda#e7ecda996c443142a0e9c379f3b28e48\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh41d4057_0.conda#c8f4db8b2fc42692b3b7f1e348b2ab59\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/linux-64/libarrow-11.0.0-h93537a5_13_cpu.conda#49d5c8c33c0d1db3362058d45da6af69\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-0.7.0-py39h207a36c_1.conda#0425f3a79f08dc2b66b2bc673585b507\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/linux-64/arrow-cpp-11.0.0-ha770c72_13_cpu.conda#26ab48029304dce678b7084206415e03\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh210e3f2_0.conda#1b463a5f4b7c83f509f6a1168a6ef554\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/linux-64/snowflake-connector-python-2.8.3-py39he2b9a33_0.conda#85779e638923cc95aa6b5e74646432c1\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.3.0-pyhd8ed1ab_0.conda#644c60cdd1e85407fc28b9085438c7a0\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.0-py39h7360e5f_2.conda#fbee2ab3fe7729f2ff5c5699d58e40b9\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.1-py39h7360e5f_0.conda#7584d1bc5499d25eccfd24a7f656e3ee\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n-https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.2-pyhd8ed1ab_0.tar.bz2#40be846cd4e78672a40e43db9dae753c\n+https://conda.anaconda.org/conda-forge/linux-64/pyarrow-11.0.0-py39hf0ef2fd_13_cpu.conda#3a49aa2613f24e98df870f5d7467012b\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.1-py39h86b2a18_0.conda#1f96b6aa72d033842b738c3085a38856\n-https://conda.anaconda.org/conda-forge/linux-64/google-cloud-bigquery-core-3.4.2-py39hf3d152e_0.conda#eda2efe1b9e1d4aee5f960c9438d62ab\n+https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.2-py39hd189fd4_1.conda#4ad12d81a9672faa131d64abe2f1060f\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/linux-64/datafusion-0.7.0-py39h50f1755_0.conda#8c94cc4c1ba1ec9551e1de479e9b9284\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n-https://conda.anaconda.org/conda-forge/noarch/nbclassic-0.5.2-pyhd8ed1ab_0.conda#c5039404bd47fbdc811b5e9282c51afe\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-0.7.1-py39h0765c1d_0.conda#ddfc8d338528a2262d6fee8512a5e5ef\n+https://conda.anaconda.org/conda-forge/linux-64/snowflake-connector-python-3.0.2-py39ha8c5812_0.conda#1c3f3d5b49f4e461190fdfb25a2c734a\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/notebook-6.5.2-pyha770c72_1.tar.bz2#7bf26ca095481f206e6f9dd7681085fe\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.1-pyha770c72_0.tar.bz2#03cd073d4dc0623b857bf9e175d0f736\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.7.1-pyhd8ed1ab_0.tar.bz2#96ba78bf526df670bf9562d6100eb627\n-https://conda.anaconda.org/conda-forge/linux-64/google-cloud-bigquery-3.4.2-py39hf3d152e_0.conda#12e900e4ec63ebe39dea90162d6e46eb\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n", "osx-64-3.10.lock": "@@ -1,8 +1,8 @@\n # Generated by conda-lock.\n # platform: osx-64\n-# input_hash: 65c9cea97e9a3be0df4af22a407c5bcf572ae48f7498aecd56e67240fd88f2cd\n+# input_hash: 8ba69a5d0b9c2268334cdb59d8a3436d2dd9d5efe092df05ccb41ec9f869e3c5\n @EXPLICIT\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.6.2-h0d85af4_0.tar.bz2#0f72a3415c40ead80c978fec230f49ee\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.8.14-hb7f2c08_0.conda#a2ded8f5113b04e5e7274d044f75cbbc\n https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2#37edc4e6304ca87316e160f5ca0bd1b5\n https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.18.1-h0d85af4_0.tar.bz2#00b3e98a61e6430808fe7a2534681f28\n https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.12.7-h033912b_0.conda#af2bdcd68f16ce030ca957cdeb83d88a\n@@ -12,12 +12,12 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/osx-64/freexl-1.0.6-hb7f2c08_1.tar.bz2#4fc494f8539871247167bbe4167f3277\n https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2#f1c6b41e0f56998ecd9a3e210faa1dc0\n-https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hbcb3906_2.tar.bz2#be8f747c37e4d7e346c133e641966750\n+https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda#aca150b0186836f893ebac79019e5498\n https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hb7f2c08_3.conda#6b55131ae9445ef38746dc6b080acda9\n https://conda.anaconda.org/conda-forge/osx-64/json-c-0.16-h01d06f9_0.tar.bz2#6696477dbfcb5b7ea8559865e7f9dbef\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2#37157d273eaf3bc7d6862104161d9ec9\n-https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2#208a6a874b073277374de48a782f6b10\n-https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.14-hb7f2c08_0.tar.bz2#ce2a6075114c9b64ad8cace52492feee\n+https://conda.anaconda.org/conda-forge/osx-64/libcxx-15.0.7-h71dddab_0.conda#ad1c6c1ddfd7717e3d46bf06ff2e9400\n+https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.17-hac1461d_0.conda#e3894420cf8b6abbf6c4d3d9742fbb4a\n https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2#79dc2be110b2a3d1e97ec21f691c50ad\n https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9\n https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2#691d103d11180486154af49c037b7ed9\n@@ -26,20 +26,21 @@ https://conda.anaconda.org/conda-forge/osx-64/libtool-2.4.7-hf0c8a7f_0.conda#1f8\n https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2#db98dc3e58cbc11583180609c429c17d\n https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2#28807bef802a354f9c164e7ab242c5cb\n https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2#35eb3fce8d51ed3c1fd4122bad48250b\n-https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-15.0.7-h61d9ccf_0.conda#3faa9933dff6e96333b5ca5274674b63\n+https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.0-h61d9ccf_0.conda#00d0daa29e5a4ce56ef9b351148a1e88\n https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2#76217ebfbb163ff2770a261f955a5861\n-https://conda.anaconda.org/conda-forge/osx-64/pandoc-2.19.2-h694c41f_1.tar.bz2#fa70c816e73fca7b3c7653e8c7e3bfdb\n https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2#09a583a6f172715be21d93aaa1b42d71\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2#addd19059de62181cd11ae8f4ef26084\n https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-3_cp310.conda#42da9b0138e911cd5b2f75b0278e26dc\n-https://conda.anaconda.org/conda-forge/osx-64/tzcode-2022g-hb7f2c08_0.conda#f1bf42ae6c2a752b4c064140365563c2\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/osx-64/tzcode-2023b-hb7f2c08_0.conda#09f3f3b89c6d7d01de40772cc58fe5bf\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.9-h35c211d_0.tar.bz2#c5049997b2e98edfbcdd294582f66281\n https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2#86ac76d6bf1cbb9621943eb3bd9ae36e\n https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10\n https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2#d7e08fcf8259d742156188e8762b4d20\n-https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.11-h0010a65_7.tar.bz2#c86bc781dc7b3ba4e6130ffb14da0d6b\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.16-h99c63db_5.conda#fbafb2857152f62fa5d48145be10dec8\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.8-h99c63db_0.conda#30706b270f0d8eaced4ef4a226aa9d0b\n+https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.14-h99c63db_5.conda#c3dd2e2e309f28ff492fc16ddf2f3044\n https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_0.tar.bz2#7648a729fc8b7272596e90b0ab0a3e98\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/osx-64/geos-3.11.1-hf0c8a7f_0.tar.bz2#b8ac0c20383087c33ac8e5e330072832\n@@ -49,68 +50,70 @@ https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2#dedc9\n https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2#5f6e7f98caddd0fc2d345b207531814c\n https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2#376635049e9b9b0bb875efd39dcd7b3b\n https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2#f9d6a4c82889d5ecedec1d90eb673c55\n-https://conda.anaconda.org/conda-forge/osx-64/libabseil-20220623.0-cxx17_h844d122_6.conda#14fcfd14fb90f40a8be87f48a3f89355\n+https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230125.0-cxx17_hf0c8a7f_1.conda#86f75c350dd5951f41d4056c35ba4845\n+https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda#7c0f82f435ab4c48d65dc9b28db2ad9e\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2#7f952a036d9014b4dab96c6ea0f8c2a7\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2#b36a3bfe866d9127f25f286506982166\n https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2#23d6d5a69918a438355d7cbc4c3d54c9\n https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b\n-https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_28.conda#4b0400521ae098af1c87350442d88d1c\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda#5a544130e584b1f204ac896ff071d5b3\n https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda#35e4928794c5391aec14ffdf1deaaee5\n-https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.20.2-hbc0c0cd_0.tar.bz2#016fda52742981ae0a2c49f3e0ff930b\n+https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.21.12-hbc0c0cd_0.conda#7a9b17cfb3e57143e4e9118b5244b691\n https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-he49afe7_4.tar.bz2#b1c13764417c32fa87fac733caa82a64\n https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.40.0-ha978bb4_0.tar.bz2#ceb13b6726534b96e3b4e3dda91e9050\n https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2#eb7860935e14aec936065cbc21a1a962\n https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991\n https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda#a9e56c98d13d8b7ce72bf4357317c29b\n-https://conda.anaconda.org/conda-forge/osx-64/openssl-1.1.1t-hfd90126_0.conda#788ef682cff438725828036383e748f5\n+https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.0-hfd90126_0.conda#a7df3470c748a517663bf095c2ac0235\n+https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.1-h9d075a6_0.conda#5d082d93256a60f6311068849f7fca10\n https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2#e0f80c8f3a0352a54eddfe59cd2b25b1\n-https://conda.anaconda.org/conda-forge/osx-64/re2-2022.06.01-hb486fe8_1.conda#317b48dc2c5ab6ceccdd9ced4e1ef47f\n-https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2#89fa404901fa8fb7d4f4e07083b8d635\n-https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.9-h225ccf5_2.tar.bz2#eb2c4c3544099a357db4c02eda1a0766\n+https://conda.anaconda.org/conda-forge/osx-64/re2-2023.02.02-hf0c8a7f_0.conda#1c2886c84068be32f68493245672ec31\n+https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e\n+https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73\n https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2#8e9480d9c47061db2ed1b4ecce519a7f\n https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.4-he49afe7_1.tar.bz2#1972d732b123ed04b60fd21e94f0b178\n https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2#be90e6223c74ea253080abae19b3bdb1\n https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda#40a188783d3c425bdccc9ae9104acbb8\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.5.11-hd2e2f4b_0.tar.bz2#09bd616bd04399d208dc06b909a5e1c0\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.5.21-hf54dd2f_2.conda#b4f707705e5211e13516e8a1889c6535\n https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.2-hebb52c4_0.conda#2e726e782e57ba3e70f2e85891377cd5\n https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.78.0-h8b082ac_1.tar.bz2#810ad57aa3057a76ea1c65731d58da55\n https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2#aac5ad0d8f747ef7f871508146df75d9\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n+https://conda.anaconda.org/conda-forge/osx-64/freetds-1.00.44-0.tar.bz2#db962bf27f5f6a27411806fd2cd8cc3e\n https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda#852224ea3e8991a8342228eab274840e\n https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2#69eb97ca709a136c53fdca1f2fd33ddf\n-https://conda.anaconda.org/conda-forge/osx-64/grpc-cpp-1.46.4-h6579160_7.tar.bz2#57a3f07b87107e12ca611c78c77ee1f3\n https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h7aa5921_5.tar.bz2#a5e171d71c6b524409de40d81c098758\n-https://conda.anaconda.org/conda-forge/osx-64/krb5-1.19.3-hb49756b_0.tar.bz2#e60363be26ab2a74326c06195d638447\n-https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.10-h815e4d9_4.tar.bz2#adc6c89498c5f6fe5ba874d8259e7eeb\n-https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-10_4_0_h97931a8_28.conda#aa6a12546c19f6d816bf80371e19a409\n+https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda#db11fa2968ef0837288fe2d7f5b77a50\n+https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.10-h7d65743_4.tar.bz2#ed607da8c2602aeddb4ae723819fcdcc\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda#97451338600bd9c5b535eb224ef6c471\n https://conda.anaconda.org/conda-forge/osx-64/libglib-2.74.1-h4c723e1_1.tar.bz2#68a698fe240032c2ff587028ed51b155\n-https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.51.0-h0dd9d14_0.conda#6c83a076112d9496b4cb5f940e40023a\n+https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.52.1-h5bc3d57_1.conda#ec992eb9d33e9707cdecabc1464f0ea4\n+https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda#12ac7d100bf260263e30a019517f42a2\n https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-h9461dca_12.tar.bz2#cbf6767a38ffbc9be29cf26045e81faf\n-https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h7535e13_3.tar.bz2#acc1797f7b89018eeba2029c56dfdf0c\n-https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.4.0-h6268bbc_5.conda#551fc78ba147767ea5905d0746e2fbb5\n-https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-hb9e07b5_0.tar.bz2#13ba8bf8f44cdac2e5401dac20a36040\n-https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h3ad4413_1.tar.bz2#1f22d7bc7ffd031b0cf3a5a2d257a6bf\n-https://conda.anaconda.org/conda-forge/osx-64/nss-3.88-h78b00b3_0.conda#95b6bfc95f9c11286fcc2b11da36a5e8\n-https://conda.anaconda.org/conda-forge/osx-64/orc-1.7.6-hc067c44_0.tar.bz2#34d99d2c60cd0aa4f36c3a4ed8192d1e\n-https://conda.anaconda.org/conda-forge/osx-64/python-3.10.8-h4150a38_0_cpython.conda#d1c3118c4eb7a33a06d5f5a81d40a40b\n+https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h47af595_3.tar.bz2#5a28624eeb7812b585b9e2d75f846ba2\n+https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.0-hee9004a_2.conda#35f714269a801f7c3cb522aacd3c0e69\n+https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-h201ad9d_4.conda#2101dd548f0601be252e27e48fa532fa\n+https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h6db710c_1.tar.bz2#ce732d37e479919f3d22b1ccdeb858ac\n+https://conda.anaconda.org/conda-forge/osx-64/nss-3.89-h78b00b3_0.conda#1eb1408ecae62d98a902636d46f5595c\n+https://conda.anaconda.org/conda-forge/osx-64/orc-1.8.3-ha9d861c_0.conda#f1fdbf0e6c47818a8ba08b0ac4fbd6b6\n+https://conda.anaconda.org/conda-forge/osx-64/python-3.10.10-he7542f4_0_cpython.conda#6275017d92bafed547c9314e0d43920d\n https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.40.0-h9ae0607_0.tar.bz2#b66b0b11f1b901f3c2bce9406bedfd40\n-https://conda.anaconda.org/conda-forge/osx-64/unixodbc-2.3.10-h7b58acd_0.tar.bz2#846a63a046f67d5e7998c2a1608a2a30\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h1d18e73_1.tar.bz2#5a538295f97a484ee332aacc131718b5\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.10.5-h35aa462_0.tar.bz2#2647690fb7719e72da8a547c2c845708\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.13.19-had634fe_3.conda#70a2f3e2b2b20a051980e2369f48ac3f\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/osx-64/backports.zoneinfo-0.2.1-py310h2ec42d9_7.tar.bz2#ad82b483748074a7e1fc1c09e3d2fa93\n-https://conda.anaconda.org/conda-forge/osx-64/bitarray-2.7.2-py310h90acd4f_0.conda#f87a763a6cf388b452a2b3842b9dd2f1\n+https://conda.anaconda.org/conda-forge/osx-64/bitarray-2.7.3-py310h90acd4f_0.conda#5eb6096a67d65f0fbfbccad1535453f1\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2#55f612fe4a9b5f6ac76348b6de94aaeb\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/osx-64/clickhouse-cityhash-1.0.2.3-py310h9d931ec_4.tar.bz2#0b9bc5754848058dcbeab590c1fdf519\n@@ -120,31 +123,33 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.6.6-py310h7a76584_0.conda#64db217962d4957f089664b2947ace6c\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda#86cc5867dfbee4178118392bae4a3c89\n-https://conda.anaconda.org/conda-forge/osx-64/freetds-1.3.16-h99143db_0.conda#3852da6fc91b51685186c4fd40032f67\n https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.3.3-py310h90acd4f_0.tar.bz2#a3236ddc60f49384eba9348391293038\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.8-h3648f77_1.tar.bz2#f709a0451aa786175db4c3cfa2af35cc\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.10-he00a9fc_0.conda#93d4a0706c27961c200bdc49e09e1b75\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/osx-64/greenlet-2.0.2-py310h7a76584_0.conda#9f8c45f7d7d8f01dfa95e0b790fd4909\n+https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.52.1-py310h7a76584_1.conda#2624342586b1bc2766bd6d26a4213d36\n https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-hccb3bdf_2.tar.bz2#ad799f4bcdacc510347c2d9d19b40bc3\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.4-py310ha23aa8a_1.tar.bz2#cc358fb878ac593c60cea08b28ac7423\n-https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.14-h90f4b2a_0.tar.bz2#e56c432e9a78c63692fa6bd076a15713\n-https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.86.0-h57eb407_1.tar.bz2#edf3eb7cd24741ae15c18ac0a10e84e8\n+https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.15-h29502cd_0.conda#4f448677a99bfc41d3bd538c1302f1fb\n+https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.88.1-h6df9250_1.conda#1973ff6a22194ece3cb15caddf26db7c\n https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-haeb80ef_1015.tar.bz2#f1a092ddaedbde48dcf62a9455ce7e31\n https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2#968c46aa7f4032c3f3873f3452ed4c34\n-https://conda.anaconda.org/conda-forge/osx-64/libpq-15.1-h4aa9af9_1.conda#9abd7b8e31e1fef606402cf07a52e330\n-https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.16.0-h08c06f4_2.tar.bz2#c7a0779d1b87c4ba4897fc7f12b304ca\n-https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-hfa4350a_0.tar.bz2#d3b5a56369701e6a11bf300ba3394391\n+https://conda.anaconda.org/conda-forge/osx-64/libpq-15.2-h3640bf0_0.conda#411d9cd4559a2f2b7ec37fb4932fe9b9\n+https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.18.1-h16802d8_0.conda#bfacdfd4452689c3c7bdcb1e5ac6e5e9\n+https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-h70a068d_1.conda#c1d73d39f4bbff1903d1f4931355b78d\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/osx-64/lz4-4.3.2-py310h8d4e1d9_0.conda#e6a39ec57eaff988587401fb5281b6f3\n https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.2-py310h90acd4f_0.conda#a230aa9172440ace9a1b33a74f7b6fbd\n@@ -152,18 +157,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.4-py310ha23aa8a_1.tar.bz2#164e856479d735e96fcbd547afa70251\n+https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.5-py310ha23aa8a_0.conda#eaca50d68ad312e2930b2f9eca8756ef\n https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.4-py310h90acd4f_0.conda#0324181c4442d94c865cf9ae3b6a7fea\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n-https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h5d0d7b0_1.tar.bz2#be533cc782981a0ec5eed28aa618470a\n+https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h13ac156_2.conda#299a29af9ac9f550ad459d655739280b\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -178,26 +183,25 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/osx-64/pycryptodomex-3.16.0-py310h90acd4f_0.conda#12ab8e86065fb0aa22f4f7992d375f6b\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n+https://conda.anaconda.org/conda-forge/osx-64/pymssql-2.2.5-py310h11ac2da_2.tar.bz2#3a8b0678739a29d6168682e47bb12579\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/osx-64/pyrsistent-0.19.3-py310h90acd4f_0.conda#2de2b931546de39d852e5d21e58876c1\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0-py310h90acd4f_5.tar.bz2#e0ba2009f52ccda088c63dedf0d1c5ec\n-https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.0.0-py310hf615a82_0.conda#a1f758ee654b7723b53a582b6ae45739\n-https://conda.anaconda.org/conda-forge/osx-64/regex-2022.10.31-py310h90acd4f_0.tar.bz2#13ea168d87aba497a4548205a1b360f4\n+https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.0.2-py310hf615a82_0.conda#a33586e29c556ec8a44f1e892e9f868a\n+https://conda.anaconda.org/conda-forge/osx-64/regex-2023.3.23-py310h90acd4f_0.conda#d64621e4c9f16fd308c0380ca4a6062d\n https://conda.anaconda.org/conda-forge/osx-64/rtree-1.0.1-py310had9ce37_1.tar.bz2#621e20dd837cb895f3bccaa7ade9e1dd\n-https://conda.anaconda.org/conda-forge/osx-64/ruff-0.0.249-py310h1e0b698_0.conda#d62d3e47b83feea477c59bc01e9f5f0c\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/osx-64/ruff-0.0.259-py310h1e0b698_0.conda#5cac50110bc79faf1f7a2dca4e57cfbd\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -207,19 +211,21 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/osx-64/tornado-6.2-py310h90acd4f_1.tar.bz2#ca9d4e6a9598a9a9ab7e6ccc4e52749b\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-15.0.0-py310h90acd4f_0.tar.bz2#b62adca3645b3bbc46940d5b1833d59b\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.2.7-hb9330a7_13.tar.bz2#d7319f5973bc93e63eb1b32dbb4d03b8\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.2.20-h0ae4c0f_4.conda#8b0e31f714d69f0211419150cb2be6be\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.7.6-hcdd7835_0.conda#2f2b9a52b2dcbbdcdc183f4860e96f5b\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h904041c_1014.tar.bz2#2e7b4350178ed52bb6fd2b1ecbeeed4f\n@@ -227,41 +233,40 @@ https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py310ha78151a_3.conda#\n https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.2.0-hd56cc12_0.conda#28e03cefd79aa28ec0e313e5a9c71f5b\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/osx-64/coverage-7.1.0-py310h90acd4f_0.conda#0499188bb1d22c9c5dc5d2b70c09c8ed\n-https://conda.anaconda.org/conda-forge/osx-64/curl-7.86.0-h57eb407_1.tar.bz2#66971030ca300059cb6fbd27da348e10\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-64/coverage-7.2.2-py310h90acd4f_0.conda#b84f4c1b4c50604192a35782f42569ae\n+https://conda.anaconda.org/conda-forge/osx-64/curl-7.88.1-h6df9250_1.conda#2cf75b9fb10c82425c94e12273ac7791\n https://conda.anaconda.org/conda-forge/osx-64/cytoolz-0.12.0-py310h90acd4f_1.tar.bz2#7420b99bf92064b4ad077bbc909e1ffd\n-https://conda.anaconda.org/conda-forge/osx-64/fastavro-1.7.1-py310h90acd4f_0.conda#a3f79664a30a6d7529b2461b074e1ef1\n-https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py310h90acd4f_1.tar.bz2#0b05af0a10ea3a8db1847bc0e389a335\n+https://conda.anaconda.org/conda-forge/osx-64/fastavro-1.7.3-py310h90acd4f_0.conda#6255a5e5301e6787602bcf84b6ae8e60\n+https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.39.2-py310h90acd4f_0.conda#2643992c2bb27b3c2a92ecf56adee2ca\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.46.4-py310h082f274_7.tar.bz2#f8e841ba58c354f7e28b53657007c0ab\n-https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_hc782337_100.tar.bz2#62834ae35eb346b324b3b9c4fdc5e539\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_h48135f9_101.conda#2ee4811ba5f72f7f12f69b3ec2d6cd96\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2#644d63e9379867490b67bace400b2a0f\n-https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h1e214de_3.tar.bz2#350af2b75c58dc16985fa97298469143\n-https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.1.0-habe576c_1.tar.bz2#165d074d3ad3204232cf0bf72a24e34d\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h4685329_4.conda#656fb395549f224a3336c7cae28d7a93\n+https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.8.0-h176059f_1.conda#0e1b18b92865c0130f4f8b4392e8558c\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py310hffcf78b_3.tar.bz2#a7b7035e6aeace50e0023839f3f5beaa\n+https://conda.anaconda.org/conda-forge/osx-64/pillow-9.4.0-py310h306a057_1.conda#1ef68ae4293c7f7df586d07e29f5dc43\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/osx-64/postgresql-15.1-h7bc2cb3_1.conda#6143380ea69db7034a24ee6a9ac5d1cb\n-https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.0-hcbd9701_0.tar.bz2#78ee95e87e5143d0e4a17d4aeef56411\n-https://conda.anaconda.org/conda-forge/osx-64/protobuf-3.20.2-py310h7a76584_1.conda#c2cdb322dbbe0e0ae6ad8fe38ee7b790\n-https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.3-py310h2d0af76_2.conda#c756d2e58232fa7ceb75742cad2ed5ca\n+https://conda.anaconda.org/conda-forge/osx-64/postgresql-15.2-hbea33b9_0.conda#4ffe00143090158bb7f5fc2f4f1a920c\n+https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.1-hf909084_2.conda#96d16a3411f40f30f622f7594ddae222\n+https://conda.anaconda.org/conda-forge/osx-64/protobuf-4.21.12-py310h7a76584_0.conda#589cb650d197ab61a0cd54553e063c21\n+https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.3-py310h31f19fa_2.conda#e0fba6187efc4b7d198a62f4f039c0d7\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/osx-64/pymssql-2.2.7-py310h11ac2da_0.conda#0b82888ce5287e2ecffcc77cd7e488cb\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/osx-64/pytz-deprecation-shim-0.1.0.post0-py310h2ec42d9_3.tar.bz2#4a0590c5a112e023783e94ec7c54bc02\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n@@ -270,140 +275,149 @@ https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf4\n https://conda.anaconda.org/conda-forge/osx-64/sqlalchemy-1.4.46-py310h90acd4f_0.conda#718329457fb9710bd54e325b2f4d80f7\n https://conda.anaconda.org/conda-forge/osx-64/thrift-0.16.0-py310h7a76584_2.tar.bz2#9e8d0c2aebc165f6cebb45ce30cf565b\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/osx-64/watchdog-2.2.1-py310h389cd99_0.conda#72acfd24d369315cc410e3f653bdb322\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-64/watchdog-3.0.0-py310h389cd99_0.conda#07e85ab1bb437e36baae9485ee469b44\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.4-h2007e90_1.tar.bz2#da5951ed1609c4fdd135db32c4c8ef36\n https://conda.anaconda.org/conda-forge/osx-64/yarl-1.8.2-py310h90acd4f_0.conda#9e18f6b25b97c6078299f6d2ad6c1d07\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.8.186-h7c85d8e_4.tar.bz2#83537fd65fe827f41b96851e6c92fd73\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.6.26-hcaaecf5_1.conda#57e3968abdb1414279c83aa1145dc65d\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.8.6-ha4e05e3_12.conda#ae6f4dedbbb14f41d643986af3d87d23\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/osx-64/brotlipy-0.7.0-py310h90acd4f_1005.tar.bz2#63accc45f2b9ae1dad4db9cdfaa903b4\n-https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.4-py310h23bb4e6_0.conda#21df0c16e407e4130f95e50849314159\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.4-py310hdd0c95c_0.conda#7f0791ebd6b9c996fbd16ed1368b7eee\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-he29fd1c_4.tar.bz2#7fab5b9379958e9d3f784842c00c8e66\n+https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-hd690177_6.conda#13da0cc6fabf8971a3bc3ab1de1a9bb9\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/osx-64/google-crc32c-1.1.2-py310h6f7428f_4.tar.bz2#d3575d879b46a8452503ca08b997e782\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-6.0.0-h08f8713_0.conda#3852d6ef7b77da3e81074a8e487e7df5\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.0-h5c1f988_0.conda#4aab67daf291f97462a5a947aaad48ea\n https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2#28592eab0f05bcf9969789e87f754e11\n https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2#406ad426aade5578b90544cc2ed4a79b\n-https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.8.1-nompi_hc61b76e_106.tar.bz2#502e31e4a400216854da4e9933fb21c2\n-https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-hc1c2c66_22.tar.bz2#13513d4171137de61c7f8dd7c2fa4e74\n+https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.1-nompi_h56690a0_101.conda#47f469ea7abef24fe25d7ea8f3c57e2a\n+https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-hd6e941a_23.conda#f8b8c912eca84fdb35215e02dcd4a0f4\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/osx-64/poppler-22.12.0-hf2ff1a1_0.conda#ad1c9f970971bc448424cff37c99eddd\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-64/poppler-23.03.0-h6e9091c_0.conda#1764e7410be61cdaf6cf6b0b27cb87a2\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.1-py310h8c678d5_0.conda#8f348c1e0d172fcd371df80d399b4500\n+https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.1-py310ha48f28b_1.conda#981e35440446f8fab64922e7833579df\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.13.2-h3b7b576_0.conda#d75ea515b550689adc41b26c7f9eaef6\n-https://conda.anaconda.org/conda-forge/osx-64/tzlocal-4.2-py310h2ec42d9_2.tar.bz2#a680d8168cc568300e4b750bad612bef\n+https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.13.2-h8b9cbf0_0.conda#a10738d4788cf6b0b0d9bff2e324b942\n+https://conda.anaconda.org/conda-forge/osx-64/tzlocal-4.3-py310h2ec42d9_0.conda#3f38ae3f0617bf29be8564ccb15cd9d4\n+https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py310ha23aa8a_3.tar.bz2#b3727e37919b1f4ef885d65ed97f3ca1\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.8.4-py310h90acd4f_0.conda#8fb19e0e231a12977eaedfd53ab143a0\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.2.7-hba8c00c_1.conda#7bca115eac894cd5d8f00aabe4bbb1d5\n https://conda.anaconda.org/conda-forge/osx-64/black-23.1.0-py310h2ec42d9_0.conda#b7082a20291807011ffc55880ff63419\n https://conda.anaconda.org/conda-forge/osx-64/clickhouse-driver-0.2.5-py310h90acd4f_0.conda#0db8c416967370d6487e7a38df27175e\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.2.0-py310h2ec42d9_0.conda#5dfd396b995d403a7544ca59ce981fb8\n-https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.6.1-h46da3b9_1.conda#932a6d9e98859cfbc821112df6602207\n+https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.3.0-py310h2ec42d9_0.conda#f73c532855154e9f4abcd5b9ce2a1860\n+https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.6.2-hd7924a8_9.conda#499973e2bcb547bde4289905cb7a9676\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.2-py310h788a5b3_0.conda#fea956b460a39dd944742b7dfbd55983\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.13-hbd9bf65_0.conda#c979037ff3fc99257ec7cb28bb0083f4\n+https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.14-hbd9bf65_0.conda#7de54d83e9c685b742e0a4d81b271de0\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/osx-64/arrow-cpp-8.0.1-py310h0687de5_2_cpu.tar.bz2#8e65f03d5c491e6722a84300063f6fc1\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.19.8-h8b21dc2_12.conda#a24352ea6d682777803b088279be8082\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.0.7-py310ha23aa8a_0.conda#bc714cc57ec6422105ed991167987a9d\n-https://conda.anaconda.org/conda-forge/osx-64/gdal-3.6.1-py310he22d2f2_1.conda#e50e7158b6ecd9757d6503efd20fae2f\n+https://conda.anaconda.org/conda-forge/osx-64/gdal-3.6.2-py310h5abc6fc_9.conda#9a4480371682ff6d0b1ae18e210127c0\n https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h7c1209e_2.tar.bz2#307614630946527e302b7dd042a5cfa2\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda#e67b634578fefbb312cd6cfd34b63d86\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.54.4-h3d48ba6_0.tar.bz2#1a106d9119086f73b5f88c650f700210\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n https://conda.anaconda.org/conda-forge/osx-64/pandas-1.5.3-py310hecf8f37_0.conda#00e667c3b1935c6c58f0717497fd5f1e\n-https://conda.anaconda.org/conda-forge/osx-64/polars-0.16.7-py310hb28ce15_0.conda#e8b5de800548e4ef3a6f4297ed427e3d\n+https://conda.anaconda.org/conda-forge/osx-64/polars-0.16.16-py310hb28ce15_0.conda#86db8037fbd50599dab23cd65164ffa6\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n https://conda.anaconda.org/conda-forge/osx-64/shapely-1.8.5-py310h4e43f2a_2.tar.bz2#08ce2573d824243bcfc93ac076056c49\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/osx-64/fiona-1.8.22-py310h3963e5c_5.conda#34ccda7a32fb6a71ba13228219fd43f1\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.10.57-h0d082ec_8.conda#238e81ff0a438402ca73c34dc8d878f5\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-64/fiona-1.9.1-py310h3963e5c_0.conda#da201fdc56005b6029308abeddb13634\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n-https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.0.5-hc51f7b9_0.conda#589501e7b16648c032a537b6a0870dbe\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh736e0ef_0.conda#aa43ffb10a39d9eb2538761a3f838a87\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n-https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.0-py310he725631_0.conda#aca292e9d6c8a7a20df0327337f0609d\n+https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.1.0-hc51f7b9_0.conda#fd7e8ad97c77e364ed28b655f8c27b19\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.1-py310he725631_0.conda#8b1caf6e250a7c8270711c301d8bcd2e\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-64/libarrow-11.0.0-h547aefa_13_cpu.conda#1114268ce25dd22ad08cd92209d98a3c\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n-https://conda.anaconda.org/conda-forge/osx-64/pyarrow-8.0.1-py310hf0faa4b_2_cpu.tar.bz2#7eaf358e2eb7eb5ebcf28202343621f4\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/osx-64/datafusion-0.7.0-py310hb28ce15_0.conda#40b38896f888c19265b7626c9cd22830\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-64/arrow-cpp-11.0.0-h694c41f_13_cpu.conda#b692e17c44e10422db31ba8668f7fbec\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-0.7.0-py310h417b97f_1.conda#400ac655b7e3a19d83e04192fbe81791\n-https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.0-py310h240c617_2.conda#24f7ca2e9d0c09bd0f2a63c9b3604b9c\n-https://conda.anaconda.org/conda-forge/osx-64/snowflake-connector-python-2.8.3-py310h09c8c73_0.conda#58c81085df02cbc15bfbf8a51761da67\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.1-py310h240c617_0.conda#7782dea817887222538e8c322e1ba6e2\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.2.1-py310hcebe997_0.conda#bf0b2deb9b519872e481020b20883c8c\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.2.2-py310h311060b_1.conda#dd07ee9559f056614d7f7d65b4fa1d7c\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-64/pyarrow-11.0.0-py310h435aefc_13_cpu.conda#9a6326eba9ed17b5d3ded9fd25c8e689\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/osx-64/datafusion-0.7.0-py310hb28ce15_0.conda#40b38896f888c19265b7626c9cd22830\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-0.7.1-py310h7853987_0.conda#bbdfced3933c42b2e8f04a6ae4cea9df\n+https://conda.anaconda.org/conda-forge/osx-64/snowflake-connector-python-3.0.2-py310hdcc7dc2_0.conda#0594f44ac9190f91bf7970fd12d15ce7\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "osx-64-3.11.lock": "@@ -0,0 +1,420 @@\n+# Generated by conda-lock.\n+# platform: osx-64\n+# input_hash: a82bc7de13fa5f0f3328e1075ea6e963ae25196d80bcc4b969fc948358d21154\n+@EXPLICIT\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.8.14-hb7f2c08_0.conda#a2ded8f5113b04e5e7274d044f75cbbc\n+https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2#37edc4e6304ca87316e160f5ca0bd1b5\n+https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.18.1-h0d85af4_0.tar.bz2#00b3e98a61e6430808fe7a2534681f28\n+https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.12.7-h033912b_0.conda#af2bdcd68f16ce030ca957cdeb83d88a\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n+https://conda.anaconda.org/conda-forge/osx-64/freexl-1.0.6-hb7f2c08_1.tar.bz2#4fc494f8539871247167bbe4167f3277\n+https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2#f1c6b41e0f56998ecd9a3e210faa1dc0\n+https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda#aca150b0186836f893ebac79019e5498\n+https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hb7f2c08_3.conda#6b55131ae9445ef38746dc6b080acda9\n+https://conda.anaconda.org/conda-forge/osx-64/json-c-0.16-h01d06f9_0.tar.bz2#6696477dbfcb5b7ea8559865e7f9dbef\n+https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2#37157d273eaf3bc7d6862104161d9ec9\n+https://conda.anaconda.org/conda-forge/osx-64/libcxx-15.0.7-h71dddab_0.conda#ad1c6c1ddfd7717e3d46bf06ff2e9400\n+https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.17-hac1461d_0.conda#e3894420cf8b6abbf6c4d3d9742fbb4a\n+https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2#79dc2be110b2a3d1e97ec21f691c50ad\n+https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9\n+https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2#691d103d11180486154af49c037b7ed9\n+https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2#24632c09ed931af617fe6d5292919cab\n+https://conda.anaconda.org/conda-forge/osx-64/libtool-2.4.7-hf0c8a7f_0.conda#1f87b8f56ae1210c77f6133705ef24af\n+https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2#db98dc3e58cbc11583180609c429c17d\n+https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2#28807bef802a354f9c164e7ab242c5cb\n+https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2#35eb3fce8d51ed3c1fd4122bad48250b\n+https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.0-h61d9ccf_0.conda#00d0daa29e5a4ce56ef9b351148a1e88\n+https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2#76217ebfbb163ff2770a261f955a5861\n+https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2#09a583a6f172715be21d93aaa1b42d71\n+https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n+https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2#addd19059de62181cd11ae8f4ef26084\n+https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-3_cp311.conda#5e0a069a585445333868d2c6651c3b3f\n+https://conda.anaconda.org/conda-forge/osx-64/tzcode-2023b-hb7f2c08_0.conda#09f3f3b89c6d7d01de40772cc58fe5bf\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n+https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.9-h35c211d_0.tar.bz2#c5049997b2e98edfbcdd294582f66281\n+https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2#86ac76d6bf1cbb9621943eb3bd9ae36e\n+https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10\n+https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2#d7e08fcf8259d742156188e8762b4d20\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.16-h99c63db_5.conda#fbafb2857152f62fa5d48145be10dec8\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.8-h99c63db_0.conda#30706b270f0d8eaced4ef4a226aa9d0b\n+https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.14-h99c63db_5.conda#c3dd2e2e309f28ff492fc16ddf2f3044\n+https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_0.tar.bz2#7648a729fc8b7272596e90b0ab0a3e98\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n+https://conda.anaconda.org/conda-forge/osx-64/geos-3.11.1-hf0c8a7f_0.tar.bz2#b8ac0c20383087c33ac8e5e330072832\n+https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2#1e3aff29ce703d421c43f371ad676cc5\n+https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2#3f59cc77a929537e42120faf104e0d16\n+https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2#dedc96914428dae572a39e69ee2a392f\n+https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2#5f6e7f98caddd0fc2d345b207531814c\n+https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2#376635049e9b9b0bb875efd39dcd7b3b\n+https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2#f9d6a4c82889d5ecedec1d90eb673c55\n+https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230125.0-cxx17_hf0c8a7f_1.conda#86f75c350dd5951f41d4056c35ba4845\n+https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda#7c0f82f435ab4c48d65dc9b28db2ad9e\n+https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2#7f952a036d9014b4dab96c6ea0f8c2a7\n+https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2#b36a3bfe866d9127f25f286506982166\n+https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2#23d6d5a69918a438355d7cbc4c3d54c9\n+https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda#5a544130e584b1f204ac896ff071d5b3\n+https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda#35e4928794c5391aec14ffdf1deaaee5\n+https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.21.12-hbc0c0cd_0.conda#7a9b17cfb3e57143e4e9118b5244b691\n+https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-he49afe7_4.tar.bz2#b1c13764417c32fa87fac733caa82a64\n+https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.40.0-ha978bb4_0.tar.bz2#ceb13b6726534b96e3b4e3dda91e9050\n+https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2#eb7860935e14aec936065cbc21a1a962\n+https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991\n+https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda#a9e56c98d13d8b7ce72bf4357317c29b\n+https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.0-hfd90126_0.conda#a7df3470c748a517663bf095c2ac0235\n+https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.1-h9d075a6_0.conda#5d082d93256a60f6311068849f7fca10\n+https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2#e0f80c8f3a0352a54eddfe59cd2b25b1\n+https://conda.anaconda.org/conda-forge/osx-64/re2-2023.02.02-hf0c8a7f_0.conda#1c2886c84068be32f68493245672ec31\n+https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e\n+https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73\n+https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2#8e9480d9c47061db2ed1b4ecce519a7f\n+https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.4-he49afe7_1.tar.bz2#1972d732b123ed04b60fd21e94f0b178\n+https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2#be90e6223c74ea253080abae19b3bdb1\n+https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda#40a188783d3c425bdccc9ae9104acbb8\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.5.21-hf54dd2f_2.conda#b4f707705e5211e13516e8a1889c6535\n+https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.2-hebb52c4_0.conda#2e726e782e57ba3e70f2e85891377cd5\n+https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.78.0-h8b082ac_1.tar.bz2#810ad57aa3057a76ea1c65731d58da55\n+https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2#aac5ad0d8f747ef7f871508146df75d9\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n+https://conda.anaconda.org/conda-forge/osx-64/freetds-1.00.44-0.tar.bz2#db962bf27f5f6a27411806fd2cd8cc3e\n+https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda#852224ea3e8991a8342228eab274840e\n+https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2#69eb97ca709a136c53fdca1f2fd33ddf\n+https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h7aa5921_5.tar.bz2#a5e171d71c6b524409de40d81c098758\n+https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda#db11fa2968ef0837288fe2d7f5b77a50\n+https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.10-h7d65743_4.tar.bz2#ed607da8c2602aeddb4ae723819fcdcc\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda#97451338600bd9c5b535eb224ef6c471\n+https://conda.anaconda.org/conda-forge/osx-64/libglib-2.74.1-h4c723e1_1.tar.bz2#68a698fe240032c2ff587028ed51b155\n+https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.52.1-h5bc3d57_1.conda#ec992eb9d33e9707cdecabc1464f0ea4\n+https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda#12ac7d100bf260263e30a019517f42a2\n+https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-h9461dca_12.tar.bz2#cbf6767a38ffbc9be29cf26045e81faf\n+https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h47af595_3.tar.bz2#5a28624eeb7812b585b9e2d75f846ba2\n+https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.0-hee9004a_2.conda#35f714269a801f7c3cb522aacd3c0e69\n+https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-h201ad9d_4.conda#2101dd548f0601be252e27e48fa532fa\n+https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h6db710c_1.tar.bz2#ce732d37e479919f3d22b1ccdeb858ac\n+https://conda.anaconda.org/conda-forge/osx-64/nss-3.89-h78b00b3_0.conda#1eb1408ecae62d98a902636d46f5595c\n+https://conda.anaconda.org/conda-forge/osx-64/orc-1.8.3-ha9d861c_0.conda#f1fdbf0e6c47818a8ba08b0ac4fbd6b6\n+https://conda.anaconda.org/conda-forge/osx-64/python-3.11.0-he7542f4_1_cpython.conda#9ecfa530b33aefd0d22e0272336f638a\n+https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.40.0-h9ae0607_0.tar.bz2#b66b0b11f1b901f3c2bce9406bedfd40\n+https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n+https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n+https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h1d18e73_1.tar.bz2#5a538295f97a484ee332aacc131718b5\n+https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n+https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.13.19-had634fe_3.conda#70a2f3e2b2b20a051980e2369f48ac3f\n+https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n+https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n+https://conda.anaconda.org/conda-forge/osx-64/backports.zoneinfo-0.2.1-py311h6eed73b_7.tar.bz2#90baa768cca74edbbbf8b9d5b66a4ca2\n+https://conda.anaconda.org/conda-forge/osx-64/bitarray-2.7.3-py311h5547dcb_0.conda#80e72b74fb1964f9738e3a3b21e9f965\n+https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n+https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2#55f612fe4a9b5f6ac76348b6de94aaeb\n+https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n+https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n+https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n+https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n+https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n+https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n+https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99\n+https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2#a50559fad0affdbb33729a68669ca1cb\n+https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.6.6-py311h814d153_0.conda#be2cb32dfb1d146099de5ce4de78ff76\n+https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n+https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n+https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n+https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n+https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n+https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda#86cc5867dfbee4178118392bae4a3c89\n+https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.3.3-py311h5547dcb_0.tar.bz2#e5a486c298f9283c7cee302b74ba69f1\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.10-he00a9fc_0.conda#93d4a0706c27961c200bdc49e09e1b75\n+https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n+https://conda.anaconda.org/conda-forge/osx-64/greenlet-2.0.2-py311h814d153_0.conda#2a476c5b9c378fc7e3db6f2f8461cf9d\n+https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.52.1-py311h814d153_1.conda#e041f10bb1c8bf448983305c4f1715d9\n+https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-hccb3bdf_2.tar.bz2#ad799f4bcdacc510347c2d9d19b40bc3\n+https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n+https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n+https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n+https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.4-py311hd2070f0_1.tar.bz2#5219e72a43e53e8f6af4fdf76a0f90ef\n+https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.15-h29502cd_0.conda#4f448677a99bfc41d3bd538c1302f1fb\n+https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.88.1-h6df9250_1.conda#1973ff6a22194ece3cb15caddf26db7c\n+https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-haeb80ef_1015.tar.bz2#f1a092ddaedbde48dcf62a9455ce7e31\n+https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2#968c46aa7f4032c3f3873f3452ed4c34\n+https://conda.anaconda.org/conda-forge/osx-64/libpq-15.2-h3640bf0_0.conda#411d9cd4559a2f2b7ec37fb4932fe9b9\n+https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.18.1-h16802d8_0.conda#bfacdfd4452689c3c7bdcb1e5ac6e5e9\n+https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-h70a068d_1.conda#c1d73d39f4bbff1903d1f4931355b78d\n+https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n+https://conda.anaconda.org/conda-forge/osx-64/lz4-4.3.2-py311haa801a3_0.conda#7a4e07f1d8801ddcdc7710a9eca5b9e9\n+https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.2-py311h5547dcb_0.conda#13091519d55d667506aaf413cffaff10\n+https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268\n+https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n+https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n+https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.5-py311hd2070f0_0.conda#d3a60c5422b7d61b2740c7c5df508c86\n+https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.4-py311h5547dcb_0.conda#f7e130153ae7f3e9ea6fcf032bf6c535\n+https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n+https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n+https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n+https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n+https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h13ac156_2.conda#299a29af9ac9f550ad459d655739280b\n+https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n+https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n+https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n+https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n+https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n+https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n+https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n+https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.4-py311h5547dcb_0.tar.bz2#7240e0886bb94ea8846cb010352d3dd8\n+https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263\n+https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n+https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883\n+https://conda.anaconda.org/conda-forge/noarch/py-cpuinfo-9.0.0-pyhd8ed1ab_0.tar.bz2#6f6d42b894118f8378fce11887ccdaff\n+https://conda.anaconda.org/conda-forge/noarch/py4j-0.10.9.5-pyhd8ed1ab_0.tar.bz2#aa4b90e96537b3178e500ecb0d7913ce\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f8f72ac77911db942eda24fb9\n+https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n+https://conda.anaconda.org/conda-forge/osx-64/pycryptodomex-3.16.0-py311h5547dcb_0.conda#d6ec72bbb08dcf067dbd5562d50f63b4\n+https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n+https://conda.anaconda.org/conda-forge/osx-64/pymssql-2.2.5-py311hd08c637_2.tar.bz2#00f4e61c194ce0b45ff278bc68ced167\n+https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n+https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n+https://conda.anaconda.org/conda-forge/osx-64/pyrsistent-0.19.3-py311h5547dcb_0.conda#f114c0dab9f9c894b260297371124634\n+https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n+https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0-py311h5547dcb_5.tar.bz2#8d1e456914ce961119b07f396187a564\n+https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.0.2-py311habfacb3_0.conda#d5af515eb5cf0cbfd8a783e4e663ddf9\n+https://conda.anaconda.org/conda-forge/osx-64/regex-2023.3.23-py311h5547dcb_0.conda#fa77f8f2d9c79a7da8784f384da647e9\n+https://conda.anaconda.org/conda-forge/osx-64/rtree-1.0.1-py311hbc1f44b_1.tar.bz2#976a24c2adba8bb6b8ac6f7341cd411f\n+https://conda.anaconda.org/conda-forge/osx-64/ruff-0.0.259-py311h1cdbfd8_0.conda#ea46e3e30c3d9ad1172253463c7600c2\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n+https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n+https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n+https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n+https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n+https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n+https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n+https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n+https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095\n+https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96\n+https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36\n+https://conda.anaconda.org/conda-forge/osx-64/tornado-6.2-py311h5547dcb_1.tar.bz2#bc9918caedfa2de9e582104bf605d57d\n+https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n+https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n+https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n+https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n+https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n+https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.2.20-h0ae4c0f_4.conda#8b0e31f714d69f0211419150cb2be6be\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.7.6-hcdd7835_0.conda#2f2b9a52b2dcbbdcdc183f4860e96f5b\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n+https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n+https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n+https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n+https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h904041c_1014.tar.bz2#2e7b4350178ed52bb6fd2b1ecbeeed4f\n+https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py311ha86e640_3.conda#5967be4da33261eada7cc79593f71088\n+https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.2.0-hd56cc12_0.conda#28e03cefd79aa28ec0e313e5a9c71f5b\n+https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n+https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-64/coverage-7.2.2-py311h5547dcb_0.conda#912eec0baf21527e058cff24f2bc6794\n+https://conda.anaconda.org/conda-forge/osx-64/curl-7.88.1-h6df9250_1.conda#2cf75b9fb10c82425c94e12273ac7791\n+https://conda.anaconda.org/conda-forge/osx-64/cytoolz-0.12.0-py311h5547dcb_1.tar.bz2#e35eb14ca3ccf29618bdfabb0a012987\n+https://conda.anaconda.org/conda-forge/osx-64/fastavro-1.7.3-py311h5547dcb_0.conda#402cae43e0757061d05016f0b0a273a4\n+https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.39.2-py311h5547dcb_0.conda#b108bcc7df5a90356ca9934261d84536\n+https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n+https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_h48135f9_101.conda#2ee4811ba5f72f7f12f69b3ec2d6cd96\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n+https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n+https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n+https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n+https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n+https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2#644d63e9379867490b67bace400b2a0f\n+https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h4685329_4.conda#656fb395549f224a3336c7cae28d7a93\n+https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.8.0-h176059f_1.conda#0e1b18b92865c0130f4f8b4392e8558c\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n+https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n+https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n+https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n+https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n+https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n+https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n+https://conda.anaconda.org/conda-forge/osx-64/pillow-9.4.0-py311h5bae705_1.conda#c87c306c4ce9042f52c956d9517026da\n+https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n+https://conda.anaconda.org/conda-forge/osx-64/postgresql-15.2-hbea33b9_0.conda#4ffe00143090158bb7f5fc2f4f1a920c\n+https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.1-hf909084_2.conda#96d16a3411f40f30f622f7594ddae222\n+https://conda.anaconda.org/conda-forge/osx-64/protobuf-4.21.12-py311h814d153_0.conda#33cd90a68de87b897dfaa8544ecfc13b\n+https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.3-py311h557c174_2.conda#ded4ac1bebbd9468950daa2c9e376fc7\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n+https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n+https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n+https://conda.anaconda.org/conda-forge/osx-64/pytz-deprecation-shim-0.1.0.post0-py311h6eed73b_3.tar.bz2#f43e20ef498ecba3f52833e7a2614170\n+https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n+https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n+https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n+https://conda.anaconda.org/conda-forge/osx-64/sqlalchemy-1.4.46-py311h5547dcb_0.conda#032553a3ed76ef61210c7afc43f6f738\n+https://conda.anaconda.org/conda-forge/osx-64/thrift-0.16.0-py311h814d153_2.tar.bz2#195442153f96b52fe4694d1d68fd4c1b\n+https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-64/watchdog-3.0.0-py311h6fddac2_0.conda#e7f600fb722f84d31d8df250f6ed11fc\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n+https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.4-h2007e90_1.tar.bz2#da5951ed1609c4fdd135db32c4c8ef36\n+https://conda.anaconda.org/conda-forge/osx-64/yarl-1.8.2-py311h5547dcb_0.conda#fe0d6ac801fdeb5d9a4689d65a996a3c\n+https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n+https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.6.26-hcaaecf5_1.conda#57e3968abdb1414279c83aa1145dc65d\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.8.6-ha4e05e3_12.conda#ae6f4dedbbb14f41d643986af3d87d23\n+https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n+https://conda.anaconda.org/conda-forge/osx-64/brotlipy-0.7.0-py311h5547dcb_1005.tar.bz2#5f97ac938a90d06eebea42c321abe0d7\n+https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.4-py311h61927ef_0.conda#d7415ad7ae6c27050886ab2b583f09ca\n+https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n+https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n+https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-hd690177_6.conda#13da0cc6fabf8971a3bc3ab1de1a9bb9\n+https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n+https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n+https://conda.anaconda.org/conda-forge/osx-64/google-crc32c-1.1.2-py311h0669569_4.tar.bz2#bb5f5a212cb6dd44784f785ef56bf5ee\n+https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n+https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n+https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-6.0.0-h08f8713_0.conda#3852d6ef7b77da3e81074a8e487e7df5\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n+https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n+https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.0-h5c1f988_0.conda#4aab67daf291f97462a5a947aaad48ea\n+https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2#28592eab0f05bcf9969789e87f754e11\n+https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2#406ad426aade5578b90544cc2ed4a79b\n+https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.1-nompi_h56690a0_101.conda#47f469ea7abef24fe25d7ea8f3c57e2a\n+https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-hd6e941a_23.conda#f8b8c912eca84fdb35215e02dcd4a0f4\n+https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-64/poppler-23.03.0-h6e9091c_0.conda#1764e7410be61cdaf6cf6b0b27cb87a2\n+https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n+https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.1-py311hdc3c720_1.conda#58e53bb3c7c27551788196ec8c84cbf0\n+https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n+https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n+https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n+https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n+https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n+https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n+https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n+https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.13.2-h8b9cbf0_0.conda#a10738d4788cf6b0b0d9bff2e324b942\n+https://conda.anaconda.org/conda-forge/osx-64/tzlocal-4.3-py311h6eed73b_0.conda#ab20bdb631e633fedb2d9f16bd6d2c65\n+https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py311hd2070f0_3.tar.bz2#cc38bdf32e077ea689d6ca9aa94b8a76\n+https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n+https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.8.4-py311h5547dcb_0.conda#ac94862d7c14b69403339fa43494d181\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.2.7-hba8c00c_1.conda#7bca115eac894cd5d8f00aabe4bbb1d5\n+https://conda.anaconda.org/conda-forge/osx-64/black-23.1.0-py311h6eed73b_0.conda#b0e4e082b92decd17295b95dd680e37b\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n+https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n+https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n+https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.3.0-py311h6eed73b_0.conda#e0e5cfb36ece6eae9c355eed1e90ff9d\n+https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.6.2-hd7924a8_9.conda#499973e2bcb547bde4289905cb7a9676\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n+https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.2-py311ha9d2c9f_0.conda#bcd25d27b63e7d57defd8ebdf67dc361\n+https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n+https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.14-hbd9bf65_0.conda#7de54d83e9c685b742e0a4d81b271de0\n+https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n+https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n+https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.19.8-h8b21dc2_12.conda#a24352ea6d682777803b088279be8082\n+https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n+https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.0.7-py311hd2070f0_0.conda#d78f75103409d2c7a8774c873821ae9a\n+https://conda.anaconda.org/conda-forge/osx-64/gdal-3.6.2-py311h619941e_9.conda#68779ebd57ccd14c4c6385cd9c3bc080\n+https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h7c1209e_2.tar.bz2#307614630946527e302b7dd042a5cfa2\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n+https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.54.4-h3d48ba6_0.tar.bz2#1a106d9119086f73b5f88c650f700210\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/osx-64/pandas-1.5.3-py311hd84f3f5_0.conda#ec94f0de8411bbc63098cb01324b6683\n+https://conda.anaconda.org/conda-forge/osx-64/polars-0.16.16-py311h890d03e_0.conda#d9ee19c25180c7bf1380c3cb6c8c3adc\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/osx-64/shapely-1.8.5-py311h781b04c_2.tar.bz2#be807d8e0b5cf5ceb33404261be5ccb1\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.10.57-h0d082ec_8.conda#238e81ff0a438402ca73c34dc8d878f5\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-64/fiona-1.9.1-py311h9687163_0.conda#46fe4d074f8bfc33fe2ee05a9bc37ee3\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n+https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.1.0-hc51f7b9_0.conda#fd7e8ad97c77e364ed28b655f8c27b19\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.1-py311h2bf763f_0.conda#d67ac9c9b834ae77ff7b2c59f702803c\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n+https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n+https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n+https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-64/libarrow-11.0.0-h547aefa_13_cpu.conda#1114268ce25dd22ad08cd92209d98a3c\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n+https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n+https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-64/arrow-cpp-11.0.0-h694c41f_13_cpu.conda#b692e17c44e10422db31ba8668f7fbec\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n+https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.1-py311h939689b_0.conda#c0ba4b8d033cd4b2af087ef96e98db04\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n+https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.2.2-py311hda7f639_1.conda#e2dd2bd2dcf23b11d5af2d6df01904a6\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n+https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-64/pyarrow-11.0.0-py311hb17b21d_13_cpu.conda#ef03857acc13558195fc1361408308a9\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/osx-64/datafusion-0.7.0-py311h890d03e_0.conda#5f4b802597c502ef041b638522690c98\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-0.7.1-py311h42f7b3e_0.conda#1d78d34d7022f06e39b618bf48198492\n+https://conda.anaconda.org/conda-forge/osx-64/snowflake-connector-python-3.0.2-py311h183a9f9_0.conda#926fed952864d4c6d2686d4f9c699581\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "osx-64-3.8.lock": "@@ -1,8 +1,8 @@\n # Generated by conda-lock.\n # platform: osx-64\n-# input_hash: 80a6da9ea72f6d1f3447e974dc2826c2d0fed591bb1ee460d9777dda03542604\n+# input_hash: 20417bbc335c39cb87536b7f471e643be7f1cd2e965542aff5ec4367db71ff55\n @EXPLICIT\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.6.2-h0d85af4_0.tar.bz2#0f72a3415c40ead80c978fec230f49ee\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.8.14-hb7f2c08_0.conda#a2ded8f5113b04e5e7274d044f75cbbc\n https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2#37edc4e6304ca87316e160f5ca0bd1b5\n https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.18.1-h0d85af4_0.tar.bz2#00b3e98a61e6430808fe7a2534681f28\n https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.12.7-h033912b_0.conda#af2bdcd68f16ce030ca957cdeb83d88a\n@@ -12,12 +12,12 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/osx-64/freexl-1.0.6-hb7f2c08_1.tar.bz2#4fc494f8539871247167bbe4167f3277\n https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2#f1c6b41e0f56998ecd9a3e210faa1dc0\n-https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hbcb3906_2.tar.bz2#be8f747c37e4d7e346c133e641966750\n+https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda#aca150b0186836f893ebac79019e5498\n https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hb7f2c08_3.conda#6b55131ae9445ef38746dc6b080acda9\n https://conda.anaconda.org/conda-forge/osx-64/json-c-0.16-h01d06f9_0.tar.bz2#6696477dbfcb5b7ea8559865e7f9dbef\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2#37157d273eaf3bc7d6862104161d9ec9\n-https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2#208a6a874b073277374de48a782f6b10\n-https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.14-hb7f2c08_0.tar.bz2#ce2a6075114c9b64ad8cace52492feee\n+https://conda.anaconda.org/conda-forge/osx-64/libcxx-15.0.7-h71dddab_0.conda#ad1c6c1ddfd7717e3d46bf06ff2e9400\n+https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.17-hac1461d_0.conda#e3894420cf8b6abbf6c4d3d9742fbb4a\n https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2#79dc2be110b2a3d1e97ec21f691c50ad\n https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9\n https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2#691d103d11180486154af49c037b7ed9\n@@ -26,20 +26,21 @@ https://conda.anaconda.org/conda-forge/osx-64/libtool-2.4.7-hf0c8a7f_0.conda#1f8\n https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2#db98dc3e58cbc11583180609c429c17d\n https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2#28807bef802a354f9c164e7ab242c5cb\n https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2#35eb3fce8d51ed3c1fd4122bad48250b\n-https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-15.0.7-h61d9ccf_0.conda#3faa9933dff6e96333b5ca5274674b63\n+https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.0-h61d9ccf_0.conda#00d0daa29e5a4ce56ef9b351148a1e88\n https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2#76217ebfbb163ff2770a261f955a5861\n-https://conda.anaconda.org/conda-forge/osx-64/pandoc-2.19.2-h694c41f_1.tar.bz2#fa70c816e73fca7b3c7653e8c7e3bfdb\n https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2#09a583a6f172715be21d93aaa1b42d71\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2#addd19059de62181cd11ae8f4ef26084\n https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.8-3_cp38.conda#ff192f59f7fe23555612030493a079f8\n-https://conda.anaconda.org/conda-forge/osx-64/tzcode-2022g-hb7f2c08_0.conda#f1bf42ae6c2a752b4c064140365563c2\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/osx-64/tzcode-2023b-hb7f2c08_0.conda#09f3f3b89c6d7d01de40772cc58fe5bf\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.9-h35c211d_0.tar.bz2#c5049997b2e98edfbcdd294582f66281\n https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2#86ac76d6bf1cbb9621943eb3bd9ae36e\n https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10\n https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2#d7e08fcf8259d742156188e8762b4d20\n-https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.11-h0010a65_7.tar.bz2#c86bc781dc7b3ba4e6130ffb14da0d6b\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.16-h99c63db_5.conda#fbafb2857152f62fa5d48145be10dec8\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.8-h99c63db_0.conda#30706b270f0d8eaced4ef4a226aa9d0b\n+https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.14-h99c63db_5.conda#c3dd2e2e309f28ff492fc16ddf2f3044\n https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_0.tar.bz2#7648a729fc8b7272596e90b0ab0a3e98\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/osx-64/geos-3.11.1-hf0c8a7f_0.tar.bz2#b8ac0c20383087c33ac8e5e330072832\n@@ -49,67 +50,69 @@ https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2#dedc9\n https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2#5f6e7f98caddd0fc2d345b207531814c\n https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2#376635049e9b9b0bb875efd39dcd7b3b\n https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2#f9d6a4c82889d5ecedec1d90eb673c55\n-https://conda.anaconda.org/conda-forge/osx-64/libabseil-20220623.0-cxx17_h844d122_6.conda#14fcfd14fb90f40a8be87f48a3f89355\n+https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230125.0-cxx17_hf0c8a7f_1.conda#86f75c350dd5951f41d4056c35ba4845\n+https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda#7c0f82f435ab4c48d65dc9b28db2ad9e\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2#7f952a036d9014b4dab96c6ea0f8c2a7\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2#b36a3bfe866d9127f25f286506982166\n https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2#23d6d5a69918a438355d7cbc4c3d54c9\n https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b\n-https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_28.conda#4b0400521ae098af1c87350442d88d1c\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda#5a544130e584b1f204ac896ff071d5b3\n https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda#35e4928794c5391aec14ffdf1deaaee5\n-https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.20.2-hbc0c0cd_0.tar.bz2#016fda52742981ae0a2c49f3e0ff930b\n+https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.21.12-hbc0c0cd_0.conda#7a9b17cfb3e57143e4e9118b5244b691\n https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-he49afe7_4.tar.bz2#b1c13764417c32fa87fac733caa82a64\n https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.40.0-ha978bb4_0.tar.bz2#ceb13b6726534b96e3b4e3dda91e9050\n https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2#eb7860935e14aec936065cbc21a1a962\n https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991\n https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda#a9e56c98d13d8b7ce72bf4357317c29b\n-https://conda.anaconda.org/conda-forge/osx-64/openssl-1.1.1t-hfd90126_0.conda#788ef682cff438725828036383e748f5\n+https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.0-hfd90126_0.conda#a7df3470c748a517663bf095c2ac0235\n+https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.1-h9d075a6_0.conda#5d082d93256a60f6311068849f7fca10\n https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2#e0f80c8f3a0352a54eddfe59cd2b25b1\n-https://conda.anaconda.org/conda-forge/osx-64/re2-2022.06.01-hb486fe8_1.conda#317b48dc2c5ab6ceccdd9ced4e1ef47f\n-https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2#89fa404901fa8fb7d4f4e07083b8d635\n-https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.9-h225ccf5_2.tar.bz2#eb2c4c3544099a357db4c02eda1a0766\n+https://conda.anaconda.org/conda-forge/osx-64/re2-2023.02.02-hf0c8a7f_0.conda#1c2886c84068be32f68493245672ec31\n+https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e\n+https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73\n https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2#8e9480d9c47061db2ed1b4ecce519a7f\n https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.4-he49afe7_1.tar.bz2#1972d732b123ed04b60fd21e94f0b178\n https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2#be90e6223c74ea253080abae19b3bdb1\n https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda#40a188783d3c425bdccc9ae9104acbb8\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.5.11-hd2e2f4b_0.tar.bz2#09bd616bd04399d208dc06b909a5e1c0\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.5.21-hf54dd2f_2.conda#b4f707705e5211e13516e8a1889c6535\n https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.2-hebb52c4_0.conda#2e726e782e57ba3e70f2e85891377cd5\n https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.78.0-h8b082ac_1.tar.bz2#810ad57aa3057a76ea1c65731d58da55\n https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2#aac5ad0d8f747ef7f871508146df75d9\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n+https://conda.anaconda.org/conda-forge/osx-64/freetds-1.00.44-0.tar.bz2#db962bf27f5f6a27411806fd2cd8cc3e\n https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda#852224ea3e8991a8342228eab274840e\n https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2#69eb97ca709a136c53fdca1f2fd33ddf\n-https://conda.anaconda.org/conda-forge/osx-64/grpc-cpp-1.47.1-h6579160_6.tar.bz2#e93e05da2eb1cd2a246863b5f5c26698\n https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h7aa5921_5.tar.bz2#a5e171d71c6b524409de40d81c098758\n-https://conda.anaconda.org/conda-forge/osx-64/krb5-1.19.3-hb49756b_0.tar.bz2#e60363be26ab2a74326c06195d638447\n-https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.10-h815e4d9_4.tar.bz2#adc6c89498c5f6fe5ba874d8259e7eeb\n-https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-10_4_0_h97931a8_28.conda#aa6a12546c19f6d816bf80371e19a409\n+https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda#db11fa2968ef0837288fe2d7f5b77a50\n+https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.10-h7d65743_4.tar.bz2#ed607da8c2602aeddb4ae723819fcdcc\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda#97451338600bd9c5b535eb224ef6c471\n https://conda.anaconda.org/conda-forge/osx-64/libglib-2.74.1-h4c723e1_1.tar.bz2#68a698fe240032c2ff587028ed51b155\n-https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.51.0-h0dd9d14_0.conda#6c83a076112d9496b4cb5f940e40023a\n+https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.52.1-h5bc3d57_1.conda#ec992eb9d33e9707cdecabc1464f0ea4\n+https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda#12ac7d100bf260263e30a019517f42a2\n https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-h9461dca_12.tar.bz2#cbf6767a38ffbc9be29cf26045e81faf\n-https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h7535e13_3.tar.bz2#acc1797f7b89018eeba2029c56dfdf0c\n-https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.4.0-h6268bbc_5.conda#551fc78ba147767ea5905d0746e2fbb5\n-https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-hb9e07b5_0.tar.bz2#13ba8bf8f44cdac2e5401dac20a36040\n-https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h3ad4413_1.tar.bz2#1f22d7bc7ffd031b0cf3a5a2d257a6bf\n-https://conda.anaconda.org/conda-forge/osx-64/nss-3.88-h78b00b3_0.conda#95b6bfc95f9c11286fcc2b11da36a5e8\n-https://conda.anaconda.org/conda-forge/osx-64/orc-1.7.6-hc067c44_0.tar.bz2#34d99d2c60cd0aa4f36c3a4ed8192d1e\n-https://conda.anaconda.org/conda-forge/osx-64/python-3.8.15-hc915b28_0_cpython.conda#241419033ffabb092e9a4fb8bc3e0d78\n+https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h47af595_3.tar.bz2#5a28624eeb7812b585b9e2d75f846ba2\n+https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.0-hee9004a_2.conda#35f714269a801f7c3cb522aacd3c0e69\n+https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-h201ad9d_4.conda#2101dd548f0601be252e27e48fa532fa\n+https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h6db710c_1.tar.bz2#ce732d37e479919f3d22b1ccdeb858ac\n+https://conda.anaconda.org/conda-forge/osx-64/nss-3.89-h78b00b3_0.conda#1eb1408ecae62d98a902636d46f5595c\n+https://conda.anaconda.org/conda-forge/osx-64/orc-1.8.3-ha9d861c_0.conda#f1fdbf0e6c47818a8ba08b0ac4fbd6b6\n+https://conda.anaconda.org/conda-forge/osx-64/python-3.8.16-hf9b03c3_1_cpython.conda#96d23d997c18a90efde924d9ca6dd5b3\n https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.40.0-h9ae0607_0.tar.bz2#b66b0b11f1b901f3c2bce9406bedfd40\n-https://conda.anaconda.org/conda-forge/osx-64/unixodbc-2.3.10-h7b58acd_0.tar.bz2#846a63a046f67d5e7998c2a1608a2a30\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h1d18e73_1.tar.bz2#5a538295f97a484ee332aacc131718b5\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.10.5-h35aa462_0.tar.bz2#2647690fb7719e72da8a547c2c845708\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.13.19-had634fe_3.conda#70a2f3e2b2b20a051980e2369f48ac3f\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n-https://conda.anaconda.org/conda-forge/osx-64/bitarray-2.7.2-py38hef030d1_0.conda#119a000a34e0cbecc8b42cd7220a359c\n+https://conda.anaconda.org/conda-forge/osx-64/bitarray-2.7.3-py38hef030d1_0.conda#8bae502de61a9ec4711b557a91a05f90\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2#55f612fe4a9b5f6ac76348b6de94aaeb\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/osx-64/clickhouse-cityhash-1.0.2.3-py38h038c8f4_4.tar.bz2#4ebabc90bebc9fe69f484cf0e5267c37\n@@ -119,33 +122,33 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.6.6-py38h4cd09af_0.conda#f0f480030a08edbb74962f69177d6a87\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n-https://conda.anaconda.org/conda-forge/noarch/flit-core-3.8.0-pyhd8ed1ab_0.tar.bz2#6d5e56de2e65da7aa35fd10131226efa\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda#86cc5867dfbee4178118392bae4a3c89\n-https://conda.anaconda.org/conda-forge/osx-64/freetds-1.3.16-h99143db_0.conda#3852da6fc91b51685186c4fd40032f67\n https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.3.3-py38hef030d1_0.tar.bz2#81e1a8060aad336b770abd3d1e0e6dd1\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.8-h3648f77_1.tar.bz2#f709a0451aa786175db4c3cfa2af35cc\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.10-he00a9fc_0.conda#93d4a0706c27961c200bdc49e09e1b75\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/osx-64/greenlet-2.0.2-py38h4cd09af_0.conda#9d7c68d4298fef9f149fbf707d403ae3\n+https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.52.1-py38h4cd09af_1.conda#239954659bfb1f08fbabdf25be2b6519\n https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-hccb3bdf_2.tar.bz2#ad799f4bcdacc510347c2d9d19b40bc3\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.2-pyhd8ed1ab_0.conda#1a7584b46014b66568069cb6ef2253bf\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.4-py38h98b9b1b_1.tar.bz2#c11eff21a36bc5809b8e23a05ee71df8\n-https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.14-h90f4b2a_0.tar.bz2#e56c432e9a78c63692fa6bd076a15713\n-https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.86.0-h57eb407_1.tar.bz2#edf3eb7cd24741ae15c18ac0a10e84e8\n+https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.15-h29502cd_0.conda#4f448677a99bfc41d3bd538c1302f1fb\n+https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.88.1-h6df9250_1.conda#1973ff6a22194ece3cb15caddf26db7c\n https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-haeb80ef_1015.tar.bz2#f1a092ddaedbde48dcf62a9455ce7e31\n https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2#968c46aa7f4032c3f3873f3452ed4c34\n-https://conda.anaconda.org/conda-forge/osx-64/libpq-15.1-h4aa9af9_1.conda#9abd7b8e31e1fef606402cf07a52e330\n-https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.16.0-h08c06f4_2.tar.bz2#c7a0779d1b87c4ba4897fc7f12b304ca\n-https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-hfa4350a_0.tar.bz2#d3b5a56369701e6a11bf300ba3394391\n+https://conda.anaconda.org/conda-forge/osx-64/libpq-15.2-h3640bf0_0.conda#411d9cd4559a2f2b7ec37fb4932fe9b9\n+https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.18.1-h16802d8_0.conda#bfacdfd4452689c3c7bdcb1e5ac6e5e9\n+https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-h70a068d_1.conda#c1d73d39f4bbff1903d1f4931355b78d\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/osx-64/lz4-4.3.2-py38h10aaa5c_0.conda#15b006a41a02183c7e4b5f8aaf1bce0d\n https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.2-py38hef030d1_0.conda#011ae40b08362bc2b0b549f4fc0bd79f\n@@ -153,23 +156,22 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.4-py38h98b9b1b_1.tar.bz2#0c2b95548ea54be43f13eddcddc4084c\n+https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.5-py38h98b9b1b_0.conda#c8dc8bd685921ea63ba672f4ae018f06\n https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.4-py38hef030d1_0.conda#92010b36d58baa10bb7de120caa6b237\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n-https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h5d0d7b0_1.tar.bz2#be533cc782981a0ec5eed28aa618470a\n+https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h13ac156_2.conda#299a29af9ac9f550ad459d655739280b\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n-https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.16.0-pyhd8ed1ab_0.conda#8efaddc1c8b8ce262c4d1a7c6571c799\n https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.4-py38hef030d1_0.tar.bz2#bb5ed5c32371ef153177237099353ce3\n https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263\n https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n@@ -180,30 +182,25 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/osx-64/pycryptodomex-3.16.0-py38hef030d1_0.conda#35a128acbcef64eb91efe411be14659b\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n+https://conda.anaconda.org/conda-forge/osx-64/pymssql-2.2.5-py38hd73ea38_2.tar.bz2#d6482eff9fe2e252d09cdf68795e0090\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/osx-64/pyrsistent-0.19.3-py38hef030d1_0.conda#01ca11f08679d88fc881a19902a0a008\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.6-pyhd8ed1ab_0.conda#525828457f46cf124526760c5400982d\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0-py38hef030d1_5.tar.bz2#e27d698dc29c6d5b49f1385bcd1d50f9\n-https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.0.0-py38h0b711fd_0.conda#76161bfe63aa12d9af08168ca6ae7ba4\n-https://conda.anaconda.org/conda-forge/osx-64/regex-2022.10.31-py38hef030d1_0.tar.bz2#395db1eb93344328c32996ac0049bbb6\n-https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f\n+https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.0.2-py38h0b711fd_0.conda#6aafe8de24c304eabdacbabfe290d9c7\n+https://conda.anaconda.org/conda-forge/osx-64/regex-2023.3.23-py38hef030d1_0.conda#6c1e3ba38fef8033045a99a1585ad510\n https://conda.anaconda.org/conda-forge/osx-64/rtree-1.0.1-py38hc59ffc2_1.tar.bz2#240fe117b19f85df95d01bc159f4a9a7\n-https://conda.anaconda.org/conda-forge/osx-64/ruff-0.0.249-py38he05994f_0.conda#fa703f6f13a0d6266ba95b77a1c886e7\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.0-pyhd8ed1ab_0.tar.bz2#edab14119efe85c3bf131ad747e9005c\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/osx-64/ruff-0.0.259-py38he05994f_0.conda#79d151626870a22d8f422dacb7a30fd2\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n-https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -213,21 +210,22 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/osx-64/tornado-6.2-py38hef030d1_1.tar.bz2#e0019ca44cd5e33c94ab2f1d77325739\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-15.0.0-py38hef030d1_0.tar.bz2#51020c740c53f14657f6307b9eb23f85\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.5.1-pyhd8ed1ab_0.conda#2a914654b9ade742049dab13e29571c6\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n-https://conda.anaconda.org/conda-forge/noarch/anyio-3.6.2-pyhd8ed1ab_0.tar.bz2#8ada050fa88f26916fc1e76e368a49fd\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.2.7-hb9330a7_13.tar.bz2#d7319f5973bc93e63eb1b32dbb4d03b8\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.2.20-h0ae4c0f_4.conda#8b0e31f714d69f0211419150cb2be6be\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.7.6-hcdd7835_0.conda#2f2b9a52b2dcbbdcdc183f4860e96f5b\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n https://conda.anaconda.org/conda-forge/osx-64/backports.zoneinfo-0.2.1-py38hef030d1_7.tar.bz2#a7f9af548356f23c10d5baa4abeef972\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h904041c_1014.tar.bz2#2e7b4350178ed52bb6fd2b1ecbeeed4f\n@@ -235,194 +233,192 @@ https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py38hb368cf1_3.conda#a\n https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.2.0-hd56cc12_0.conda#28e03cefd79aa28ec0e313e5a9c71f5b\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/osx-64/coverage-7.1.0-py38hef030d1_0.conda#fd48b6e78d3094a2454443e08909d34f\n-https://conda.anaconda.org/conda-forge/osx-64/curl-7.86.0-h57eb407_1.tar.bz2#66971030ca300059cb6fbd27da348e10\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-64/coverage-7.2.2-py38hef030d1_0.conda#24e21baa563718c49fff4ff96fabb32d\n+https://conda.anaconda.org/conda-forge/osx-64/curl-7.88.1-h6df9250_1.conda#2cf75b9fb10c82425c94e12273ac7791\n https://conda.anaconda.org/conda-forge/osx-64/cytoolz-0.12.0-py38hef030d1_1.tar.bz2#4432b7d11dc542646fcae6162fa319af\n-https://conda.anaconda.org/conda-forge/osx-64/fastavro-1.7.1-py38hef030d1_0.conda#ab91d7d5d452ca794eca5a9b1e3ca51f\n-https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py38hef030d1_1.tar.bz2#2a3f30545977dc93e1059fcc651eecfc\n+https://conda.anaconda.org/conda-forge/osx-64/fastavro-1.7.3-py38hef030d1_0.conda#392e3036399087cb1b6218819061eead\n+https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.39.2-py38hef030d1_0.conda#15ee81f0df98a16632877ccffe0fe9bc\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.47.1-py38hb2f8fee_6.tar.bz2#2f0f42a6e82dadbbb46388a7c3bb9222\n-https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_hc782337_100.tar.bz2#62834ae35eb346b324b3b9c4fdc5e539\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_h48135f9_101.conda#2ee4811ba5f72f7f12f69b3ec2d6cd96\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2#644d63e9379867490b67bace400b2a0f\n-https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h1e214de_3.tar.bz2#350af2b75c58dc16985fa97298469143\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h4685329_4.conda#656fb395549f224a3336c7cae28d7a93\n+https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.8.0-h176059f_1.conda#0e1b18b92865c0130f4f8b4392e8558c\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py38h85595ef_3.tar.bz2#cdeb59b01040db5a392caa5416a59084\n+https://conda.anaconda.org/conda-forge/osx-64/pillow-9.4.0-py38hf04c7c8_1.conda#da99348cdc2f1f486de05d7bd29b531e\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/osx-64/postgresql-15.1-h7bc2cb3_1.conda#6143380ea69db7034a24ee6a9ac5d1cb\n-https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.0-hcbd9701_0.tar.bz2#78ee95e87e5143d0e4a17d4aeef56411\n-https://conda.anaconda.org/conda-forge/osx-64/protobuf-3.20.2-py38h4cd09af_1.conda#7f16090caecd7d89a259e59d0d75d1ca\n-https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.3-py38h436fe72_2.conda#eb9fcb34ad8bd6db1f0725a7466e5cb2\n+https://conda.anaconda.org/conda-forge/osx-64/postgresql-15.2-hbea33b9_0.conda#4ffe00143090158bb7f5fc2f4f1a920c\n+https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.1-hf909084_2.conda#96d16a3411f40f30f622f7594ddae222\n+https://conda.anaconda.org/conda-forge/osx-64/protobuf-4.21.12-py38h4cd09af_0.conda#8e7fb85084824f63ed3af02f52a22b2d\n+https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.3-py38he502179_2.conda#3b42bcbbda3904057dc1fc85108d3d3f\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/osx-64/pymssql-2.2.7-py38hd73ea38_0.conda#f4e2c118c16bb96d92bfb9e70a641836\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n-https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520\n https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n https://conda.anaconda.org/conda-forge/osx-64/sqlalchemy-1.4.46-py38hef030d1_0.conda#ed4ef7f77441144feb0aac3b78453e67\n-https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyhd1c38e8_0.conda#046120b71d8896cb7faef78bfdbfee1e\n https://conda.anaconda.org/conda-forge/osx-64/thrift-0.16.0-py38h4cd09af_2.tar.bz2#9d196922c7da8d2c7b785801c2dbeac7\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/osx-64/watchdog-2.2.1-py38h3ddec92_0.conda#81c26bea852d1ea421a9d0213b6d9aca\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-64/watchdog-3.0.0-py38h3ddec92_0.conda#49a6c90765859fe469e37fcaf0716c11\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.4-h2007e90_1.tar.bz2#da5951ed1609c4fdd135db32c4c8ef36\n https://conda.anaconda.org/conda-forge/osx-64/yarl-1.8.2-py38hef030d1_0.conda#1261d3c75b122999f45a77c6f49bc907\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n-https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py38hef030d1_3.tar.bz2#fc1bc20add8eff07c367973bba25e8eb\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.8.186-h7c85d8e_4.tar.bz2#83537fd65fe827f41b96851e6c92fd73\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.6.26-hcaaecf5_1.conda#57e3968abdb1414279c83aa1145dc65d\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.8.6-ha4e05e3_12.conda#ae6f4dedbbb14f41d643986af3d87d23\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/osx-64/brotlipy-0.7.0-py38hef030d1_1005.tar.bz2#2fa6826f6f94c847bf26709f2162a09c\n-https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.4-py38ha6c3189_0.conda#110b7479e1d06b3a4999132367596dd9\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.4-py38h4257468_0.conda#3903793c2999400c47e190b920416188\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-he29fd1c_4.tar.bz2#7fab5b9379958e9d3f784842c00c8e66\n+https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-hd690177_6.conda#13da0cc6fabf8971a3bc3ab1de1a9bb9\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/osx-64/google-crc32c-1.1.2-py38h664dbe5_4.tar.bz2#d693f30f1be71a3d5aa442ba45af099b\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-6.0.0-h08f8713_0.conda#3852d6ef7b77da3e81074a8e487e7df5\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.0-h5c1f988_0.conda#4aab67daf291f97462a5a947aaad48ea\n https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2#28592eab0f05bcf9969789e87f754e11\n https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2#406ad426aade5578b90544cc2ed4a79b\n-https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.8.1-nompi_hc61b76e_106.tar.bz2#502e31e4a400216854da4e9933fb21c2\n-https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-hc1c2c66_22.tar.bz2#13513d4171137de61c7f8dd7c2fa4e74\n+https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.1-nompi_h56690a0_101.conda#47f469ea7abef24fe25d7ea8f3c57e2a\n+https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-hd6e941a_23.conda#f8b8c912eca84fdb35215e02dcd4a0f4\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/osx-64/poppler-22.12.0-hf2ff1a1_0.conda#ad1c9f970971bc448424cff37c99eddd\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-64/poppler-23.03.0-h6e9091c_0.conda#1764e7410be61cdaf6cf6b0b27cb87a2\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.1-py38hb2f5155_0.conda#b75f106e6a8dc8da646a4c3ab4e1830e\n+https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.1-py38hd2e8ff6_1.conda#4907c91f6a5222390079241e51ae852b\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n https://conda.anaconda.org/conda-forge/osx-64/pytz-deprecation-shim-0.1.0.post0-py38h50d1736_3.tar.bz2#0a4f8f964bc2d4df93a39fd7b7f73d88\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.13.2-h3b7b576_0.conda#d75ea515b550689adc41b26c7f9eaef6\n+https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.13.2-h8b9cbf0_0.conda#a10738d4788cf6b0b0d9bff2e324b942\n+https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py38h98b9b1b_3.tar.bz2#e97bba5bb846f9c009e8c54a79776c80\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.8.4-py38hef030d1_0.conda#a3d9464d7e0657fed5fc0895cf545af7\n-https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-21.3.0-pyhd8ed1ab_0.tar.bz2#a0b402db58f73aaab8ee0ca1025a362e\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.2.7-hba8c00c_1.conda#7bca115eac894cd5d8f00aabe4bbb1d5\n https://conda.anaconda.org/conda-forge/osx-64/black-23.1.0-py38h50d1736_0.conda#3e9d0583b974c1bb97abad0d2eb9450a\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.2.0-py38h50d1736_0.conda#c2a86675f1f4a113b61b99093b3acffe\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.6.3-pyhd8ed1ab_0.conda#d98c5196ab6ffeb0c2feca2912801353\n-https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.6.1-h46da3b9_1.conda#932a6d9e98859cfbc821112df6602207\n+https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.3.0-py38h50d1736_0.conda#c342b82641ef032fa8b256eb4f0a5649\n+https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.6.2-hd7924a8_9.conda#499973e2bcb547bde4289905cb7a9676\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.2-py38h5a2dcdf_0.conda#b436529f3e10fdad56e64b5be8371e93\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.13-hbd9bf65_0.conda#c979037ff3fc99257ec7cb28bb0083f4\n+https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.14-hbd9bf65_0.conda#7de54d83e9c685b742e0a4d81b271de0\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/osx-64/tzlocal-4.2-py38h50d1736_2.tar.bz2#8f886c601c21d050d5027b162a28382d\n-https://conda.anaconda.org/conda-forge/osx-64/arrow-cpp-6.0.2-py38h24693e7_1_cpu.tar.bz2#bbf14768baa1d3abaf7cb1970843106d\n+https://conda.anaconda.org/conda-forge/osx-64/tzlocal-4.3-py38h50d1736_0.conda#06afedbd53ebba918efa9c8800e767f8\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.19.8-h8b21dc2_12.conda#a24352ea6d682777803b088279be8082\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/osx-64/clickhouse-driver-0.2.5-py38hef030d1_0.conda#90187bfe4b77fe3c3579c2f0caac6139\n https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.0.7-py38h98b9b1b_0.conda#c3d26ebf025c7b9c9ff2fbcaee1f7646\n-https://conda.anaconda.org/conda-forge/osx-64/gdal-3.6.1-py38hd9e68d0_1.conda#b22e8b638e43e2f4028b3a7579fd0bbe\n+https://conda.anaconda.org/conda-forge/osx-64/gdal-3.6.2-py38h86a93f0_9.conda#24358f89629804abfb240240eed0fc8c\n https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h7c1209e_2.tar.bz2#307614630946527e302b7dd042a5cfa2\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda#e67b634578fefbb312cd6cfd34b63d86\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.54.4-h3d48ba6_0.tar.bz2#1a106d9119086f73b5f88c650f700210\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n https://conda.anaconda.org/conda-forge/osx-64/pandas-1.5.3-py38hec72209_0.conda#0669044f9100615e0b2d1047f8d50253\n-https://conda.anaconda.org/conda-forge/osx-64/polars-0.16.7-py38he94b92c_0.conda#27e2700d2562038154f15d53c0952b9d\n+https://conda.anaconda.org/conda-forge/osx-64/polars-0.16.16-py38he94b92c_0.conda#c43a603b4856c1c698fb3dc9be66c605\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n https://conda.anaconda.org/conda-forge/osx-64/shapely-1.8.5-py38h4d28eb3_2.tar.bz2#96a3d88bbc497efe2bd9d4022ff3cdcf\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/osx-64/fiona-1.8.22-py38h4a1972a_5.conda#4bada73f02588d0408e2cb2098f2bb20\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.10.57-h0d082ec_8.conda#238e81ff0a438402ca73c34dc8d878f5\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-64/fiona-1.9.1-py38h4a1972a_0.conda#7fc320c44d827ae16767c3196b5d0dec\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n-https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.0.5-hc51f7b9_0.conda#589501e7b16648c032a537b6a0870dbe\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh736e0ef_0.conda#aa43ffb10a39d9eb2538761a3f838a87\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n-https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.0-py38hcb346ec_0.conda#452ca7853f51d31a5b4425af9ef730a4\n+https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.1.0-hc51f7b9_0.conda#fd7e8ad97c77e364ed28b655f8c27b19\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.1-py38hcb346ec_0.conda#1f1eea98c232c8ef720175e12b00d0c4\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-64/libarrow-11.0.0-h547aefa_13_cpu.conda#1114268ce25dd22ad08cd92209d98a3c\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n-https://conda.anaconda.org/conda-forge/osx-64/pyarrow-6.0.2-py38h26ec201_1_cpu.tar.bz2#121795687e4f341822766b9f4da7d9f7\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/osx-64/datafusion-0.7.0-py38he94b92c_0.conda#43ac185805b00b6f3adf778e2331ef96\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-64/arrow-cpp-11.0.0-h694c41f_13_cpu.conda#b692e17c44e10422db31ba8668f7fbec\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.3.0-pyhd8ed1ab_0.conda#644c60cdd1e85407fc28b9085438c7a0\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-0.7.0-py38h20c7665_1.conda#5e4b3c374d65079906a49c19c4aa247f\n-https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.0-py38hfb8b963_2.conda#dc84768b5df414c0bab8fe921726c4fc\n-https://conda.anaconda.org/conda-forge/osx-64/snowflake-connector-python-2.8.3-py38h11ea1d4_0.conda#c88fd2baadb1ccdb991bfbc6be6c4689\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.1-py38hfb8b963_0.conda#8633db487016b9345074650764e8239f\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n-https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.2-pyhd8ed1ab_0.tar.bz2#40be846cd4e78672a40e43db9dae753c\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.2.1-py38h573ff9c_0.conda#9679e52a9d9d8f76243b4e8c5a61bbc3\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/osx-64/google-cloud-bigquery-core-3.4.2-py38h50d1736_0.conda#8970e98ed1512b535d310893973e11f4\n+https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.2.2-py38h1081964_1.conda#28ceb0f2443f059ab8415eb54bde8b95\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n-https://conda.anaconda.org/conda-forge/noarch/nbclassic-0.5.2-pyhd8ed1ab_0.conda#c5039404bd47fbdc811b5e9282c51afe\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-64/pyarrow-11.0.0-py38h5866706_13_cpu.conda#321bd73e2bbb38ada52b5f183401e5fc\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/osx-64/datafusion-0.7.0-py38he94b92c_0.conda#43ac185805b00b6f3adf778e2331ef96\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/notebook-6.5.2-pyha770c72_1.tar.bz2#7bf26ca095481f206e6f9dd7681085fe\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.1-pyha770c72_0.tar.bz2#03cd073d4dc0623b857bf9e175d0f736\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.7.1-pyhd8ed1ab_0.tar.bz2#96ba78bf526df670bf9562d6100eb627\n-https://conda.anaconda.org/conda-forge/osx-64/google-cloud-bigquery-3.4.2-py38h50d1736_0.conda#9727c030d01c4002efd25009fcf7f939\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-0.7.1-py38h00b9632_0.conda#6358dcc6af1184b25448ebc4fb82e9f6\n+https://conda.anaconda.org/conda-forge/osx-64/snowflake-connector-python-3.0.2-py38h0c08250_0.conda#a978748e38cd66a8595206d936322c4f\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "osx-64-3.9.lock": "@@ -1,8 +1,8 @@\n # Generated by conda-lock.\n # platform: osx-64\n-# input_hash: 31a076201be11c99f4dcbd74b9760d887aed1fedc019fe84f66431cb2fb38e97\n+# input_hash: 719d1c8e29476f43ea22a3c4900a5c0291fae20d116f00f4f3b68e91d126a5fb\n @EXPLICIT\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.6.2-h0d85af4_0.tar.bz2#0f72a3415c40ead80c978fec230f49ee\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.8.14-hb7f2c08_0.conda#a2ded8f5113b04e5e7274d044f75cbbc\n https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2#37edc4e6304ca87316e160f5ca0bd1b5\n https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.18.1-h0d85af4_0.tar.bz2#00b3e98a61e6430808fe7a2534681f28\n https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.12.7-h033912b_0.conda#af2bdcd68f16ce030ca957cdeb83d88a\n@@ -12,12 +12,12 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/osx-64/freexl-1.0.6-hb7f2c08_1.tar.bz2#4fc494f8539871247167bbe4167f3277\n https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2#f1c6b41e0f56998ecd9a3e210faa1dc0\n-https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hbcb3906_2.tar.bz2#be8f747c37e4d7e346c133e641966750\n+https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda#aca150b0186836f893ebac79019e5498\n https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hb7f2c08_3.conda#6b55131ae9445ef38746dc6b080acda9\n https://conda.anaconda.org/conda-forge/osx-64/json-c-0.16-h01d06f9_0.tar.bz2#6696477dbfcb5b7ea8559865e7f9dbef\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2#37157d273eaf3bc7d6862104161d9ec9\n-https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2#208a6a874b073277374de48a782f6b10\n-https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.14-hb7f2c08_0.tar.bz2#ce2a6075114c9b64ad8cace52492feee\n+https://conda.anaconda.org/conda-forge/osx-64/libcxx-15.0.7-h71dddab_0.conda#ad1c6c1ddfd7717e3d46bf06ff2e9400\n+https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.17-hac1461d_0.conda#e3894420cf8b6abbf6c4d3d9742fbb4a\n https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2#79dc2be110b2a3d1e97ec21f691c50ad\n https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9\n https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2#691d103d11180486154af49c037b7ed9\n@@ -26,20 +26,21 @@ https://conda.anaconda.org/conda-forge/osx-64/libtool-2.4.7-hf0c8a7f_0.conda#1f8\n https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2#db98dc3e58cbc11583180609c429c17d\n https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2#28807bef802a354f9c164e7ab242c5cb\n https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2#35eb3fce8d51ed3c1fd4122bad48250b\n-https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-15.0.7-h61d9ccf_0.conda#3faa9933dff6e96333b5ca5274674b63\n+https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.0-h61d9ccf_0.conda#00d0daa29e5a4ce56ef9b351148a1e88\n https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2#76217ebfbb163ff2770a261f955a5861\n-https://conda.anaconda.org/conda-forge/osx-64/pandoc-2.19.2-h694c41f_1.tar.bz2#fa70c816e73fca7b3c7653e8c7e3bfdb\n https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2#09a583a6f172715be21d93aaa1b42d71\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2#addd19059de62181cd11ae8f4ef26084\n https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-3_cp39.conda#021e2768e8eaf24ee8e25aec64d305a1\n-https://conda.anaconda.org/conda-forge/osx-64/tzcode-2022g-hb7f2c08_0.conda#f1bf42ae6c2a752b4c064140365563c2\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/osx-64/tzcode-2023b-hb7f2c08_0.conda#09f3f3b89c6d7d01de40772cc58fe5bf\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.9-h35c211d_0.tar.bz2#c5049997b2e98edfbcdd294582f66281\n https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2#86ac76d6bf1cbb9621943eb3bd9ae36e\n https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10\n https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2#d7e08fcf8259d742156188e8762b4d20\n-https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.11-h0010a65_7.tar.bz2#c86bc781dc7b3ba4e6130ffb14da0d6b\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.16-h99c63db_5.conda#fbafb2857152f62fa5d48145be10dec8\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.8-h99c63db_0.conda#30706b270f0d8eaced4ef4a226aa9d0b\n+https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.14-h99c63db_5.conda#c3dd2e2e309f28ff492fc16ddf2f3044\n https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_0.tar.bz2#7648a729fc8b7272596e90b0ab0a3e98\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/osx-64/geos-3.11.1-hf0c8a7f_0.tar.bz2#b8ac0c20383087c33ac8e5e330072832\n@@ -49,68 +50,70 @@ https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2#dedc9\n https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2#5f6e7f98caddd0fc2d345b207531814c\n https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2#376635049e9b9b0bb875efd39dcd7b3b\n https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2#f9d6a4c82889d5ecedec1d90eb673c55\n-https://conda.anaconda.org/conda-forge/osx-64/libabseil-20220623.0-cxx17_h844d122_6.conda#14fcfd14fb90f40a8be87f48a3f89355\n+https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230125.0-cxx17_hf0c8a7f_1.conda#86f75c350dd5951f41d4056c35ba4845\n+https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda#7c0f82f435ab4c48d65dc9b28db2ad9e\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2#7f952a036d9014b4dab96c6ea0f8c2a7\n https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2#b36a3bfe866d9127f25f286506982166\n https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2#23d6d5a69918a438355d7cbc4c3d54c9\n https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b\n-https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_28.conda#4b0400521ae098af1c87350442d88d1c\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda#5a544130e584b1f204ac896ff071d5b3\n https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda#35e4928794c5391aec14ffdf1deaaee5\n-https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.20.2-hbc0c0cd_0.tar.bz2#016fda52742981ae0a2c49f3e0ff930b\n+https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.21.12-hbc0c0cd_0.conda#7a9b17cfb3e57143e4e9118b5244b691\n https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-he49afe7_4.tar.bz2#b1c13764417c32fa87fac733caa82a64\n https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.40.0-ha978bb4_0.tar.bz2#ceb13b6726534b96e3b4e3dda91e9050\n https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2#eb7860935e14aec936065cbc21a1a962\n https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991\n https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda#a9e56c98d13d8b7ce72bf4357317c29b\n-https://conda.anaconda.org/conda-forge/osx-64/openssl-1.1.1t-hfd90126_0.conda#788ef682cff438725828036383e748f5\n+https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.0-hfd90126_0.conda#a7df3470c748a517663bf095c2ac0235\n+https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.1-h9d075a6_0.conda#5d082d93256a60f6311068849f7fca10\n https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2#e0f80c8f3a0352a54eddfe59cd2b25b1\n-https://conda.anaconda.org/conda-forge/osx-64/re2-2022.06.01-hb486fe8_1.conda#317b48dc2c5ab6ceccdd9ced4e1ef47f\n-https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2#89fa404901fa8fb7d4f4e07083b8d635\n-https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.9-h225ccf5_2.tar.bz2#eb2c4c3544099a357db4c02eda1a0766\n+https://conda.anaconda.org/conda-forge/osx-64/re2-2023.02.02-hf0c8a7f_0.conda#1c2886c84068be32f68493245672ec31\n+https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e\n+https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73\n https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2#8e9480d9c47061db2ed1b4ecce519a7f\n https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.4-he49afe7_1.tar.bz2#1972d732b123ed04b60fd21e94f0b178\n https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2#be90e6223c74ea253080abae19b3bdb1\n https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda#40a188783d3c425bdccc9ae9104acbb8\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.5.11-hd2e2f4b_0.tar.bz2#09bd616bd04399d208dc06b909a5e1c0\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.5.21-hf54dd2f_2.conda#b4f707705e5211e13516e8a1889c6535\n https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.2-hebb52c4_0.conda#2e726e782e57ba3e70f2e85891377cd5\n https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.78.0-h8b082ac_1.tar.bz2#810ad57aa3057a76ea1c65731d58da55\n https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2#aac5ad0d8f747ef7f871508146df75d9\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n+https://conda.anaconda.org/conda-forge/osx-64/freetds-1.00.44-0.tar.bz2#db962bf27f5f6a27411806fd2cd8cc3e\n https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda#852224ea3e8991a8342228eab274840e\n https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2#69eb97ca709a136c53fdca1f2fd33ddf\n-https://conda.anaconda.org/conda-forge/osx-64/grpc-cpp-1.46.4-h6579160_7.tar.bz2#57a3f07b87107e12ca611c78c77ee1f3\n https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h7aa5921_5.tar.bz2#a5e171d71c6b524409de40d81c098758\n-https://conda.anaconda.org/conda-forge/osx-64/krb5-1.19.3-hb49756b_0.tar.bz2#e60363be26ab2a74326c06195d638447\n-https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.10-h815e4d9_4.tar.bz2#adc6c89498c5f6fe5ba874d8259e7eeb\n-https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-10_4_0_h97931a8_28.conda#aa6a12546c19f6d816bf80371e19a409\n+https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda#db11fa2968ef0837288fe2d7f5b77a50\n+https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.10-h7d65743_4.tar.bz2#ed607da8c2602aeddb4ae723819fcdcc\n+https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda#97451338600bd9c5b535eb224ef6c471\n https://conda.anaconda.org/conda-forge/osx-64/libglib-2.74.1-h4c723e1_1.tar.bz2#68a698fe240032c2ff587028ed51b155\n-https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.51.0-h0dd9d14_0.conda#6c83a076112d9496b4cb5f940e40023a\n+https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.52.1-h5bc3d57_1.conda#ec992eb9d33e9707cdecabc1464f0ea4\n+https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda#12ac7d100bf260263e30a019517f42a2\n https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-h9461dca_12.tar.bz2#cbf6767a38ffbc9be29cf26045e81faf\n-https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h7535e13_3.tar.bz2#acc1797f7b89018eeba2029c56dfdf0c\n-https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.4.0-h6268bbc_5.conda#551fc78ba147767ea5905d0746e2fbb5\n-https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-hb9e07b5_0.tar.bz2#13ba8bf8f44cdac2e5401dac20a36040\n-https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h3ad4413_1.tar.bz2#1f22d7bc7ffd031b0cf3a5a2d257a6bf\n-https://conda.anaconda.org/conda-forge/osx-64/nss-3.88-h78b00b3_0.conda#95b6bfc95f9c11286fcc2b11da36a5e8\n-https://conda.anaconda.org/conda-forge/osx-64/orc-1.7.6-hc067c44_0.tar.bz2#34d99d2c60cd0aa4f36c3a4ed8192d1e\n-https://conda.anaconda.org/conda-forge/osx-64/python-3.9.15-h531fd05_0_cpython.conda#c1c2ff367f52b7624a226df4621ba7b5\n+https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h47af595_3.tar.bz2#5a28624eeb7812b585b9e2d75f846ba2\n+https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.0-hee9004a_2.conda#35f714269a801f7c3cb522aacd3c0e69\n+https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-h201ad9d_4.conda#2101dd548f0601be252e27e48fa532fa\n+https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h6db710c_1.tar.bz2#ce732d37e479919f3d22b1ccdeb858ac\n+https://conda.anaconda.org/conda-forge/osx-64/nss-3.89-h78b00b3_0.conda#1eb1408ecae62d98a902636d46f5595c\n+https://conda.anaconda.org/conda-forge/osx-64/orc-1.8.3-ha9d861c_0.conda#f1fdbf0e6c47818a8ba08b0ac4fbd6b6\n+https://conda.anaconda.org/conda-forge/osx-64/python-3.9.16-h709bd14_0_cpython.conda#37f637999bb01d0474492ed14660c34b\n https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.40.0-h9ae0607_0.tar.bz2#b66b0b11f1b901f3c2bce9406bedfd40\n-https://conda.anaconda.org/conda-forge/osx-64/unixodbc-2.3.10-h7b58acd_0.tar.bz2#846a63a046f67d5e7998c2a1608a2a30\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h1d18e73_1.tar.bz2#5a538295f97a484ee332aacc131718b5\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.10.5-h35aa462_0.tar.bz2#2647690fb7719e72da8a547c2c845708\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.13.19-had634fe_3.conda#70a2f3e2b2b20a051980e2369f48ac3f\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/osx-64/backports.zoneinfo-0.2.1-py39h6e9494a_7.tar.bz2#5727630b9e2234fbe5ba637c763a80c7\n-https://conda.anaconda.org/conda-forge/osx-64/bitarray-2.7.2-py39ha30fb19_0.conda#63bb0cb252c192086434425f10ecbfb4\n+https://conda.anaconda.org/conda-forge/osx-64/bitarray-2.7.3-py39ha30fb19_0.conda#550fbf64e85b53bccb34e061a8f82597\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2#55f612fe4a9b5f6ac76348b6de94aaeb\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/osx-64/clickhouse-cityhash-1.0.2.3-py39hfd1d529_4.tar.bz2#d215d98038b95999cfa3e8cba86fbeeb\n@@ -120,31 +123,33 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.6.6-py39h7a8716b_0.conda#95384ab2f1f488626e88c57b5c390655\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda#86cc5867dfbee4178118392bae4a3c89\n-https://conda.anaconda.org/conda-forge/osx-64/freetds-1.3.16-h99143db_0.conda#3852da6fc91b51685186c4fd40032f67\n https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.3.3-py39ha30fb19_0.tar.bz2#66467edba60603caf75d585e0fb1c70c\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.8-h3648f77_1.tar.bz2#f709a0451aa786175db4c3cfa2af35cc\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.10-he00a9fc_0.conda#93d4a0706c27961c200bdc49e09e1b75\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/osx-64/greenlet-2.0.2-py39h7a8716b_0.conda#fcba624b29d6b8857aac6d58c8617c9b\n+https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.52.1-py39h7a8716b_1.conda#65dd147b6ab8c462bf97b8f341534a6b\n https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-hccb3bdf_2.tar.bz2#ad799f4bcdacc510347c2d9d19b40bc3\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.4-py39h92daf61_1.tar.bz2#7720e059630e25ab17ab12677e59c615\n-https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.14-h90f4b2a_0.tar.bz2#e56c432e9a78c63692fa6bd076a15713\n-https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.86.0-h57eb407_1.tar.bz2#edf3eb7cd24741ae15c18ac0a10e84e8\n+https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.15-h29502cd_0.conda#4f448677a99bfc41d3bd538c1302f1fb\n+https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.88.1-h6df9250_1.conda#1973ff6a22194ece3cb15caddf26db7c\n https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-haeb80ef_1015.tar.bz2#f1a092ddaedbde48dcf62a9455ce7e31\n https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2#968c46aa7f4032c3f3873f3452ed4c34\n-https://conda.anaconda.org/conda-forge/osx-64/libpq-15.1-h4aa9af9_1.conda#9abd7b8e31e1fef606402cf07a52e330\n-https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.16.0-h08c06f4_2.tar.bz2#c7a0779d1b87c4ba4897fc7f12b304ca\n-https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-hfa4350a_0.tar.bz2#d3b5a56369701e6a11bf300ba3394391\n+https://conda.anaconda.org/conda-forge/osx-64/libpq-15.2-h3640bf0_0.conda#411d9cd4559a2f2b7ec37fb4932fe9b9\n+https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.18.1-h16802d8_0.conda#bfacdfd4452689c3c7bdcb1e5ac6e5e9\n+https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-h70a068d_1.conda#c1d73d39f4bbff1903d1f4931355b78d\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/osx-64/lz4-4.3.2-py39hd0af75a_0.conda#c42a59cd02262ce80f221786f23ebdfb\n https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.2-py39ha30fb19_0.conda#3b7b34916156e45ec52df74efc3db6e4\n@@ -152,18 +157,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.4-py39h92daf61_1.tar.bz2#1514cec1741a05af5d55d0e792e9dee6\n+https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.5-py39h92daf61_0.conda#a2a730c9085efb9b5890b8786ddc9fe7\n https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.4-py39ha30fb19_0.conda#a09340f1d9e5b4936018332d7ac69dec\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n-https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h5d0d7b0_1.tar.bz2#be533cc782981a0ec5eed28aa618470a\n+https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h13ac156_2.conda#299a29af9ac9f550ad459d655739280b\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -178,26 +183,25 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/osx-64/pycryptodomex-3.16.0-py39ha30fb19_0.conda#e42fecad1e661def904791079b5e0597\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n+https://conda.anaconda.org/conda-forge/osx-64/pymssql-2.2.5-py39h44ddb2b_2.tar.bz2#43a256711b3b905c206141e9db94f60b\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/osx-64/pyrsistent-0.19.3-py39ha30fb19_0.conda#e4e22a74d0944ff8aa81167aa9ddf9c6\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0-py39ha30fb19_5.tar.bz2#45794cac8eadcc11b3f26dda1705bf62\n-https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.0.0-py39hed8f129_0.conda#5d405bf0fb8a07ad1da8c059566fd800\n-https://conda.anaconda.org/conda-forge/osx-64/regex-2022.10.31-py39ha30fb19_0.tar.bz2#610d64fb38efc7f81877c5b4e10ea369\n+https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.0.2-py39hed8f129_0.conda#06091849497dcff49edba34526b391fa\n+https://conda.anaconda.org/conda-forge/osx-64/regex-2023.3.23-py39ha30fb19_0.conda#d0f043898a8bfe793fb2d154f8cf61ec\n https://conda.anaconda.org/conda-forge/osx-64/rtree-1.0.1-py39h7d0d40a_1.tar.bz2#1043072d13c423eef9a25555652a2cdc\n-https://conda.anaconda.org/conda-forge/osx-64/ruff-0.0.249-py39hedce109_0.conda#97e19bfe3382d44116afa7ba036328f9\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/osx-64/ruff-0.0.259-py39hedce109_0.conda#007521fc011c15ae00d8f2dc4b9a633b\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -207,19 +211,21 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/osx-64/tornado-6.2-py39ha30fb19_1.tar.bz2#07917d8456ca9aa09acf950019bf53b2\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-15.0.0-py39ha30fb19_0.tar.bz2#17876b4aebf783fb7bba980a79516892\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.2.7-hb9330a7_13.tar.bz2#d7319f5973bc93e63eb1b32dbb4d03b8\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.2.20-h0ae4c0f_4.conda#8b0e31f714d69f0211419150cb2be6be\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.7.6-hcdd7835_0.conda#2f2b9a52b2dcbbdcdc183f4860e96f5b\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h904041c_1014.tar.bz2#2e7b4350178ed52bb6fd2b1ecbeeed4f\n@@ -227,41 +233,40 @@ https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py39h131948b_3.conda#3\n https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.2.0-hd56cc12_0.conda#28e03cefd79aa28ec0e313e5a9c71f5b\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/osx-64/coverage-7.1.0-py39ha30fb19_0.conda#be24d2d5a14dd95d77376ca68df86e94\n-https://conda.anaconda.org/conda-forge/osx-64/curl-7.86.0-h57eb407_1.tar.bz2#66971030ca300059cb6fbd27da348e10\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-64/coverage-7.2.2-py39ha30fb19_0.conda#3ec6b8ebf61d4f19fd91a32990df7429\n+https://conda.anaconda.org/conda-forge/osx-64/curl-7.88.1-h6df9250_1.conda#2cf75b9fb10c82425c94e12273ac7791\n https://conda.anaconda.org/conda-forge/osx-64/cytoolz-0.12.0-py39ha30fb19_1.tar.bz2#1d779faefd44897457b06aeacb685170\n-https://conda.anaconda.org/conda-forge/osx-64/fastavro-1.7.1-py39ha30fb19_0.conda#18f1adc00de733b4fc4ec5de0bcccf78\n-https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py39ha30fb19_1.tar.bz2#d4ef9879362c40c8c346a0b6cd79f2e0\n+https://conda.anaconda.org/conda-forge/osx-64/fastavro-1.7.3-py39ha30fb19_0.conda#a0f72987b4dc48bc543f87aeb700960f\n+https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.39.2-py39ha30fb19_0.conda#73ca1f92cdf2671e99e50c7c382a321c\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.46.4-py39h54b4606_7.tar.bz2#38727d64cd7987133b38556a1c0c2094\n-https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_hc782337_100.tar.bz2#62834ae35eb346b324b3b9c4fdc5e539\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_h48135f9_101.conda#2ee4811ba5f72f7f12f69b3ec2d6cd96\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2#644d63e9379867490b67bace400b2a0f\n-https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h1e214de_3.tar.bz2#350af2b75c58dc16985fa97298469143\n-https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.1.0-habe576c_1.tar.bz2#165d074d3ad3204232cf0bf72a24e34d\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h4685329_4.conda#656fb395549f224a3336c7cae28d7a93\n+https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.8.0-h176059f_1.conda#0e1b18b92865c0130f4f8b4392e8558c\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py39h35d4919_3.tar.bz2#6ed8a5881729d8f7ee7cde78c13241a4\n+https://conda.anaconda.org/conda-forge/osx-64/pillow-9.4.0-py39h7f5cd59_1.conda#d2f1bdaa85fd34020259533efeeb40bb\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/osx-64/postgresql-15.1-h7bc2cb3_1.conda#6143380ea69db7034a24ee6a9ac5d1cb\n-https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.0-hcbd9701_0.tar.bz2#78ee95e87e5143d0e4a17d4aeef56411\n-https://conda.anaconda.org/conda-forge/osx-64/protobuf-3.20.2-py39h7a8716b_1.conda#71d4f72df5b6ef9e9b830359596a4a20\n-https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.3-py39hde36b5c_2.conda#8429c996f96645a7a9ab976fd3f29a00\n+https://conda.anaconda.org/conda-forge/osx-64/postgresql-15.2-hbea33b9_0.conda#4ffe00143090158bb7f5fc2f4f1a920c\n+https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.1-hf909084_2.conda#96d16a3411f40f30f622f7594ddae222\n+https://conda.anaconda.org/conda-forge/osx-64/protobuf-4.21.12-py39h7a8716b_0.conda#f4fae049b4e5bec90ccda2f0660c0a8a\n+https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.3-py39h66c63e9_2.conda#21ef7afd6ed691f18e32096abd08b296\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/osx-64/pymssql-2.2.7-py39h44ddb2b_0.conda#8cd1147ac2ccd2f59874ad991e3504e4\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/osx-64/pytz-deprecation-shim-0.1.0.post0-py39h6e9494a_3.tar.bz2#6531eb0bc2befca7c0c03aca323adef1\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n@@ -270,23 +275,23 @@ https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf4\n https://conda.anaconda.org/conda-forge/osx-64/sqlalchemy-1.4.46-py39ha30fb19_0.conda#de90eaef0bf42b4d8ef0a04d7dbdd3b2\n https://conda.anaconda.org/conda-forge/osx-64/thrift-0.16.0-py39h7a8716b_2.tar.bz2#fa937b64729f19b2154ec05a3d57eda2\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/osx-64/watchdog-2.2.1-py39h82e4197_0.conda#9cbe7cb00c42d3c41a8f07f265eccc73\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-64/watchdog-3.0.0-py39h82e4197_0.conda#5bccba856bc16b46f2a6c329b672f54d\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.4-h2007e90_1.tar.bz2#da5951ed1609c4fdd135db32c4c8ef36\n https://conda.anaconda.org/conda-forge/osx-64/yarl-1.8.2-py39ha30fb19_0.conda#1232f9071fd428c096bc084c3d678355\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.8.186-h7c85d8e_4.tar.bz2#83537fd65fe827f41b96851e6c92fd73\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.6.26-hcaaecf5_1.conda#57e3968abdb1414279c83aa1145dc65d\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.8.6-ha4e05e3_12.conda#ae6f4dedbbb14f41d643986af3d87d23\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/osx-64/brotlipy-0.7.0-py39ha30fb19_1005.tar.bz2#201d86c1f0b0132954fc72251b09df8a\n-https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.3-py39h7eb6a14_0.tar.bz2#e5527580187212d8b026be1d2f87e41c\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.4-py39hbeae22c_0.conda#d71d3f70f5a0675624f322c7a8956b33\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-he29fd1c_4.tar.bz2#7fab5b9379958e9d3f784842c00c8e66\n+https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-hd690177_6.conda#13da0cc6fabf8971a3bc3ab1de1a9bb9\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/osx-64/google-crc32c-1.1.2-py39h3ffb5a0_4.tar.bz2#1f5254d6180252f84adf424c41b417c3\n@@ -294,118 +299,126 @@ https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-py\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-6.0.0-h08f8713_0.conda#3852d6ef7b77da3e81074a8e487e7df5\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.0-h5c1f988_0.conda#4aab67daf291f97462a5a947aaad48ea\n https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2#28592eab0f05bcf9969789e87f754e11\n-https://conda.anaconda.org/conda-forge/osx-64/libdap4-3.20.6-h3e144a0_2.tar.bz2#55e0706347eb18f3616808366236bcaa\n https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2#406ad426aade5578b90544cc2ed4a79b\n-https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.8.1-nompi_hc61b76e_106.tar.bz2#502e31e4a400216854da4e9933fb21c2\n-https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-hc1c2c66_22.tar.bz2#13513d4171137de61c7f8dd7c2fa4e74\n+https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.1-nompi_h56690a0_101.conda#47f469ea7abef24fe25d7ea8f3c57e2a\n+https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-hd6e941a_23.conda#f8b8c912eca84fdb35215e02dcd4a0f4\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/osx-64/poppler-22.12.0-hf2ff1a1_0.conda#ad1c9f970971bc448424cff37c99eddd\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-64/poppler-23.03.0-h6e9091c_0.conda#1764e7410be61cdaf6cf6b0b27cb87a2\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.1-py39h2798b3d_0.conda#c8a128b239c0226171e9038142ad3671\n+https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.1-py39hdff730e_1.conda#09f9d7c1f293755fe51768289151b5c1\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.13.2-h3b7b576_0.conda#d75ea515b550689adc41b26c7f9eaef6\n-https://conda.anaconda.org/conda-forge/osx-64/tzlocal-4.2-py39h6e9494a_2.tar.bz2#da9cb4e7e50c21035b5a37f2b031dc98\n+https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.13.2-h8b9cbf0_0.conda#a10738d4788cf6b0b0d9bff2e324b942\n+https://conda.anaconda.org/conda-forge/osx-64/tzlocal-4.3-py39h6e9494a_0.conda#1b2b6a1f492f32d9285a6c215f9a459a\n+https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py39h92daf61_3.tar.bz2#24edd5c579fdf20b0721c01cc0865000\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.8.4-py39ha30fb19_0.conda#6665116c51b02e111d0036a024921770\n+https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.2.7-hba8c00c_1.conda#7bca115eac894cd5d8f00aabe4bbb1d5\n https://conda.anaconda.org/conda-forge/osx-64/black-23.1.0-py39h6e9494a_0.conda#f56bf958460c69a3245db97bd2916789\n https://conda.anaconda.org/conda-forge/osx-64/clickhouse-driver-0.2.5-py39ha30fb19_0.conda#27bf1d1bb564bf91f2757a737417ff52\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.2.0-py39h6e9494a_0.conda#e2b1c02918fc9ee8e95338156968a280\n-https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.5.3-hf9b1f87_10.conda#c45e8fa2ad115a56e92806147b3c9197\n+https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.3.0-py39h6e9494a_0.conda#7bd4b2ca8941e634c76d6780ec531e23\n+https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.6.2-hd7924a8_9.conda#499973e2bcb547bde4289905cb7a9676\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.2-py39h6ee2318_0.conda#9b49051072af22354aee82b524f808ff\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.13-hbd9bf65_0.conda#c979037ff3fc99257ec7cb28bb0083f4\n+https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.14-hbd9bf65_0.conda#7de54d83e9c685b742e0a4d81b271de0\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/osx-64/arrow-cpp-8.0.1-py39hf9ad3a7_2_cpu.tar.bz2#bb369572f53307994fab34342668db94\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.19.8-h8b21dc2_12.conda#a24352ea6d682777803b088279be8082\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.0.7-py39h92daf61_0.conda#3b50cfd6ea07613741693ba535fcefda\n-https://conda.anaconda.org/conda-forge/osx-64/gdal-3.5.3-py39h6aafa27_10.conda#af2e3494e5301aef6b51e829d1aebdb8\n+https://conda.anaconda.org/conda-forge/osx-64/gdal-3.6.2-py39h6783340_9.conda#f85450bd4cc688da89b71334b5e8c4c1\n https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h7c1209e_2.tar.bz2#307614630946527e302b7dd042a5cfa2\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda#e67b634578fefbb312cd6cfd34b63d86\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.54.4-h3d48ba6_0.tar.bz2#1a106d9119086f73b5f88c650f700210\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n https://conda.anaconda.org/conda-forge/osx-64/pandas-1.5.3-py39hecff1ad_0.conda#e7d2a20902a36eea13dea9b0021fbfb4\n-https://conda.anaconda.org/conda-forge/osx-64/polars-0.16.7-py39hd4bc93a_0.conda#1385f97396a19708645fd43205fb9271\n+https://conda.anaconda.org/conda-forge/osx-64/polars-0.16.16-py39hd4bc93a_0.conda#dddd3a0a26c6ced358dc50f319fad745\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n https://conda.anaconda.org/conda-forge/osx-64/shapely-1.8.5-py39hed42127_2.tar.bz2#acf9bef3e32fe07ae7d175235c21dd07\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/osx-64/fiona-1.8.22-py39h6fa385f_2.tar.bz2#00448d0d4945c3cbba85199b03652650\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.10.57-h0d082ec_8.conda#238e81ff0a438402ca73c34dc8d878f5\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-64/fiona-1.9.1-py39hb507cee_0.conda#3fad71ffec1b1d62500408374088d969\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n-https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.0.5-hc51f7b9_0.conda#589501e7b16648c032a537b6a0870dbe\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh736e0ef_0.conda#aa43ffb10a39d9eb2538761a3f838a87\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n-https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.0-py39hb2f573b_0.conda#a5fbadbf40c620ebbc0be69c5d963887\n+https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.1.0-hc51f7b9_0.conda#fd7e8ad97c77e364ed28b655f8c27b19\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.1-py39hb2f573b_0.conda#e6b1b5ed86e30d21bf00a050c1a47af5\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-64/libarrow-11.0.0-h547aefa_13_cpu.conda#1114268ce25dd22ad08cd92209d98a3c\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n-https://conda.anaconda.org/conda-forge/osx-64/pyarrow-8.0.1-py39h138c175_2_cpu.tar.bz2#1e29066e05b04c17f309973d5951a705\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/osx-64/datafusion-0.7.0-py39hd4bc93a_0.conda#19ce86522c35dc54bec3e2a2941a0450\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-64/arrow-cpp-11.0.0-h694c41f_13_cpu.conda#b692e17c44e10422db31ba8668f7fbec\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-0.7.0-py39hdbd8b11_1.conda#f338911ec90adf138fa21535c2657247\n-https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.0-py39h8a15683_2.conda#fb37c05f4b9712410daa406ada94d631\n-https://conda.anaconda.org/conda-forge/osx-64/snowflake-connector-python-2.8.3-py39he7ef162_0.conda#604aca8835375c6f50520bf011a24768\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.1-py39h8a15683_0.conda#eead5e4fe30ef982abb432b559bbb326\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.2.1-py39hdbdcc14_0.conda#a3cbe0de59a4c004b140d624b2f09ba8\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.2.2-py39h151e6e4_1.conda#b833d33a98561847b6c3b6d808911efc\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-64/pyarrow-11.0.0-py39h56e7202_13_cpu.conda#a01af3fff5b796388de611a42d9623ef\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/osx-64/datafusion-0.7.0-py39hd4bc93a_0.conda#19ce86522c35dc54bec3e2a2941a0450\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-0.7.1-py39h734fbdf_0.conda#c6f6b9f8d98e06dc693e548d348e741b\n+https://conda.anaconda.org/conda-forge/osx-64/snowflake-connector-python-3.0.2-py39h2cdf326_0.conda#c751fefc4a66c86f4f2577fa6e784ae9\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "osx-arm64-3.10.lock": "@@ -1,8 +1,8 @@\n # Generated by conda-lock.\n # platform: osx-arm64\n-# input_hash: 19e79d099b9c718c891c131d28b4f691d9674a56081b424e72e18ccabca0ace1\n+# input_hash: 4e221897e04e4fdc5dfb911e1204be30d2759254fe9e96fe34a8630fccede8fc\n @EXPLICIT\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.6.2-h3422bc3_0.tar.bz2#e6c0dfc1c6e34241720983abb66ec35e\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.8.14-h1a8c8d9_0.conda#029e3775088eae34a2b978e7efea7caa\n https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2#fc76ace7b94fb1f694988ab1b14dd248\n https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.18.1-h3422bc3_0.tar.bz2#5dd04dad345af4f1e8f3f0d5afc03b67\n https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.12.7-h4653dfc_0.conda#7dc111916edc905957b7417a247583b6\n@@ -12,34 +12,36 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/osx-arm64/freexl-1.0.6-h1a8c8d9_1.tar.bz2#f9e99c94afe28d7558a5dd106fef0936\n https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2#c64443234ff91d70cb9c7dc926c58834\n-https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h27ca646_2.tar.bz2#fcfaa10e989b15ef30f93b6329c35add\n+https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda#f39a05d3dbb0e5024b7deabb2c0993f1\n https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda#ef1cce2ab799e0c2f32c3344125ff218\n https://conda.anaconda.org/conda-forge/osx-arm64/json-c-0.16-hc449e50_0.tar.bz2#0091e6c603f58202c026d3e63fc93f39\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2#84eb0c3c995a865079080d092e4a3c06\n-https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2#716c4b72ff3808ade65748fd9b49cc44\n-https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.14-h1a8c8d9_0.tar.bz2#cb64374f9f7ad86b6194e294c56e06a5\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-15.0.7-h75e25f2_0.conda#16d9581f4cdc3406a059a607dd2ed816\n+https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda#cae34d3f6ab02e0abf92ec3caaf0bd39\n https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2#566dbf70fe79eacdb3c3d3d195a27f55\n https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2#086914b672be056eb70fd4285b6783b6\n https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2#686f9c755574aa221f29fbcf36a67265\n https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2#90859688dbca4735b74c02af14c4c793\n https://conda.anaconda.org/conda-forge/osx-arm64/libtool-2.4.7-hb7217d7_0.conda#fe8efc3385f58f0055e8100b07225055\n https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2#f8c9c41a122ab3abdf8943b13f4957ee\n-https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h57fd34a_0.tar.bz2#23f90b9f28c585445c52184a3388d01d\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda#480b5b992632e7d17778abf01bad473b\n https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2#780852dc54c4c07e64b276a97f89c162\n-https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-15.0.7-h7cfbb63_0.conda#358164e15a9320f11b84a53fb8d8e446\n+https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.0-h7cfbb63_0.conda#791063135f975b2fd7329d30728cb903\n https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2#db86e5a978380a13f5559f97afdfe99d\n-https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_1.tar.bz2#0503c9d6f2633bee5976d84f91c8050d\n+https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_2.conda#e79494b8d990189fe4701f498f99cd8b\n https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2#0cedfe37c9aee28f5e926a870965466a\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2#d3f26c6494d4105d4ecb85203d687102\n https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-3_cp310.conda#3f2b2974db21a33a2f45b0c9abbb7516\n-https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2022g-h1a8c8d9_0.conda#bae4ee8009209ecc0fbdb0c1581adff1\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2023b-h1a8c8d9_0.conda#502a17fc9bd613bc65c0fd59677a4228\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.9-h27ca646_0.tar.bz2#e2fa1f5a28cf0ce02516baf910be132e\n https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2#6738b13f7fadc18725965abdd4129c36\n https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2#39c6b54e94014701dd157f4f576ed211\n https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2#4bb3f014845110883a3c5ee811fd84b4\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.11-h487e1a8_7.tar.bz2#edf91bd9464b05ca9d29be2a730b9468\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.16-h59b28b2_5.conda#999039f6d7b6b14e30ed08c50ea50369\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.8-h59b28b2_0.conda#47f10d872256c2e7079387eaf16da6e9\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.14-h59b28b2_5.conda#a47c0a55e816e14663239492983b8eef\n https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_0.tar.bz2#88defcdff52e5c8b7238239bc53c02d2\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.11.1-hb7217d7_0.tar.bz2#945d93c362ba338531455e0f0cf54ae2\n@@ -49,68 +51,69 @@ https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2#f8\n https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2#288b591645cb9cb9c0af7309ac1114f5\n https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2#5fbe318a6be2e8d0f9b0b0c730a62748\n https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2#de462d5aacda3b30721b512c5da4e742\n-https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20220623.0-cxx17_h28b99d4_6.conda#0d3775e19ec3fe5257dd84cdd333cfcc\n+https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230125.0-cxx17_hb7217d7_1.conda#22a5254be25ace5abcd06468f58f08bc\n+https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda#4f04770bf6f12d22fb6c1d91a04e0c8c\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2#640ea7b788cdd0420409bd8479f023f9\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2#572907b78be867937c258421bc0807a8\n https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2#32bd82a6a625ea6ce090a81c3d34edeb\n https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2#30e4362988a2623e9eb34337b83e01f9\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_28.conda#21e620d9f8e17c55dc47dfc687de5185\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda#244a7665228221cc951d5126b8bc1465\n https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda#0078e6327c13cfdeae6ff7601e360383\n-https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.20.2-hb5ab8b9_0.tar.bz2#a6f25546f30d4cd56bc37b0b56ab954c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda#7adb342474af442e3842c422f07fbf68\n https://conda.anaconda.org/conda-forge/osx-arm64/libspatialindex-1.9.3-hbdafb3b_4.tar.bz2#311816a2511df4bceeeebe7c06af63e7\n https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.40.0-h76d750c_0.tar.bz2#d090fcec993f4ef0a90e6df7f231a273\n https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2#6b3457a192f8091cb413962f65740ac4\n https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda#45505bec548634f7d05e02fb25262cb9\n https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda#f81b5ec944dbbcff3dd08375eb036efa\n-https://conda.anaconda.org/conda-forge/osx-arm64/openssl-1.1.1t-h03a7124_0.conda#eb1a3168d0381724415629dd31854d42\n+https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.0-h03a7124_0.conda#a67e5c82b81441e972733d95e2d8832b\n https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2#721b7288270bafc83586b0f01c2a67f2\n-https://conda.anaconda.org/conda-forge/osx-arm64/re2-2022.06.01-h9a09cb3_1.conda#e95b6f8c99f9d0edfb1356c4c7ea8f43\n-https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2#dc790f296d94409efb3f22af84ee968d\n-https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.9-h17c5cce_2.tar.bz2#a0735d35df2c7146f49705c286502cef\n+https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.02.02-hb7217d7_0.conda#407639ad13c9dc4d2510c5e2a99c2ada\n+https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda#8cbb776a2f641b943d413b3e19df71f4\n+https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda#ac82a611d1a67a598096ebaa857198e3\n https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2#2cb3d18eac154109107f093860bd545f\n https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2#49132c08da6545dc68351ff8b659ac8e\n https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2#34161cff4e29cc45e536abf2f13fd6b4\n https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda#8f346953ef63bf5fb482488a659adcf3\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.5.11-h4530763_0.tar.bz2#ce11646fafb17267c81d929ca42cdb5c\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.5.21-h134b2d6_2.conda#d7024e289c587a6a6d93dd99977bb0f4\n https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.3-h1d6ff8b_0.conda#827988373085c97417e51c30e40967c3\n https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.78.0-h1cb353e_1.tar.bz2#f2a34b853f0aeee4db721a1f70da6905\n https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2#f212620a4f3606ff8f800b8b1077415a\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda#33ea6326e26d1da25eb8dfa768195b82\n https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2#5a570729c7709399cf8511aeeda6f989\n-https://conda.anaconda.org/conda-forge/osx-arm64/grpc-cpp-1.46.4-haeec53e_7.tar.bz2#a03c4a2cbdd278f0307dafe856799519\n https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h1a38d6a_5.tar.bz2#33632080213c000ced85118a4265256d\n-https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.19.3-hf9b2bbe_0.tar.bz2#e6987ad4d068dfe9037280e239b3d5a9\n-https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.10-hbae9a57_4.tar.bz2#a1f2aca3c5999a24527d6f8a3a8e9320\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_28.conda#d91a6e1915d3f47dc65180859b75203f\n+https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda#a85db53e45b1173f270fc998dd40ec03\n+https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.10-h7673551_4.tar.bz2#762bda55783500f923a559e21c1cd096\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda#dfc3dff1ce831c8e821f19d5d218825a\n https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.74.1-h4646484_1.tar.bz2#4321cf67e46674567f419e95bae18522\n-https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.51.0-hd184df1_0.conda#bbc8d6defa81887dc055d9e074d751fa\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.52.1-he98ff75_1.conda#45f3e9e7299d2a01a4d90d28c3528727\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda#1d319e95a0216f801293626a00337712\n https://conda.anaconda.org/conda-forge/osx-arm64/librttopo-1.1.0-h844f84d_12.tar.bz2#abf6c60dfde69d6e632780c7b44fff6e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-hb80f160_3.tar.bz2#60f87fd8eb881a4c8094824dd112140c\n-https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.4.0-heb92581_5.conda#fb564626ea319252c2b3a5edc2f7640f\n-https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h87b0503_0.tar.bz2#35980b9d069648c553d9322bc89ecfbf\n-https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h96606af_1.tar.bz2#66e39d7149b191cdf17804bd587d5d04\n-https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.88-h789eff7_0.conda#fbb3a48e2d960b2af828b1e265246acc\n-https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.7.6-hb9d09c9_0.tar.bz2#1bb57ec3792df86dfcde3cc1d0bbe53f\n-https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.8-hf452327_0_cpython.conda#5837d6faba1839493b612107865ef63e\n+https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-h7a5bd25_3.tar.bz2#1ffa4340e73809db5a7516cb1a7425a7\n+https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h5dffbdd_2.conda#8e08eae60de32c940096ee9b4da35685\n+https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h67585b2_4.conda#3b3f67d1c9d66e873ca91c87640a1d1b\n+https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h76ab92c_1.tar.bz2#eee3b4ab0b5b71fbda7900785f3a46fa\n+https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.89-h789eff7_0.conda#dbb6be9468b513522e0b03d30cc7f1fd\n+https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.8.3-hef0d403_0.conda#5fe39445f76fa6f2a02b8033f2e5872b\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.10-h3ba56d0_0_cpython.conda#5d0b6cef6d5b04df14a02d25c5295bcf\n https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.40.0-h2229b38_0.tar.bz2#e0176ac0a33639feca897a66ed1fe177\n https://conda.anaconda.org/conda-forge/osx-arm64/unixodbc-2.3.10-hb39ff51_0.tar.bz2#a5a930a1c270a9c9d571179463e571c0\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/osx-arm64/atk-1.0-2.38.0-hcb7b3dd_1.tar.bz2#3c98bfeed7717a9cf5af18c295f49f3a\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.10.5-hea86ef8_0.tar.bz2#03d1eeb5706292ae6570456b98f38dcb\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.19-ha2443f3_3.conda#e1d454418cb21d2a4fdf456afa81f37a\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/osx-arm64/backports.zoneinfo-0.2.1-py310hbe9552e_7.tar.bz2#694b65130cbd7f3139f60e8cfb958d60\n-https://conda.anaconda.org/conda-forge/osx-arm64/bitarray-2.7.2-py310h8e9501a_0.conda#79a226856de8a0ccb6859503a99b118d\n+https://conda.anaconda.org/conda-forge/osx-arm64/bitarray-2.7.3-py310h8e9501a_0.conda#d2f64b6eb0b1519741e3e46b9d194334\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2#e2a5e381ddd6529eb62e7710270b2ec5\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n@@ -119,31 +122,34 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.6.6-py310h0f1eb42_0.conda#aeaef47087680b7ef5308cb3cd20e132\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda#f77d47ddb6d3cc5b39b9bdf65635afbb\n-https://conda.anaconda.org/conda-forge/osx-arm64/freetds-1.3.16-h10014b9_0.conda#ec7c9ba65cec93f9f81df151448d2ccc\n+https://conda.anaconda.org/conda-forge/osx-arm64/freetds-1.1.15-h27bbca2_1.tar.bz2#0a00830573641771b858bdc392707e0a\n https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.3.3-py310h8e9501a_0.tar.bz2#6ba62caccbd2e41946c02c95c4225ac2\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.8-h4f389bb_1.tar.bz2#062a406a54b8feb09213e0de74c17abf\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.10-h9bcf4fe_0.conda#9e8a24e2ffa9bb8200cef965af01af06\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-2.0.2-py310h0f1eb42_0.conda#a1b5c69f95dffe157c950920e21f0343\n+https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.52.1-py310h0f1eb42_1.conda#707889a79cf559ae7cad22dd05b134d7\n https://conda.anaconda.org/conda-forge/osx-arm64/gts-0.7.6-h4b6d4d6_2.tar.bz2#285247d54dbf40121f79a6e025c04df4\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.4-py310h2887b22_1.tar.bz2#f7a4902c3cf4340db915669f69364490\n-https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.14-h8193b64_0.tar.bz2#9bc9a1c491795c92568481b6ab59d9c5\n-https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.86.0-hd538317_1.tar.bz2#64af094274984c756c18dbbe59327a45\n+https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-h481adae_0.conda#806395a21421da524d72aa4e0b69d54c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.88.1-h9049daf_1.conda#148e2e109774943f699768703502a918\n https://conda.anaconda.org/conda-forge/osx-arm64/libkml-1.3.0-h41464e4_1015.tar.bz2#6404f2ec1ee91e48175d9e5ee1dbca5f\n https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2#2a980a5d8cc34ce70d339b983f9920de\n-https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.1-hb650857_1.conda#0ffee7d6b76a2b69c0bf8ed8ba97bf82\n-https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.16.0-h1a74c4f_2.tar.bz2#8949545ae9641f7483a88abc3635b07a\n-https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h328b37c_0.tar.bz2#194c8df68e6966f8e012cd326e42c31d\n+https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.2-h1a28acd_0.conda#36fd96c2586fb726f9aa4dccea769efa\n+https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.18.1-h6635e49_0.conda#c6f3d11f5df3a9cce701b4e7853cf907\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h999c80f_1.conda#8e0866db2c7808ad9058848c47e6d6ff\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/osx-arm64/lz4-4.3.2-py310ha6df754_0.conda#555bc733936aa9a97afacc00d7627f73\n https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.2-py310h8e9501a_0.conda#d33964911c203ffbcb67056800830250\n@@ -151,18 +157,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.4-py310h2887b22_1.tar.bz2#cf6a39f19acf98d3b94f527627a2bd73\n+https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.5-py310h2887b22_0.conda#edbf567852c73875ecb8b053366cbab8\n https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.0.4-py310h8e9501a_0.conda#0a2be8df4e1ed7556bef44a3cc05d5d0\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n-https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-h5d4e404_1.tar.bz2#4d65dff04bceb645c98a514c52df217f\n+https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda#c3e184f0810a4614863569488b1ac709\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -177,26 +183,24 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/osx-arm64/pycryptodomex-3.16.0-py310h8e9501a_0.conda#a0446891b8f5dd666a544b54f3fe1f6d\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/osx-arm64/pyrsistent-0.19.3-py310h8e9501a_0.conda#40a016ab2fe37c6e54915fc197d3fad4\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py310h8e9501a_5.tar.bz2#51d03e61fad9a0703bece80e471e95d3\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.0.0-py310hc407298_0.conda#6100a3f0dde7f7511a4ad858f70fe8b2\n-https://conda.anaconda.org/conda-forge/osx-arm64/regex-2022.10.31-py310h8e9501a_0.tar.bz2#84148e2e17915c6a071984bf3c408014\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.0.2-py310hc407298_0.conda#c9921a2ac0c961ceeff02040f669f23d\n+https://conda.anaconda.org/conda-forge/osx-arm64/regex-2023.3.23-py310h8e9501a_0.conda#8fba862f38e2d946135c85b26367fdf5\n https://conda.anaconda.org/conda-forge/osx-arm64/rtree-1.0.1-py310ha3239f5_1.tar.bz2#0a88ec0c3b40a311c1021c258acfd94c\n-https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.0.249-py310h7d3ac2c_0.conda#412ace61a18ad785a07e2d50f6501d24\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.0.259-py310h7d3ac2c_0.conda#a618b7dfe1ac1df1ec381fcfc6ad1e73\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -206,19 +210,21 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.2-py310h8e9501a_1.tar.bz2#cce0b9a9acfbc2bb19422528fdb7a6a1\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.0.0-py310h8e9501a_0.tar.bz2#e6af5439226301127e3a5b49e0b1fad1\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.2.7-h9972306_13.tar.bz2#1aa327d20aec700b23809ce8c1da34cd\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.2.20-ha370d96_4.conda#06f67e990e792f186eaef7d90042bf49\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.6-hca61f3c_0.conda#a31434a64509cd494d92442ed1ad4371\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h73a0509_1014.tar.bz2#be2ea75899a7b1f1dd59a862fac655ee\n@@ -226,41 +232,41 @@ https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py310h2399d43_3.con\n https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.2.0-h2f961c4_0.conda#10112a8b1b7b479c7d4e87c9ade892eb\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.1.0-py310h8e9501a_0.conda#331682a6f9bb6cad2ece61345c59eb51\n-https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.86.0-hd538317_1.tar.bz2#068fc793cf5223be665bcd6d35a2f28f\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.2.2-py310h8e9501a_0.conda#af9cde8e5dba6ae0c082c40cdfbbdf43\n+https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.88.1-h9049daf_1.conda#8df5e92aeb9de416919a64f116698761\n https://conda.anaconda.org/conda-forge/osx-arm64/cytoolz-0.12.0-py310h8e9501a_1.tar.bz2#c536582cdda73cf71f5319d762ea8023\n-https://conda.anaconda.org/conda-forge/osx-arm64/fastavro-1.7.1-py310h8e9501a_0.conda#e17cc6ba0f38d8e5f872e39bc075a506\n-https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py310h8e9501a_1.tar.bz2#4652860a14e94115acecfd7cb9a70967\n+https://conda.anaconda.org/conda-forge/osx-arm64/fastavro-1.7.3-py310h8e9501a_0.conda#e06d93ab02962146c687bbbd1000a3d3\n+https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.39.2-py310h8e9501a_0.conda#14e05200addffea5d15f70812b2506da\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.46.4-py310h7ba2fed_7.tar.bz2#6ef4b63809a60b4f3271f51a32189792\n-https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_h8968d4b_100.tar.bz2#6013e6a360be49d947d42b82f6a5a682\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_ha7af310_101.conda#050df57fed623d4b6aa817e9c8bdbfaa\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2#53d6d5097f0d62e24db8c1979a21102e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-hede1055_3.tar.bz2#8bbd974c213208687dc289d50feb5c65\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.1.0-hec15cb4_1.tar.bz2#ab0eccace6b28dbf2515897b7105fa68\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-h90fb8ed_4.conda#03c52c3cdcf9f4cf70e07135254b799f\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.8.0-h7206bc8_1.conda#4101b82f92955893124421a303673986\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.2.0-py310h9337a76_3.tar.bz2#b8b24480162c364c87d01e44331d7246\n+https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py310h5a7539a_1.conda#b3c94458ef1002c937b89979c79eb486\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-15.1-hf80b784_1.conda#69956ca98448a03365575522744fc9f2\n-https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.0-h3bdf472_0.tar.bz2#84796e1049fba379566c5b1cc3ac9e2b\n-https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-3.20.2-py310h0f1eb42_1.conda#18ed7aca24af7172fbc8d00d4b7c513e\n-https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.3-py310hfc29c8b_2.conda#29e4d29ec78805d0e5b4679813b4412e\n+https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-15.2-h45c140d_0.conda#9f35737220640a8de16d09b59914498f\n+https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.1-h13f728c_2.conda#6924682abbbe34aa837c64ca0016ec8e\n+https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.21.12-py310h0f1eb42_0.conda#3763b614e1858dd64732e00fe1204551\n+https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.3-py310h75cfdd3_2.conda#eb464498ca34f191e5edba08b3c87ba6\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/osx-arm64/pymssql-2.2.7-py310h0f1eb42_0.conda#1178f45a3988ba4cc5515c42fb59a55c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/osx-arm64/pymssql-2.2.5-py310h0f1eb42_2.tar.bz2#d9039a6ae17038153e6cf5c7401accea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/osx-arm64/pytz-deprecation-shim-0.1.0.post0-py310hbe9552e_3.tar.bz2#630f11e736b92d1a369db33cef39226c\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n@@ -269,139 +275,147 @@ https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf4\n https://conda.anaconda.org/conda-forge/osx-arm64/sqlalchemy-1.4.46-py310h8e9501a_0.conda#3b1ca98bb083dad45a9b79ac1ea9a70e\n https://conda.anaconda.org/conda-forge/osx-arm64/thrift-0.16.0-py310h0f1eb42_2.tar.bz2#2f872dbeeb168b6233c0064ba7aeb951\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-2.2.1-py310h8e9501a_0.conda#41b42ab0bc8a4158825b8d6c08255d1b\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-3.0.0-py310h8e9501a_0.conda#ab84756af950bbc0758967d37f1577ae\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.2.4-h627aa08_1.tar.bz2#e690c8c477c96c9f8ad9f7c63f1f94d2\n https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.8.2-py310h8e9501a_0.conda#69a97466e2aa86c9517931f5c814917d\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.8.186-h392f50b_4.tar.bz2#d27eeebe0e48c6c4cbd21a09f575f496\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.6.26-h9ec8a34_1.conda#9b6e888da325885e2afc3be552fc6191\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.8.6-hcd3fa0e_12.conda#3ebeacc4c1ec79ba87cd5a0bab192910\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/osx-arm64/brotlipy-0.7.0-py310h8e9501a_1005.tar.bz2#0dfdc1c2e2fa6d9a1cee4798a9e9454d\n-https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.4-py310h4fe9c50_0.conda#0bb0bca23520f3a578e973ee28eaa4cb\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.4-py310hfc83b78_0.conda#601658ded3da8cf4eb58d2316bdd1fbb\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-h90559a4_4.tar.bz2#01946796ab730299feff7026b1f0d222\n+https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-hdcdc974_6.conda#6cb68e5148f9c41564eb840c89b8f7bc\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/osx-arm64/google-crc32c-1.1.2-py310he58995c_4.tar.bz2#b2b495faecbf73e9a059d7c5cba40459\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-6.0.0-hddbc195_0.conda#bc6503f2956775e3d6e481d7588b7998\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/osx-arm64/kealib-1.5.0-hfd766a6_0.conda#3041514025aa54cad642e24061b6b6f6\n https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2#c7cfc18378f00d3faf7f8a9a2553be3c\n-https://conda.anaconda.org/conda-forge/osx-arm64/libdap4-3.20.6-h8510809_2.tar.bz2#b61547e8f0c4fb57318482666c07d6ca\n https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2#52d270c579bfca986d6cdd81eb5ed6e7\n-https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.8.1-nompi_h2510be2_106.tar.bz2#c5d2afa0f2bc4eca5be78c438a41de2e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h558e587_22.tar.bz2#e766cf477817d5fcce530d40c9d97a96\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.1-nompi_h232cb48_101.conda#87dd4b0e9fe52d1b43bf0d5e7be28fc3\n+https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h14115fc_23.conda#2f80ac3b18bf574bb497f9f52966cd4e\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/osx-arm64/poppler-22.12.0-hae7f5f0_0.conda#8bc158f737f4119d494e288ee0880cd2\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-arm64/poppler-23.03.0-h9564b9f_0.conda#a04f2bd0e84b74d694ae65ab9ec09c0b\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.1-py310hce8d790_0.conda#731174475ccf2a4000b31397f7fadca4\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.1-py310h9862ddf_1.conda#adb0fcdbd0c2306507e5e9100fc1e322\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.13.2-hc7ac4c9_0.conda#71844097f1f47854bb55d8928482cf25\n-https://conda.anaconda.org/conda-forge/osx-arm64/tzlocal-4.2-py310hbe9552e_2.tar.bz2#7c2e7f5299a129dc5cae8792d28ff8a4\n+https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.13.2-h9bd36d0_0.conda#d3a88ffe0cbfbd8d3532bb8ef46f0626\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzlocal-4.3-py310hbe9552e_0.conda#905b2bdcb43c317eca3e827a8a55c44a\n+https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py310h2887b22_3.tar.bz2#c0afa739bd266e8c4c63e717fc5c4621\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.8.4-py310h8e9501a_0.conda#b301ff0c427b1b7b6204c21507e6dc1e\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.2.7-hc514de9_1.conda#d585d309fcced2a4e7b94a439f204d42\n https://conda.anaconda.org/conda-forge/osx-arm64/black-23.1.0-py310hbe9552e_0.conda#4add2984be82a936564fb3af1f3d3127\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.2.0-py310hbe9552e_0.conda#862c8cd375a138aae560611aad412d44\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.5.3-h28a98fa_10.conda#92ee56461fa1874bcc69ea168dfbe94e\n+https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.3.0-py310hbe9552e_0.conda#44f14896d03e37e8faf8458a4527f3f7\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.6.2-h8d4b95d_9.conda#2f2e0c9c1ec238e79fd94c5f0ba35827\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.2-py310h3d2048e_0.conda#447823b87d9c737f81f0a984ebec121b\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.13-h6c112b8_0.conda#3ffd7fede31a774ad8f3dc9114897daa\n+https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.14-h6c112b8_0.conda#1e6300d15e38bad0d52871251190b5e8\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/osx-arm64/arrow-cpp-8.0.1-py310h5547a8d_2_cpu.tar.bz2#31b685c9381aaf19f3c25302846ce526\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.19.8-h6be2766_12.conda#cdfee90317474a42d31eb3ea3752e60c\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.0.7-py310h2887b22_0.conda#19b6c3c875c18a775d0a7e2b248cd7eb\n-https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.5.3-py310hc67b115_10.conda#232e3f53833fd2cd8cb518626f167bf8\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.6.2-py310h0b34360_9.conda#f0d620f2dff2878d69392d212410121e\n https://conda.anaconda.org/conda-forge/osx-arm64/gtk2-2.24.33-h57013de_2.tar.bz2#144fb77338d90012ebe80d3dd13fc725\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda#e67b634578fefbb312cd6cfd34b63d86\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.54.4-ha2634a2_0.tar.bz2#a9fe78f1beab7f0a90581518a0e11311\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n https://conda.anaconda.org/conda-forge/osx-arm64/pandas-1.5.3-py310h2b830bf_0.conda#54585997632610e7024e5d8d722a3092\n-https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.16.7-py310h1dc5ec9_0.conda#b66b16575a16bceda2a78d115999355f\n+https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.16.16-py310h1dc5ec9_0.conda#2a2516b99795be18453b759cd6f2e822\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n https://conda.anaconda.org/conda-forge/osx-arm64/shapely-1.8.5-py310h9356385_2.tar.bz2#32e7200d03ddd713014a0946699b8131\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.8.22-py310hcdcf461_2.tar.bz2#3d54d8cb32e1dbd51574b5b2a5b26713\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.10.57-h3daea3c_8.conda#c35e6a52b070dfabe03e4fb63b5da47d\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.9.1-py310h2e51ddd_0.conda#f60b386f47d7de7fe36b33349b41f113\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n-https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-7.0.5-h4f8fbd6_0.conda#88ead4365a188ffd036644a0b7931b0e\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh736e0ef_0.conda#aa43ffb10a39d9eb2538761a3f838a87\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n-https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.0-py310h78c5c2f_0.conda#74677ce62dec0d767160ef428b5c3f10\n+https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-7.1.0-h4f8fbd6_0.conda#6840266ed0788c5c4c8429bf42c4b36d\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.1-py310h78c5c2f_0.conda#a1a982fea610d516ef985522117ba6dd\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-11.0.0-hdcd110a_13_cpu.conda#b8915aea8d4857228a292d672f01460a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-8.0.1-py310had0e577_2_cpu.tar.bz2#8435a4e24c4a50a6d92310f104da16d8\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-arm64/arrow-cpp-11.0.0-hce30654_13_cpu.conda#ecd5efe74f31a2c6c244f81038ec9e35\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-0.7.0-py310he117f0e_1.conda#eea490ee7e422f90cec08feeed8bdb86\n-https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.0-py310ha0d8a01_2.conda#4ae4ed66754b74ea1d6e8bf0f0407804\n-https://conda.anaconda.org/conda-forge/osx-arm64/snowflake-connector-python-2.8.3-py310he1fb286_0.conda#1ef9ff5906aee0a70b44ee34e118b17c\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.1-py310ha0d8a01_0.conda#f78d5db3a32fd6afebccb58581a25372\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.2.1-py310ha00a7cd_0.conda#59f63d61582f3e97090f02c28d9e4337\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.2.2-py310h98c5782_1.conda#63a591179c38411c6b6755d3a2c6efc0\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-11.0.0-py310h89f3c6b_13_cpu.conda#90775cee52808a200398c83213211e3c\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-0.7.1-py310h2798aea_0.conda#082f4afda2bdb3139b57037eb067123c\n+https://conda.anaconda.org/conda-forge/osx-arm64/snowflake-connector-python-3.0.2-py310h2798aea_0.conda#c856883b25810c03a4aa72d4b6cc9081\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "osx-arm64-3.11.lock": "@@ -0,0 +1,420 @@\n+# Generated by conda-lock.\n+# platform: osx-arm64\n+# input_hash: 92094f22bb69015b1e08326e8305b6d1eadd90995421eacf90ea1e9d961092b5\n+@EXPLICIT\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.8.14-h1a8c8d9_0.conda#029e3775088eae34a2b978e7efea7caa\n+https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2#fc76ace7b94fb1f694988ab1b14dd248\n+https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.18.1-h3422bc3_0.tar.bz2#5dd04dad345af4f1e8f3f0d5afc03b67\n+https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.12.7-h4653dfc_0.conda#7dc111916edc905957b7417a247583b6\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n+https://conda.anaconda.org/conda-forge/osx-arm64/freexl-1.0.6-h1a8c8d9_1.tar.bz2#f9e99c94afe28d7558a5dd106fef0936\n+https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2#c64443234ff91d70cb9c7dc926c58834\n+https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda#f39a05d3dbb0e5024b7deabb2c0993f1\n+https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda#ef1cce2ab799e0c2f32c3344125ff218\n+https://conda.anaconda.org/conda-forge/osx-arm64/json-c-0.16-hc449e50_0.tar.bz2#0091e6c603f58202c026d3e63fc93f39\n+https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2#84eb0c3c995a865079080d092e4a3c06\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-15.0.7-h75e25f2_0.conda#16d9581f4cdc3406a059a607dd2ed816\n+https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda#cae34d3f6ab02e0abf92ec3caaf0bd39\n+https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2#566dbf70fe79eacdb3c3d3d195a27f55\n+https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2#086914b672be056eb70fd4285b6783b6\n+https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2#686f9c755574aa221f29fbcf36a67265\n+https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2#90859688dbca4735b74c02af14c4c793\n+https://conda.anaconda.org/conda-forge/osx-arm64/libtool-2.4.7-hb7217d7_0.conda#fe8efc3385f58f0055e8100b07225055\n+https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2#f8c9c41a122ab3abdf8943b13f4957ee\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda#480b5b992632e7d17778abf01bad473b\n+https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2#780852dc54c4c07e64b276a97f89c162\n+https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.0-h7cfbb63_0.conda#791063135f975b2fd7329d30728cb903\n+https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2#db86e5a978380a13f5559f97afdfe99d\n+https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_2.conda#e79494b8d990189fe4701f498f99cd8b\n+https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2#0cedfe37c9aee28f5e926a870965466a\n+https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n+https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2#d3f26c6494d4105d4ecb85203d687102\n+https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-3_cp311.conda#e1586496f8acd1c9293019ab14dbde9d\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2023b-h1a8c8d9_0.conda#502a17fc9bd613bc65c0fd59677a4228\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n+https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.9-h27ca646_0.tar.bz2#e2fa1f5a28cf0ce02516baf910be132e\n+https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2#6738b13f7fadc18725965abdd4129c36\n+https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2#39c6b54e94014701dd157f4f576ed211\n+https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2#4bb3f014845110883a3c5ee811fd84b4\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.16-h59b28b2_5.conda#999039f6d7b6b14e30ed08c50ea50369\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.8-h59b28b2_0.conda#47f10d872256c2e7079387eaf16da6e9\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.14-h59b28b2_5.conda#a47c0a55e816e14663239492983b8eef\n+https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_0.tar.bz2#88defcdff52e5c8b7238239bc53c02d2\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n+https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.11.1-hb7217d7_0.tar.bz2#945d93c362ba338531455e0f0cf54ae2\n+https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2#63d2ff6fddfa74e5458488fd311bf635\n+https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2#aab9ddfad863e9ef81229a1f8852211b\n+https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2#f8140773b6ca51bf32feec9b4290a8c5\n+https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2#288b591645cb9cb9c0af7309ac1114f5\n+https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2#5fbe318a6be2e8d0f9b0b0c730a62748\n+https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2#de462d5aacda3b30721b512c5da4e742\n+https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230125.0-cxx17_hb7217d7_1.conda#22a5254be25ace5abcd06468f58f08bc\n+https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda#4f04770bf6f12d22fb6c1d91a04e0c8c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2#640ea7b788cdd0420409bd8479f023f9\n+https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2#572907b78be867937c258421bc0807a8\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2#32bd82a6a625ea6ce090a81c3d34edeb\n+https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2#30e4362988a2623e9eb34337b83e01f9\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda#244a7665228221cc951d5126b8bc1465\n+https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda#0078e6327c13cfdeae6ff7601e360383\n+https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda#7adb342474af442e3842c422f07fbf68\n+https://conda.anaconda.org/conda-forge/osx-arm64/libspatialindex-1.9.3-hbdafb3b_4.tar.bz2#311816a2511df4bceeeebe7c06af63e7\n+https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.40.0-h76d750c_0.tar.bz2#d090fcec993f4ef0a90e6df7f231a273\n+https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2#6b3457a192f8091cb413962f65740ac4\n+https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda#45505bec548634f7d05e02fb25262cb9\n+https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda#f81b5ec944dbbcff3dd08375eb036efa\n+https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.0-h03a7124_0.conda#a67e5c82b81441e972733d95e2d8832b\n+https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2#721b7288270bafc83586b0f01c2a67f2\n+https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.02.02-hb7217d7_0.conda#407639ad13c9dc4d2510c5e2a99c2ada\n+https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda#8cbb776a2f641b943d413b3e19df71f4\n+https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda#ac82a611d1a67a598096ebaa857198e3\n+https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2#2cb3d18eac154109107f093860bd545f\n+https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2#49132c08da6545dc68351ff8b659ac8e\n+https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2#34161cff4e29cc45e536abf2f13fd6b4\n+https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda#8f346953ef63bf5fb482488a659adcf3\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.5.21-h134b2d6_2.conda#d7024e289c587a6a6d93dd99977bb0f4\n+https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.3-h1d6ff8b_0.conda#827988373085c97417e51c30e40967c3\n+https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.78.0-h1cb353e_1.tar.bz2#f2a34b853f0aeee4db721a1f70da6905\n+https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2#f212620a4f3606ff8f800b8b1077415a\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n+https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda#33ea6326e26d1da25eb8dfa768195b82\n+https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2#5a570729c7709399cf8511aeeda6f989\n+https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h1a38d6a_5.tar.bz2#33632080213c000ced85118a4265256d\n+https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda#a85db53e45b1173f270fc998dd40ec03\n+https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.10-h7673551_4.tar.bz2#762bda55783500f923a559e21c1cd096\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda#dfc3dff1ce831c8e821f19d5d218825a\n+https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.74.1-h4646484_1.tar.bz2#4321cf67e46674567f419e95bae18522\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.52.1-he98ff75_1.conda#45f3e9e7299d2a01a4d90d28c3528727\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda#1d319e95a0216f801293626a00337712\n+https://conda.anaconda.org/conda-forge/osx-arm64/librttopo-1.1.0-h844f84d_12.tar.bz2#abf6c60dfde69d6e632780c7b44fff6e\n+https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-h7a5bd25_3.tar.bz2#1ffa4340e73809db5a7516cb1a7425a7\n+https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h5dffbdd_2.conda#8e08eae60de32c940096ee9b4da35685\n+https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h67585b2_4.conda#3b3f67d1c9d66e873ca91c87640a1d1b\n+https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h76ab92c_1.tar.bz2#eee3b4ab0b5b71fbda7900785f3a46fa\n+https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.89-h789eff7_0.conda#dbb6be9468b513522e0b03d30cc7f1fd\n+https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.8.3-hef0d403_0.conda#5fe39445f76fa6f2a02b8033f2e5872b\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.0-h3ba56d0_1_cpython.conda#2aa7ca3702d9afd323ca34a9d98879d1\n+https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.40.0-h2229b38_0.tar.bz2#e0176ac0a33639feca897a66ed1fe177\n+https://conda.anaconda.org/conda-forge/osx-arm64/unixodbc-2.3.10-hb39ff51_0.tar.bz2#a5a930a1c270a9c9d571179463e571c0\n+https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n+https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n+https://conda.anaconda.org/conda-forge/osx-arm64/atk-1.0-2.38.0-hcb7b3dd_1.tar.bz2#3c98bfeed7717a9cf5af18c295f49f3a\n+https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n+https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.19-ha2443f3_3.conda#e1d454418cb21d2a4fdf456afa81f37a\n+https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n+https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n+https://conda.anaconda.org/conda-forge/osx-arm64/backports.zoneinfo-0.2.1-py311h267d04e_7.tar.bz2#a933024b218c4f2ad2f49a1ccf40006d\n+https://conda.anaconda.org/conda-forge/osx-arm64/bitarray-2.7.3-py311he2be06e_0.conda#f5daa09dcd8d24a2fb8f98e1e14fee52\n+https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n+https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2#e2a5e381ddd6529eb62e7710270b2ec5\n+https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n+https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n+https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n+https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n+https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n+https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n+https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99\n+https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2#a50559fad0affdbb33729a68669ca1cb\n+https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.6.6-py311ha397e9f_0.conda#19abf9d457a8ffe0874bb96c63dea3c8\n+https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n+https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n+https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n+https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n+https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n+https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda#f77d47ddb6d3cc5b39b9bdf65635afbb\n+https://conda.anaconda.org/conda-forge/osx-arm64/freetds-1.1.15-h27bbca2_1.tar.bz2#0a00830573641771b858bdc392707e0a\n+https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.3.3-py311he2be06e_0.tar.bz2#44fe1e496177c6c896857ded897790b6\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.10-h9bcf4fe_0.conda#9e8a24e2ffa9bb8200cef965af01af06\n+https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n+https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-2.0.2-py311ha397e9f_0.conda#ef6dee9c5f0250f1040f3dacdc7cd7e5\n+https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.52.1-py311ha397e9f_1.conda#a2ee969560ebaf76f20221c9a71682bf\n+https://conda.anaconda.org/conda-forge/osx-arm64/gts-0.7.6-h4b6d4d6_2.tar.bz2#285247d54dbf40121f79a6e025c04df4\n+https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n+https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n+https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n+https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.4-py311hd6ee22a_1.tar.bz2#aea430ca7df231e9d17dba5dc7ba52b5\n+https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-h481adae_0.conda#806395a21421da524d72aa4e0b69d54c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.88.1-h9049daf_1.conda#148e2e109774943f699768703502a918\n+https://conda.anaconda.org/conda-forge/osx-arm64/libkml-1.3.0-h41464e4_1015.tar.bz2#6404f2ec1ee91e48175d9e5ee1dbca5f\n+https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2#2a980a5d8cc34ce70d339b983f9920de\n+https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.2-h1a28acd_0.conda#36fd96c2586fb726f9aa4dccea769efa\n+https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.18.1-h6635e49_0.conda#c6f3d11f5df3a9cce701b4e7853cf907\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h999c80f_1.conda#8e0866db2c7808ad9058848c47e6d6ff\n+https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n+https://conda.anaconda.org/conda-forge/osx-arm64/lz4-4.3.2-py311h854b99e_0.conda#ecf7a4e74275b9cd5cea4cd0dc4904df\n+https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.2-py311he2be06e_0.conda#06f340fef431792a48e772fc76c5c030\n+https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268\n+https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n+https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n+https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.5-py311hd6ee22a_0.conda#216b2bab4db761d91b3341fbc10631fb\n+https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.0.4-py311he2be06e_0.conda#09fe7f8c8e75d64b0440783605e02e44\n+https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n+https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n+https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n+https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n+https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda#c3e184f0810a4614863569488b1ac709\n+https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n+https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n+https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n+https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n+https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n+https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n+https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n+https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.4-py311he2be06e_0.tar.bz2#4eb07242cfa7aed4d041a40166753520\n+https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263\n+https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n+https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883\n+https://conda.anaconda.org/conda-forge/noarch/py-cpuinfo-9.0.0-pyhd8ed1ab_0.tar.bz2#6f6d42b894118f8378fce11887ccdaff\n+https://conda.anaconda.org/conda-forge/noarch/py4j-0.10.9.5-pyhd8ed1ab_0.tar.bz2#aa4b90e96537b3178e500ecb0d7913ce\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f8f72ac77911db942eda24fb9\n+https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n+https://conda.anaconda.org/conda-forge/osx-arm64/pycryptodomex-3.16.0-py311he2be06e_0.conda#9921f0d483e87b502683c46b8447a963\n+https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n+https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n+https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyrsistent-0.19.3-py311he2be06e_0.conda#2fea901bc50cdd9760eee19376c31abc\n+https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py311he2be06e_5.tar.bz2#bd3b5db42251cb399567fa21cea3faf6\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.0.2-py311h0f351f6_0.conda#d3c8dc1d171341fb05dae91b43e9cff3\n+https://conda.anaconda.org/conda-forge/osx-arm64/regex-2023.3.23-py311he2be06e_0.conda#408c75f13ee2eef58fe6ddaa6e91f107\n+https://conda.anaconda.org/conda-forge/osx-arm64/rtree-1.0.1-py311hd698ff7_1.tar.bz2#6cce73b07d8aabc4496a4d09ea9527b9\n+https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.0.259-py311h88de81f_0.conda#af45b8dd42927c29669da4e94bdf010c\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n+https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n+https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n+https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n+https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n+https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n+https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n+https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n+https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095\n+https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96\n+https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36\n+https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.2-py311he2be06e_1.tar.bz2#14e26dcaa163d69b3339c760a25f7ef6\n+https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n+https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n+https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n+https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n+https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n+https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.2.20-ha370d96_4.conda#06f67e990e792f186eaef7d90042bf49\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.6-hca61f3c_0.conda#a31434a64509cd494d92442ed1ad4371\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n+https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n+https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n+https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n+https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h73a0509_1014.tar.bz2#be2ea75899a7b1f1dd59a862fac655ee\n+https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py311hae827db_3.conda#bb7a416f8871a6cf6ddec76450d6cf7b\n+https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.2.0-h2f961c4_0.conda#10112a8b1b7b479c7d4e87c9ade892eb\n+https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n+https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.2.2-py311he2be06e_0.conda#71bc7acd622fce097616cc3f06b9b9cc\n+https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.88.1-h9049daf_1.conda#8df5e92aeb9de416919a64f116698761\n+https://conda.anaconda.org/conda-forge/osx-arm64/cytoolz-0.12.0-py311he2be06e_1.tar.bz2#808d9e0ab82e179f53183d54c93b3011\n+https://conda.anaconda.org/conda-forge/osx-arm64/fastavro-1.7.3-py311he2be06e_0.conda#f7db2adf6fca70baaa8711d0638dcf40\n+https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.39.2-py311he2be06e_0.conda#906af71ba93efa0f307ad06c412a48a3\n+https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n+https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_ha7af310_101.conda#050df57fed623d4b6aa817e9c8bdbfaa\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n+https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n+https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n+https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n+https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n+https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2#53d6d5097f0d62e24db8c1979a21102e\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-h90fb8ed_4.conda#03c52c3cdcf9f4cf70e07135254b799f\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.8.0-h7206bc8_1.conda#4101b82f92955893124421a303673986\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n+https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n+https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n+https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n+https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n+https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n+https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n+https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py311h627eb56_1.conda#5b9c6ff480a2689258e1621dfdb653e4\n+https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n+https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-15.2-h45c140d_0.conda#9f35737220640a8de16d09b59914498f\n+https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.1-h13f728c_2.conda#6924682abbbe34aa837c64ca0016ec8e\n+https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.21.12-py311ha397e9f_0.conda#6156bed45f8f3a9eb921a9b4a1aa0088\n+https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.3-py311hcffe8fe_2.conda#f3470a37760b0edc0cb57e6a69ab71a0\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n+https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n+https://conda.anaconda.org/conda-forge/osx-arm64/pymssql-2.2.5-py311ha397e9f_2.tar.bz2#cec6919556b9bebcf61f57e580bd5591\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n+https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n+https://conda.anaconda.org/conda-forge/osx-arm64/pytz-deprecation-shim-0.1.0.post0-py311h267d04e_3.tar.bz2#a005d8eb67e7a21518e1a7270dad0440\n+https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n+https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n+https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n+https://conda.anaconda.org/conda-forge/osx-arm64/sqlalchemy-1.4.46-py311he2be06e_0.conda#b942b271a6773ccd8e3c5422747c6cd6\n+https://conda.anaconda.org/conda-forge/osx-arm64/thrift-0.16.0-py311ha397e9f_2.tar.bz2#30232ec9c3f3bfba691f2a7b599e0151\n+https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-3.0.0-py311he2be06e_0.conda#60c2e70552300f9cc702b414600d2a31\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n+https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.2.4-h627aa08_1.tar.bz2#e690c8c477c96c9f8ad9f7c63f1f94d2\n+https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.8.2-py311he2be06e_0.conda#a911f21e960e5926726a3ea8f7d108fc\n+https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n+https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.6.26-h9ec8a34_1.conda#9b6e888da325885e2afc3be552fc6191\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.8.6-hcd3fa0e_12.conda#3ebeacc4c1ec79ba87cd5a0bab192910\n+https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n+https://conda.anaconda.org/conda-forge/osx-arm64/brotlipy-0.7.0-py311he2be06e_1005.tar.bz2#31942140cc59c7985448a29fc159f850\n+https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.4-py311h507f6e9_0.conda#19121d9b9f729f27e58982bd89f3cd49\n+https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n+https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n+https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-hdcdc974_6.conda#6cb68e5148f9c41564eb840c89b8f7bc\n+https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n+https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n+https://conda.anaconda.org/conda-forge/osx-arm64/google-crc32c-1.1.2-py311h317d298_4.tar.bz2#56e6b78c0926cfa3983991eea09ad47d\n+https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n+https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n+https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-6.0.0-hddbc195_0.conda#bc6503f2956775e3d6e481d7588b7998\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n+https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n+https://conda.anaconda.org/conda-forge/osx-arm64/kealib-1.5.0-hfd766a6_0.conda#3041514025aa54cad642e24061b6b6f6\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2#c7cfc18378f00d3faf7f8a9a2553be3c\n+https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2#52d270c579bfca986d6cdd81eb5ed6e7\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.1-nompi_h232cb48_101.conda#87dd4b0e9fe52d1b43bf0d5e7be28fc3\n+https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h14115fc_23.conda#2f80ac3b18bf574bb497f9f52966cd4e\n+https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-arm64/poppler-23.03.0-h9564b9f_0.conda#a04f2bd0e84b74d694ae65ab9ec09c0b\n+https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.1-py311hef8691e_1.conda#dcc693dbc2bc8d6506cdbe7c53a28cd4\n+https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n+https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n+https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n+https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n+https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n+https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n+https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n+https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.13.2-h9bd36d0_0.conda#d3a88ffe0cbfbd8d3532bb8ef46f0626\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzlocal-4.3-py311h267d04e_0.conda#5ed782836122546917e1b62612153c8e\n+https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py311hd6ee22a_3.tar.bz2#1ec575f5b11dab96ae76895d39d26730\n+https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n+https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.8.4-py311he2be06e_0.conda#99d48994d81550a72d187da851b01a9f\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.2.7-hc514de9_1.conda#d585d309fcced2a4e7b94a439f204d42\n+https://conda.anaconda.org/conda-forge/osx-arm64/black-23.1.0-py311h267d04e_0.conda#cc8ec3ecadd65bcbfd6ffc7a4d7829f4\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n+https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n+https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n+https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.3.0-py311h267d04e_0.conda#f194127e283c95eb0c40bbe6a7e0311a\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.6.2-h8d4b95d_9.conda#2f2e0c9c1ec238e79fd94c5f0ba35827\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n+https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.2-py311h60f8152_0.conda#d974ec074ab60c2429e85a08063a3318\n+https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n+https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.14-h6c112b8_0.conda#1e6300d15e38bad0d52871251190b5e8\n+https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n+https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n+https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.19.8-h6be2766_12.conda#cdfee90317474a42d31eb3ea3752e60c\n+https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n+https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.0.7-py311hd6ee22a_0.conda#db6e99f9f62455712d051b671a8363fb\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.6.2-py311h43bd5d3_9.conda#3d2825a86acceff3b6156f2afb0b3154\n+https://conda.anaconda.org/conda-forge/osx-arm64/gtk2-2.24.33-h57013de_2.tar.bz2#144fb77338d90012ebe80d3dd13fc725\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n+https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.54.4-ha2634a2_0.tar.bz2#a9fe78f1beab7f0a90581518a0e11311\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/osx-arm64/pandas-1.5.3-py311h4eec4a9_0.conda#a25d99c409cc56e34de4161e649e7349\n+https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.16.16-py311heb423af_0.conda#0af89e786f91b3d32a66e42b3ac11732\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/osx-arm64/shapely-1.8.5-py311h24f10cc_2.tar.bz2#27c3f3ce6d00d9f1bf55b0e5f73bce3e\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.10.57-h3daea3c_8.conda#c35e6a52b070dfabe03e4fb63b5da47d\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.9.1-py311habcf648_0.conda#4897759aaccc5d4f5c0f6738d28ca755\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n+https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-7.1.0-h4f8fbd6_0.conda#6840266ed0788c5c4c8429bf42c4b36d\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.1-py311h99a5f44_0.conda#5e1ec271eb52ff1f76b55b23aae88a4f\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n+https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n+https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n+https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-11.0.0-hdcd110a_13_cpu.conda#b8915aea8d4857228a292d672f01460a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n+https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n+https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-arm64/arrow-cpp-11.0.0-hce30654_13_cpu.conda#ecd5efe74f31a2c6c244f81038ec9e35\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n+https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.1-py311h0bcca16_0.conda#f02b5eaf3f552f145e1c3c5507abb495\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n+https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.2.2-py311hba1c5b0_1.conda#b33251d2c51f104c938bd5d09d201a67\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n+https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-11.0.0-py311h1e679ab_13_cpu.conda#27c39d0e9e7beaaaf61188ef03c0867e\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-0.7.1-py311hec61dd1_0.conda#6ea639be519e6e5b562f522a5eb03898\n+https://conda.anaconda.org/conda-forge/osx-arm64/snowflake-connector-python-3.0.2-py311hec61dd1_0.conda#0d565c91ab8622c9aefc5abd1080cd89\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "osx-arm64-3.8.lock": "@@ -1,8 +1,8 @@\n # Generated by conda-lock.\n # platform: osx-arm64\n-# input_hash: 4fe72a3a89fd5a3abd40ecb5bf379f7e27ccea510aa8ba7984f3509f4dc51e4f\n+# input_hash: 96e86287e68146a201a14c62a5b7da8d3d91e0c6f6438fb12793523beb1650af\n @EXPLICIT\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.6.2-h3422bc3_0.tar.bz2#e6c0dfc1c6e34241720983abb66ec35e\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.8.14-h1a8c8d9_0.conda#029e3775088eae34a2b978e7efea7caa\n https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2#fc76ace7b94fb1f694988ab1b14dd248\n https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.18.1-h3422bc3_0.tar.bz2#5dd04dad345af4f1e8f3f0d5afc03b67\n https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.12.7-h4653dfc_0.conda#7dc111916edc905957b7417a247583b6\n@@ -12,34 +12,36 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/osx-arm64/freexl-1.0.6-h1a8c8d9_1.tar.bz2#f9e99c94afe28d7558a5dd106fef0936\n https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2#c64443234ff91d70cb9c7dc926c58834\n-https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h27ca646_2.tar.bz2#fcfaa10e989b15ef30f93b6329c35add\n+https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda#f39a05d3dbb0e5024b7deabb2c0993f1\n https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda#ef1cce2ab799e0c2f32c3344125ff218\n https://conda.anaconda.org/conda-forge/osx-arm64/json-c-0.16-hc449e50_0.tar.bz2#0091e6c603f58202c026d3e63fc93f39\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2#84eb0c3c995a865079080d092e4a3c06\n-https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2#716c4b72ff3808ade65748fd9b49cc44\n-https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.14-h1a8c8d9_0.tar.bz2#cb64374f9f7ad86b6194e294c56e06a5\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-15.0.7-h75e25f2_0.conda#16d9581f4cdc3406a059a607dd2ed816\n+https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda#cae34d3f6ab02e0abf92ec3caaf0bd39\n https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2#566dbf70fe79eacdb3c3d3d195a27f55\n https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2#086914b672be056eb70fd4285b6783b6\n https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2#686f9c755574aa221f29fbcf36a67265\n https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2#90859688dbca4735b74c02af14c4c793\n https://conda.anaconda.org/conda-forge/osx-arm64/libtool-2.4.7-hb7217d7_0.conda#fe8efc3385f58f0055e8100b07225055\n https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2#f8c9c41a122ab3abdf8943b13f4957ee\n-https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h57fd34a_0.tar.bz2#23f90b9f28c585445c52184a3388d01d\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda#480b5b992632e7d17778abf01bad473b\n https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2#780852dc54c4c07e64b276a97f89c162\n-https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-15.0.7-h7cfbb63_0.conda#358164e15a9320f11b84a53fb8d8e446\n+https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.0-h7cfbb63_0.conda#791063135f975b2fd7329d30728cb903\n https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2#db86e5a978380a13f5559f97afdfe99d\n-https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_1.tar.bz2#0503c9d6f2633bee5976d84f91c8050d\n+https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_2.conda#e79494b8d990189fe4701f498f99cd8b\n https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2#0cedfe37c9aee28f5e926a870965466a\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2#d3f26c6494d4105d4ecb85203d687102\n https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.8-3_cp38.conda#079f8d6f829d2c61ee14de8e006668c1\n-https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2022g-h1a8c8d9_0.conda#bae4ee8009209ecc0fbdb0c1581adff1\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2023b-h1a8c8d9_0.conda#502a17fc9bd613bc65c0fd59677a4228\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.9-h27ca646_0.tar.bz2#e2fa1f5a28cf0ce02516baf910be132e\n https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2#6738b13f7fadc18725965abdd4129c36\n https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2#39c6b54e94014701dd157f4f576ed211\n https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2#4bb3f014845110883a3c5ee811fd84b4\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.11-h487e1a8_7.tar.bz2#edf91bd9464b05ca9d29be2a730b9468\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.16-h59b28b2_5.conda#999039f6d7b6b14e30ed08c50ea50369\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.8-h59b28b2_0.conda#47f10d872256c2e7079387eaf16da6e9\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.14-h59b28b2_5.conda#a47c0a55e816e14663239492983b8eef\n https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_0.tar.bz2#88defcdff52e5c8b7238239bc53c02d2\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.11.1-hb7217d7_0.tar.bz2#945d93c362ba338531455e0f0cf54ae2\n@@ -49,67 +51,68 @@ https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2#f8\n https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2#288b591645cb9cb9c0af7309ac1114f5\n https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2#5fbe318a6be2e8d0f9b0b0c730a62748\n https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2#de462d5aacda3b30721b512c5da4e742\n-https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20220623.0-cxx17_h28b99d4_6.conda#0d3775e19ec3fe5257dd84cdd333cfcc\n+https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230125.0-cxx17_hb7217d7_1.conda#22a5254be25ace5abcd06468f58f08bc\n+https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda#4f04770bf6f12d22fb6c1d91a04e0c8c\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2#640ea7b788cdd0420409bd8479f023f9\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2#572907b78be867937c258421bc0807a8\n https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2#32bd82a6a625ea6ce090a81c3d34edeb\n https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2#30e4362988a2623e9eb34337b83e01f9\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_28.conda#21e620d9f8e17c55dc47dfc687de5185\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda#244a7665228221cc951d5126b8bc1465\n https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda#0078e6327c13cfdeae6ff7601e360383\n-https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.20.2-hb5ab8b9_0.tar.bz2#a6f25546f30d4cd56bc37b0b56ab954c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda#7adb342474af442e3842c422f07fbf68\n https://conda.anaconda.org/conda-forge/osx-arm64/libspatialindex-1.9.3-hbdafb3b_4.tar.bz2#311816a2511df4bceeeebe7c06af63e7\n https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.40.0-h76d750c_0.tar.bz2#d090fcec993f4ef0a90e6df7f231a273\n https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2#6b3457a192f8091cb413962f65740ac4\n https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda#45505bec548634f7d05e02fb25262cb9\n https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda#f81b5ec944dbbcff3dd08375eb036efa\n-https://conda.anaconda.org/conda-forge/osx-arm64/openssl-1.1.1t-h03a7124_0.conda#eb1a3168d0381724415629dd31854d42\n+https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.0-h03a7124_0.conda#a67e5c82b81441e972733d95e2d8832b\n https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2#721b7288270bafc83586b0f01c2a67f2\n-https://conda.anaconda.org/conda-forge/osx-arm64/re2-2022.06.01-h9a09cb3_1.conda#e95b6f8c99f9d0edfb1356c4c7ea8f43\n-https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2#dc790f296d94409efb3f22af84ee968d\n-https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.9-h17c5cce_2.tar.bz2#a0735d35df2c7146f49705c286502cef\n+https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.02.02-hb7217d7_0.conda#407639ad13c9dc4d2510c5e2a99c2ada\n+https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda#8cbb776a2f641b943d413b3e19df71f4\n+https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda#ac82a611d1a67a598096ebaa857198e3\n https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2#2cb3d18eac154109107f093860bd545f\n https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2#49132c08da6545dc68351ff8b659ac8e\n https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2#34161cff4e29cc45e536abf2f13fd6b4\n https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda#8f346953ef63bf5fb482488a659adcf3\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.5.11-h4530763_0.tar.bz2#ce11646fafb17267c81d929ca42cdb5c\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.5.21-h134b2d6_2.conda#d7024e289c587a6a6d93dd99977bb0f4\n https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.3-h1d6ff8b_0.conda#827988373085c97417e51c30e40967c3\n https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.78.0-h1cb353e_1.tar.bz2#f2a34b853f0aeee4db721a1f70da6905\n https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2#f212620a4f3606ff8f800b8b1077415a\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda#33ea6326e26d1da25eb8dfa768195b82\n https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2#5a570729c7709399cf8511aeeda6f989\n-https://conda.anaconda.org/conda-forge/osx-arm64/grpc-cpp-1.46.4-haeec53e_7.tar.bz2#a03c4a2cbdd278f0307dafe856799519\n https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h1a38d6a_5.tar.bz2#33632080213c000ced85118a4265256d\n-https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.19.3-hf9b2bbe_0.tar.bz2#e6987ad4d068dfe9037280e239b3d5a9\n-https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.10-hbae9a57_4.tar.bz2#a1f2aca3c5999a24527d6f8a3a8e9320\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_28.conda#d91a6e1915d3f47dc65180859b75203f\n+https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda#a85db53e45b1173f270fc998dd40ec03\n+https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.10-h7673551_4.tar.bz2#762bda55783500f923a559e21c1cd096\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda#dfc3dff1ce831c8e821f19d5d218825a\n https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.74.1-h4646484_1.tar.bz2#4321cf67e46674567f419e95bae18522\n-https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.51.0-hd184df1_0.conda#bbc8d6defa81887dc055d9e074d751fa\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.52.1-he98ff75_1.conda#45f3e9e7299d2a01a4d90d28c3528727\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda#1d319e95a0216f801293626a00337712\n https://conda.anaconda.org/conda-forge/osx-arm64/librttopo-1.1.0-h844f84d_12.tar.bz2#abf6c60dfde69d6e632780c7b44fff6e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-hb80f160_3.tar.bz2#60f87fd8eb881a4c8094824dd112140c\n-https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.4.0-heb92581_5.conda#fb564626ea319252c2b3a5edc2f7640f\n-https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h87b0503_0.tar.bz2#35980b9d069648c553d9322bc89ecfbf\n-https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h96606af_1.tar.bz2#66e39d7149b191cdf17804bd587d5d04\n-https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.88-h789eff7_0.conda#fbb3a48e2d960b2af828b1e265246acc\n-https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.7.6-hb9d09c9_0.tar.bz2#1bb57ec3792df86dfcde3cc1d0bbe53f\n-https://conda.anaconda.org/conda-forge/osx-arm64/python-3.8.15-hf452327_0_cpython.conda#4019c257ab32f347b073138f34bd81e6\n+https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-h7a5bd25_3.tar.bz2#1ffa4340e73809db5a7516cb1a7425a7\n+https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h5dffbdd_2.conda#8e08eae60de32c940096ee9b4da35685\n+https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h67585b2_4.conda#3b3f67d1c9d66e873ca91c87640a1d1b\n+https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h76ab92c_1.tar.bz2#eee3b4ab0b5b71fbda7900785f3a46fa\n+https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.89-h789eff7_0.conda#dbb6be9468b513522e0b03d30cc7f1fd\n+https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.8.3-hef0d403_0.conda#5fe39445f76fa6f2a02b8033f2e5872b\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-3.8.16-h3ba56d0_1_cpython.conda#fd032a04786a23534c417bcc7dd50a84\n https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.40.0-h2229b38_0.tar.bz2#e0176ac0a33639feca897a66ed1fe177\n https://conda.anaconda.org/conda-forge/osx-arm64/unixodbc-2.3.10-hb39ff51_0.tar.bz2#a5a930a1c270a9c9d571179463e571c0\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/osx-arm64/atk-1.0-2.38.0-hcb7b3dd_1.tar.bz2#3c98bfeed7717a9cf5af18c295f49f3a\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.10.5-hea86ef8_0.tar.bz2#03d1eeb5706292ae6570456b98f38dcb\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.19-ha2443f3_3.conda#e1d454418cb21d2a4fdf456afa81f37a\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n-https://conda.anaconda.org/conda-forge/osx-arm64/bitarray-2.7.2-py38hb991d35_0.conda#cfd808e57e669ce38d40f3ecefe33316\n+https://conda.anaconda.org/conda-forge/osx-arm64/bitarray-2.7.3-py38hb991d35_0.conda#e4e26e547b49b35682b3c4ed79a1cbd3\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2#e2a5e381ddd6529eb62e7710270b2ec5\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n@@ -118,31 +121,34 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.6.6-py38h2b1e499_0.conda#ceec087a850c3bec414a1fd3e1174521\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda#f77d47ddb6d3cc5b39b9bdf65635afbb\n-https://conda.anaconda.org/conda-forge/osx-arm64/freetds-1.3.16-h10014b9_0.conda#ec7c9ba65cec93f9f81df151448d2ccc\n+https://conda.anaconda.org/conda-forge/osx-arm64/freetds-1.1.15-h27bbca2_1.tar.bz2#0a00830573641771b858bdc392707e0a\n https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.3.3-py38hb991d35_0.tar.bz2#92d0e58acb530d98508f6a12f39d93e7\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.8-h4f389bb_1.tar.bz2#062a406a54b8feb09213e0de74c17abf\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.10-h9bcf4fe_0.conda#9e8a24e2ffa9bb8200cef965af01af06\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-2.0.2-py38h2b1e499_0.conda#07614b4949c26d7c4b4b890a402f2896\n+https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.52.1-py38h2b1e499_1.conda#33ce03a963c43ed9e45860aaca633cf5\n https://conda.anaconda.org/conda-forge/osx-arm64/gts-0.7.6-h4b6d4d6_2.tar.bz2#285247d54dbf40121f79a6e025c04df4\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.4-py38h9dc3d6a_1.tar.bz2#89f8e0551699eebf6fda52c8bf32af6d\n-https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.14-h8193b64_0.tar.bz2#9bc9a1c491795c92568481b6ab59d9c5\n-https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.86.0-hd538317_1.tar.bz2#64af094274984c756c18dbbe59327a45\n+https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-h481adae_0.conda#806395a21421da524d72aa4e0b69d54c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.88.1-h9049daf_1.conda#148e2e109774943f699768703502a918\n https://conda.anaconda.org/conda-forge/osx-arm64/libkml-1.3.0-h41464e4_1015.tar.bz2#6404f2ec1ee91e48175d9e5ee1dbca5f\n https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2#2a980a5d8cc34ce70d339b983f9920de\n-https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.1-hb650857_1.conda#0ffee7d6b76a2b69c0bf8ed8ba97bf82\n-https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.16.0-h1a74c4f_2.tar.bz2#8949545ae9641f7483a88abc3635b07a\n-https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h328b37c_0.tar.bz2#194c8df68e6966f8e012cd326e42c31d\n+https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.2-h1a28acd_0.conda#36fd96c2586fb726f9aa4dccea769efa\n+https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.18.1-h6635e49_0.conda#c6f3d11f5df3a9cce701b4e7853cf907\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h999c80f_1.conda#8e0866db2c7808ad9058848c47e6d6ff\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/osx-arm64/lz4-4.3.2-py38h76a69a3_0.conda#2b394ecc4ef9bea6db1a7c0036a66a7b\n https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.2-py38hb991d35_0.conda#bd1689d6fc13b6e15f205f5e6a09d8dd\n@@ -150,18 +156,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.4-py38h9dc3d6a_1.tar.bz2#5f5f89f5d9c51fb109faf18c24b25e0c\n+https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.5-py38h9dc3d6a_0.conda#bdc443fe57e340151de0a8fdb0853d0b\n https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.0.4-py38hb991d35_0.conda#0152d96256c83655a22d8a6acb4d303d\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n-https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-h5d4e404_1.tar.bz2#4d65dff04bceb645c98a514c52df217f\n+https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda#c3e184f0810a4614863569488b1ac709\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -176,26 +182,24 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/osx-arm64/pycryptodomex-3.16.0-py38hb991d35_0.conda#81bffa1a5f73a95e2999830672d33d25\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/osx-arm64/pyrsistent-0.19.3-py38hb991d35_0.conda#d05aae84024354f0385b40b666ad2ab7\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py38hb991d35_5.tar.bz2#b2ac48bd209afc364158e533f7f237a2\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.0.0-py38hb72be9f_0.conda#c9d81306ee318a7f2339f8053a8ec422\n-https://conda.anaconda.org/conda-forge/osx-arm64/regex-2022.10.31-py38hb991d35_0.tar.bz2#6682f46ce535fe53c7c10a86cf77f10b\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.0.2-py38hb72be9f_0.conda#0cdcfdf439e0ebad790d3a9d3e0224c6\n+https://conda.anaconda.org/conda-forge/osx-arm64/regex-2023.3.23-py38hb991d35_0.conda#8a7881935ae7d7791cd4138baea1ef81\n https://conda.anaconda.org/conda-forge/osx-arm64/rtree-1.0.1-py38hb34dff0_1.tar.bz2#5bcbcec94894463367b1c2be498972a3\n-https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.0.249-py38h0bfa62c_0.conda#c677f92db9f84b302903b8465f43adcd\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.0.259-py38h0bfa62c_0.conda#8cd7357b72c7965c8be858405d34a53e\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -205,20 +209,22 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.2-py38hb991d35_1.tar.bz2#b883f8e965c8968fc5e08ade58a87841\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.0.0-py38hb991d35_0.tar.bz2#b37f15dbb5e742a8499e058a6fc551ca\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.2.7-h9972306_13.tar.bz2#1aa327d20aec700b23809ce8c1da34cd\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.2.20-ha370d96_4.conda#06f67e990e792f186eaef7d90042bf49\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.6-hca61f3c_0.conda#a31434a64509cd494d92442ed1ad4371\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n https://conda.anaconda.org/conda-forge/osx-arm64/backports.zoneinfo-0.2.1-py38hb991d35_7.tar.bz2#e6b09dcbf26e515752a1b6fafa0ac52d\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h73a0509_1014.tar.bz2#be2ea75899a7b1f1dd59a862fac655ee\n@@ -226,40 +232,40 @@ https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py38ha45ccd6_3.cond\n https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.2.0-h2f961c4_0.conda#10112a8b1b7b479c7d4e87c9ade892eb\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.1.0-py38hb991d35_0.conda#7d2bcf91067c9ad216e43faef316efa8\n-https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.86.0-hd538317_1.tar.bz2#068fc793cf5223be665bcd6d35a2f28f\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.2.2-py38hb991d35_0.conda#c32f46ea7a9d48b5a8fecca4260c4a14\n+https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.88.1-h9049daf_1.conda#8df5e92aeb9de416919a64f116698761\n https://conda.anaconda.org/conda-forge/osx-arm64/cytoolz-0.12.0-py38hb991d35_1.tar.bz2#d9251830c741b5b1599a2733bc0ce2ba\n-https://conda.anaconda.org/conda-forge/osx-arm64/fastavro-1.7.1-py38hb991d35_0.conda#f2eeb7b46af8956361bbb795b6599527\n-https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py38hb991d35_1.tar.bz2#36d2b5c982deee87a70580d6ad18110e\n+https://conda.anaconda.org/conda-forge/osx-arm64/fastavro-1.7.3-py38hb991d35_0.conda#f3179accf56bdd5bd42c9509a8c288bd\n+https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.39.2-py38hb991d35_0.conda#53fb96da5e2046c4477cea0e4e2d59db\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.46.4-py38h63e8d1b_7.tar.bz2#7d0435014f467acf89b7ec6e9361cf5e\n-https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_h8968d4b_100.tar.bz2#6013e6a360be49d947d42b82f6a5a682\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_ha7af310_101.conda#050df57fed623d4b6aa817e9c8bdbfaa\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2#53d6d5097f0d62e24db8c1979a21102e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-hede1055_3.tar.bz2#8bbd974c213208687dc289d50feb5c65\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.1.0-hec15cb4_1.tar.bz2#ab0eccace6b28dbf2515897b7105fa68\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-h90fb8ed_4.conda#03c52c3cdcf9f4cf70e07135254b799f\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.8.0-h7206bc8_1.conda#4101b82f92955893124421a303673986\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.2.0-py38hf86a106_3.tar.bz2#0970f5fdfe3deb64bf6e316024ef2cb8\n+https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py38h1bb68ce_1.conda#8168fd9a81bc392ae6954e588dd8eebe\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-15.1-hf80b784_1.conda#69956ca98448a03365575522744fc9f2\n-https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.0-h3bdf472_0.tar.bz2#84796e1049fba379566c5b1cc3ac9e2b\n-https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-3.20.2-py38h2b1e499_1.conda#fd3fbc8e9ecbeab62f2e5cedaacea86e\n-https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.3-py38h219f6f9_2.conda#d7edc26ad117456b1b4678202b3df072\n+https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-15.2-h45c140d_0.conda#9f35737220640a8de16d09b59914498f\n+https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.1-h13f728c_2.conda#6924682abbbe34aa837c64ca0016ec8e\n+https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.21.12-py38h2b1e499_0.conda#61cb55e52bdff7e7458800746300ebc0\n+https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.3-py38hb6e8bb4_2.conda#419f6b32007bde38b3425b7ecba510b0\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/osx-arm64/pymssql-2.2.5-py38h2b1e499_3.conda#a140d73d350914a5d8710ebb4204159c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/osx-arm64/pymssql-2.2.5-py38h2b1e499_2.tar.bz2#297eed153b3012ffe946e7c172a26e19\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n@@ -267,142 +273,150 @@ https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf4\n https://conda.anaconda.org/conda-forge/osx-arm64/sqlalchemy-1.4.46-py38hb991d35_0.conda#cc16b91ae35cd9d70e56f58e4aade7da\n https://conda.anaconda.org/conda-forge/osx-arm64/thrift-0.16.0-py38h2b1e499_2.tar.bz2#7a9edb69dbe41bb52b1678b66ba1fd85\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-2.2.1-py38hb991d35_0.conda#69b98c8e56509f4d48fe9549f3f019c0\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-3.0.0-py38hb991d35_0.conda#52da4b600d76799c485b1f763f7eaf0f\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.2.4-h627aa08_1.tar.bz2#e690c8c477c96c9f8ad9f7c63f1f94d2\n https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.8.2-py38hb991d35_0.conda#6536ee74cdd6bb3806fe0ecfae07f01d\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.8.186-h392f50b_4.tar.bz2#d27eeebe0e48c6c4cbd21a09f575f496\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.6.26-h9ec8a34_1.conda#9b6e888da325885e2afc3be552fc6191\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.8.6-hcd3fa0e_12.conda#3ebeacc4c1ec79ba87cd5a0bab192910\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/osx-arm64/brotlipy-0.7.0-py38hb991d35_1005.tar.bz2#e8689834a9efb0ade1194ffa8461fd4c\n-https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.4-py38h5eb7249_0.conda#a22a2c768ff4d46432d77c190fee41a5\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.4-py38h23f6d3d_0.conda#ee1d43d5a75a46e2617fe5ab3b953829\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-h90559a4_4.tar.bz2#01946796ab730299feff7026b1f0d222\n+https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-hdcdc974_6.conda#6cb68e5148f9c41564eb840c89b8f7bc\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/osx-arm64/google-crc32c-1.1.2-py38h7f16d20_4.tar.bz2#876babd5b04b19d31564dcf2284cb805\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-6.0.0-hddbc195_0.conda#bc6503f2956775e3d6e481d7588b7998\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/osx-arm64/kealib-1.5.0-hfd766a6_0.conda#3041514025aa54cad642e24061b6b6f6\n https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2#c7cfc18378f00d3faf7f8a9a2553be3c\n-https://conda.anaconda.org/conda-forge/osx-arm64/libdap4-3.20.6-h8510809_2.tar.bz2#b61547e8f0c4fb57318482666c07d6ca\n https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2#52d270c579bfca986d6cdd81eb5ed6e7\n-https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.8.1-nompi_h2510be2_106.tar.bz2#c5d2afa0f2bc4eca5be78c438a41de2e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h558e587_22.tar.bz2#e766cf477817d5fcce530d40c9d97a96\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.1-nompi_h232cb48_101.conda#87dd4b0e9fe52d1b43bf0d5e7be28fc3\n+https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h14115fc_23.conda#2f80ac3b18bf574bb497f9f52966cd4e\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/osx-arm64/poppler-22.12.0-hae7f5f0_0.conda#8bc158f737f4119d494e288ee0880cd2\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-arm64/poppler-23.03.0-h9564b9f_0.conda#a04f2bd0e84b74d694ae65ab9ec09c0b\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.1-py38h35ce115_0.conda#27422e91da4da2b15a1a7151fc9b0927\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.1-py38hba7aebe_1.conda#543659ccbca6cae33aeec78d1b4e649f\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n https://conda.anaconda.org/conda-forge/osx-arm64/pytz-deprecation-shim-0.1.0.post0-py38h10201cd_3.tar.bz2#c8718bd406c1370ce1814d57706497c2\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.13.2-hc7ac4c9_0.conda#71844097f1f47854bb55d8928482cf25\n+https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.13.2-h9bd36d0_0.conda#d3a88ffe0cbfbd8d3532bb8ef46f0626\n+https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py38h9dc3d6a_3.tar.bz2#c7c9ef3c05099bf3ab733d68b991fe6d\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.8.4-py38hb991d35_0.conda#9750bf94473281f7897f28f06248bdd4\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.2.7-hc514de9_1.conda#d585d309fcced2a4e7b94a439f204d42\n https://conda.anaconda.org/conda-forge/osx-arm64/black-23.1.0-py38h10201cd_0.conda#f2eabea61bc0fb7ae8479b1384d25efa\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.2.0-py38h10201cd_0.conda#c2cbdd2773cb7fd2de197d70542f85de\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.5.3-h28a98fa_10.conda#92ee56461fa1874bcc69ea168dfbe94e\n+https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.3.0-py38h10201cd_0.conda#f9d32c721293c470e495b2ef0646429f\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.6.2-h8d4b95d_9.conda#2f2e0c9c1ec238e79fd94c5f0ba35827\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.2-py38hac8ee1c_0.conda#a41451735087a578283680ab46528430\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.13-h6c112b8_0.conda#3ffd7fede31a774ad8f3dc9114897daa\n+https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.14-h6c112b8_0.conda#1e6300d15e38bad0d52871251190b5e8\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/osx-arm64/tzlocal-4.2-py38h10201cd_2.tar.bz2#27c9852d382f9bb2f9ce1aabd8884c47\n-https://conda.anaconda.org/conda-forge/osx-arm64/arrow-cpp-8.0.1-py38h7d92150_2_cpu.tar.bz2#c62d95c67a1495c67ac7c0fae13186a3\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzlocal-4.3-py38h10201cd_0.conda#586e662856e705c367687a959f6a24f2\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.19.8-h6be2766_12.conda#cdfee90317474a42d31eb3ea3752e60c\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.0.7-py38h9dc3d6a_0.conda#1cb30a108720e4ab123bb342568aefec\n-https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.5.3-py38hd915ca2_10.conda#a30eb67098615c68cdbfe7fbc12314dd\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.6.2-py38ha69993d_9.conda#e35656e2044bd6117550fbe39ca883af\n https://conda.anaconda.org/conda-forge/osx-arm64/gtk2-2.24.33-h57013de_2.tar.bz2#144fb77338d90012ebe80d3dd13fc725\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda#e67b634578fefbb312cd6cfd34b63d86\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.54.4-ha2634a2_0.tar.bz2#a9fe78f1beab7f0a90581518a0e11311\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n https://conda.anaconda.org/conda-forge/osx-arm64/pandas-1.5.3-py38h61dac83_0.conda#d2aae53a6cc1cf1f3d739eecadab3219\n-https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.16.7-py38he903e8d_0.conda#582b37aecb3006507ceceab98b6a9f62\n+https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.16.16-py38he903e8d_0.conda#eebe05b529406dc488d28d8835230129\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n https://conda.anaconda.org/conda-forge/osx-arm64/shapely-1.8.5-py38he1a84b8_2.tar.bz2#efa860edb817bbca5830e8c88d430260\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.8.22-py38h150fa43_2.tar.bz2#465918e83ecfc42e72fad15e80fe3bb3\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.10.57-h3daea3c_8.conda#c35e6a52b070dfabe03e4fb63b5da47d\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.9.1-py38h262eea0_0.conda#497df8e436ed25375d64c8ce1c40e92f\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n-https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-7.0.5-h4f8fbd6_0.conda#88ead4365a188ffd036644a0b7931b0e\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh736e0ef_0.conda#aa43ffb10a39d9eb2538761a3f838a87\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n-https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.0-py38hbbe890c_0.conda#3ab167588140266047ea5704cff84018\n+https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-7.1.0-h4f8fbd6_0.conda#6840266ed0788c5c4c8429bf42c4b36d\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.1-py38hbbe890c_0.conda#394897da28b753a32ca53529320f5f65\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-11.0.0-hdcd110a_13_cpu.conda#b8915aea8d4857228a292d672f01460a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-8.0.1-py38h0b65abd_2_cpu.tar.bz2#a9e131d33bf6e35d1f3dcf4543725b06\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-arm64/arrow-cpp-11.0.0-hce30654_13_cpu.conda#ecd5efe74f31a2c6c244f81038ec9e35\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-0.7.0-py38h105019d_1.conda#53d862acd347ad548cf5c42dd0e5e462\n-https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.0-py38h7b4f323_2.conda#6aa04c34b9ebac870ce12c071c237669\n-https://conda.anaconda.org/conda-forge/osx-arm64/snowflake-connector-python-2.8.3-py38h35b95ce_0.conda#b045348c726731246765d9fd808f29d6\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.1-py38h7b4f323_0.conda#470ae87736d43506d7782a113aae3c45\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.2.1-py38h0c332d6_0.conda#9e81f5dd0bed78f5b216d51494a053ff\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.2.2-py38h4253db4_1.conda#b7d2a23b8063cc5070d4631126d339cd\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-11.0.0-py38h32b283d_13_cpu.conda#1a657694f2068fcf9d6025614fb12e47\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-0.7.1-py38h105019d_0.conda#026ddc5111e314c62792abdf433a2f20\n+https://conda.anaconda.org/conda-forge/osx-arm64/snowflake-connector-python-3.0.2-py38he604189_0.conda#a717d90d97d0c3dd774da42b75a8c585\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "osx-arm64-3.9.lock": "@@ -1,8 +1,8 @@\n # Generated by conda-lock.\n # platform: osx-arm64\n-# input_hash: 444907000251681a28a995519702499e49824cbb5a4141009ecea025d32fb160\n+# input_hash: 75f6202e82e6f3a8f3ba3aa5f4ce362f69c4e854423b1555370239c36592725b\n @EXPLICIT\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.6.2-h3422bc3_0.tar.bz2#e6c0dfc1c6e34241720983abb66ec35e\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.8.14-h1a8c8d9_0.conda#029e3775088eae34a2b978e7efea7caa\n https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2#fc76ace7b94fb1f694988ab1b14dd248\n https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.18.1-h3422bc3_0.tar.bz2#5dd04dad345af4f1e8f3f0d5afc03b67\n https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.12.7-h4653dfc_0.conda#7dc111916edc905957b7417a247583b6\n@@ -12,34 +12,36 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/osx-arm64/freexl-1.0.6-h1a8c8d9_1.tar.bz2#f9e99c94afe28d7558a5dd106fef0936\n https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2#c64443234ff91d70cb9c7dc926c58834\n-https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h27ca646_2.tar.bz2#fcfaa10e989b15ef30f93b6329c35add\n+https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda#f39a05d3dbb0e5024b7deabb2c0993f1\n https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda#ef1cce2ab799e0c2f32c3344125ff218\n https://conda.anaconda.org/conda-forge/osx-arm64/json-c-0.16-hc449e50_0.tar.bz2#0091e6c603f58202c026d3e63fc93f39\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2#84eb0c3c995a865079080d092e4a3c06\n-https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2#716c4b72ff3808ade65748fd9b49cc44\n-https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.14-h1a8c8d9_0.tar.bz2#cb64374f9f7ad86b6194e294c56e06a5\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-15.0.7-h75e25f2_0.conda#16d9581f4cdc3406a059a607dd2ed816\n+https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda#cae34d3f6ab02e0abf92ec3caaf0bd39\n https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2#566dbf70fe79eacdb3c3d3d195a27f55\n https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2#086914b672be056eb70fd4285b6783b6\n https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2#686f9c755574aa221f29fbcf36a67265\n https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2#90859688dbca4735b74c02af14c4c793\n https://conda.anaconda.org/conda-forge/osx-arm64/libtool-2.4.7-hb7217d7_0.conda#fe8efc3385f58f0055e8100b07225055\n https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2#f8c9c41a122ab3abdf8943b13f4957ee\n-https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h57fd34a_0.tar.bz2#23f90b9f28c585445c52184a3388d01d\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda#480b5b992632e7d17778abf01bad473b\n https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2#780852dc54c4c07e64b276a97f89c162\n-https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-15.0.7-h7cfbb63_0.conda#358164e15a9320f11b84a53fb8d8e446\n+https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.0-h7cfbb63_0.conda#791063135f975b2fd7329d30728cb903\n https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2#db86e5a978380a13f5559f97afdfe99d\n-https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_1.tar.bz2#0503c9d6f2633bee5976d84f91c8050d\n+https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_2.conda#e79494b8d990189fe4701f498f99cd8b\n https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2#0cedfe37c9aee28f5e926a870965466a\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2#d3f26c6494d4105d4ecb85203d687102\n https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-3_cp39.conda#f8fb5fb65327a2429b084833c8ff1dbc\n-https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2022g-h1a8c8d9_0.conda#bae4ee8009209ecc0fbdb0c1581adff1\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2023b-h1a8c8d9_0.conda#502a17fc9bd613bc65c0fd59677a4228\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.9-h27ca646_0.tar.bz2#e2fa1f5a28cf0ce02516baf910be132e\n https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2#6738b13f7fadc18725965abdd4129c36\n https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2#39c6b54e94014701dd157f4f576ed211\n https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2#4bb3f014845110883a3c5ee811fd84b4\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.11-h487e1a8_7.tar.bz2#edf91bd9464b05ca9d29be2a730b9468\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.16-h59b28b2_5.conda#999039f6d7b6b14e30ed08c50ea50369\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.8-h59b28b2_0.conda#47f10d872256c2e7079387eaf16da6e9\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.14-h59b28b2_5.conda#a47c0a55e816e14663239492983b8eef\n https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_0.tar.bz2#88defcdff52e5c8b7238239bc53c02d2\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.11.1-hb7217d7_0.tar.bz2#945d93c362ba338531455e0f0cf54ae2\n@@ -49,68 +51,69 @@ https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2#f8\n https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2#288b591645cb9cb9c0af7309ac1114f5\n https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2#5fbe318a6be2e8d0f9b0b0c730a62748\n https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2#de462d5aacda3b30721b512c5da4e742\n-https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20220623.0-cxx17_h28b99d4_6.conda#0d3775e19ec3fe5257dd84cdd333cfcc\n+https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230125.0-cxx17_hb7217d7_1.conda#22a5254be25ace5abcd06468f58f08bc\n+https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda#4f04770bf6f12d22fb6c1d91a04e0c8c\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2#640ea7b788cdd0420409bd8479f023f9\n https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2#572907b78be867937c258421bc0807a8\n https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2#32bd82a6a625ea6ce090a81c3d34edeb\n https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2#30e4362988a2623e9eb34337b83e01f9\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_28.conda#21e620d9f8e17c55dc47dfc687de5185\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda#244a7665228221cc951d5126b8bc1465\n https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda#0078e6327c13cfdeae6ff7601e360383\n-https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.20.2-hb5ab8b9_0.tar.bz2#a6f25546f30d4cd56bc37b0b56ab954c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda#7adb342474af442e3842c422f07fbf68\n https://conda.anaconda.org/conda-forge/osx-arm64/libspatialindex-1.9.3-hbdafb3b_4.tar.bz2#311816a2511df4bceeeebe7c06af63e7\n https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.40.0-h76d750c_0.tar.bz2#d090fcec993f4ef0a90e6df7f231a273\n https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2#6b3457a192f8091cb413962f65740ac4\n https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda#45505bec548634f7d05e02fb25262cb9\n https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda#f81b5ec944dbbcff3dd08375eb036efa\n-https://conda.anaconda.org/conda-forge/osx-arm64/openssl-1.1.1t-h03a7124_0.conda#eb1a3168d0381724415629dd31854d42\n+https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.0-h03a7124_0.conda#a67e5c82b81441e972733d95e2d8832b\n https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2#721b7288270bafc83586b0f01c2a67f2\n-https://conda.anaconda.org/conda-forge/osx-arm64/re2-2022.06.01-h9a09cb3_1.conda#e95b6f8c99f9d0edfb1356c4c7ea8f43\n-https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2#dc790f296d94409efb3f22af84ee968d\n-https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.9-h17c5cce_2.tar.bz2#a0735d35df2c7146f49705c286502cef\n+https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.02.02-hb7217d7_0.conda#407639ad13c9dc4d2510c5e2a99c2ada\n+https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda#8cbb776a2f641b943d413b3e19df71f4\n+https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda#ac82a611d1a67a598096ebaa857198e3\n https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2#2cb3d18eac154109107f093860bd545f\n https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2#49132c08da6545dc68351ff8b659ac8e\n https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2#34161cff4e29cc45e536abf2f13fd6b4\n https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda#8f346953ef63bf5fb482488a659adcf3\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.5.11-h4530763_0.tar.bz2#ce11646fafb17267c81d929ca42cdb5c\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.5.21-h134b2d6_2.conda#d7024e289c587a6a6d93dd99977bb0f4\n https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.3-h1d6ff8b_0.conda#827988373085c97417e51c30e40967c3\n https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.78.0-h1cb353e_1.tar.bz2#f2a34b853f0aeee4db721a1f70da6905\n https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2#f212620a4f3606ff8f800b8b1077415a\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda#33ea6326e26d1da25eb8dfa768195b82\n https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2#5a570729c7709399cf8511aeeda6f989\n-https://conda.anaconda.org/conda-forge/osx-arm64/grpc-cpp-1.46.4-haeec53e_7.tar.bz2#a03c4a2cbdd278f0307dafe856799519\n https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h1a38d6a_5.tar.bz2#33632080213c000ced85118a4265256d\n-https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.19.3-hf9b2bbe_0.tar.bz2#e6987ad4d068dfe9037280e239b3d5a9\n-https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.10-hbae9a57_4.tar.bz2#a1f2aca3c5999a24527d6f8a3a8e9320\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_28.conda#d91a6e1915d3f47dc65180859b75203f\n+https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda#a85db53e45b1173f270fc998dd40ec03\n+https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.10-h7673551_4.tar.bz2#762bda55783500f923a559e21c1cd096\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda#dfc3dff1ce831c8e821f19d5d218825a\n https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.74.1-h4646484_1.tar.bz2#4321cf67e46674567f419e95bae18522\n-https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.51.0-hd184df1_0.conda#bbc8d6defa81887dc055d9e074d751fa\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.52.1-he98ff75_1.conda#45f3e9e7299d2a01a4d90d28c3528727\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda#1d319e95a0216f801293626a00337712\n https://conda.anaconda.org/conda-forge/osx-arm64/librttopo-1.1.0-h844f84d_12.tar.bz2#abf6c60dfde69d6e632780c7b44fff6e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-hb80f160_3.tar.bz2#60f87fd8eb881a4c8094824dd112140c\n-https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.4.0-heb92581_5.conda#fb564626ea319252c2b3a5edc2f7640f\n-https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h87b0503_0.tar.bz2#35980b9d069648c553d9322bc89ecfbf\n-https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h96606af_1.tar.bz2#66e39d7149b191cdf17804bd587d5d04\n-https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.88-h789eff7_0.conda#fbb3a48e2d960b2af828b1e265246acc\n-https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.7.6-hb9d09c9_0.tar.bz2#1bb57ec3792df86dfcde3cc1d0bbe53f\n-https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.15-h2d96c93_0_cpython.conda#7c2f3d3b1483cdf61899b4fab18633d0\n+https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-h7a5bd25_3.tar.bz2#1ffa4340e73809db5a7516cb1a7425a7\n+https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h5dffbdd_2.conda#8e08eae60de32c940096ee9b4da35685\n+https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h67585b2_4.conda#3b3f67d1c9d66e873ca91c87640a1d1b\n+https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h76ab92c_1.tar.bz2#eee3b4ab0b5b71fbda7900785f3a46fa\n+https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.89-h789eff7_0.conda#dbb6be9468b513522e0b03d30cc7f1fd\n+https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.8.3-hef0d403_0.conda#5fe39445f76fa6f2a02b8033f2e5872b\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.16-hea58f1e_0_cpython.conda#d2dfc4fe1da1624e020334b1000c6a3d\n https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.40.0-h2229b38_0.tar.bz2#e0176ac0a33639feca897a66ed1fe177\n https://conda.anaconda.org/conda-forge/osx-arm64/unixodbc-2.3.10-hb39ff51_0.tar.bz2#a5a930a1c270a9c9d571179463e571c0\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/osx-arm64/atk-1.0-2.38.0-hcb7b3dd_1.tar.bz2#3c98bfeed7717a9cf5af18c295f49f3a\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.10.5-hea86ef8_0.tar.bz2#03d1eeb5706292ae6570456b98f38dcb\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.19-ha2443f3_3.conda#e1d454418cb21d2a4fdf456afa81f37a\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/osx-arm64/backports.zoneinfo-0.2.1-py39h2804cbe_7.tar.bz2#53ed254446fa05b6c7efda9cabe03630\n-https://conda.anaconda.org/conda-forge/osx-arm64/bitarray-2.7.2-py39h02fc5c5_0.conda#316fce23e62ec0d4ebf50a0ea8f06e37\n+https://conda.anaconda.org/conda-forge/osx-arm64/bitarray-2.7.3-py39h02fc5c5_0.conda#cfa653492a35af0678ac00864bc45ed2\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2#e2a5e381ddd6529eb62e7710270b2ec5\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2#20e4087407c7cb04a40817114b333dbf\n https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n@@ -119,31 +122,34 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.6.6-py39h23fbdae_0.conda#fba081090f706bbba45457d160ddb76c\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda#f77d47ddb6d3cc5b39b9bdf65635afbb\n-https://conda.anaconda.org/conda-forge/osx-arm64/freetds-1.3.16-h10014b9_0.conda#ec7c9ba65cec93f9f81df151448d2ccc\n+https://conda.anaconda.org/conda-forge/osx-arm64/freetds-1.1.15-h27bbca2_1.tar.bz2#0a00830573641771b858bdc392707e0a\n https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.3.3-py39h02fc5c5_0.tar.bz2#4b03833708b32a3f45e518853f82733b\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n-https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.8-h4f389bb_1.tar.bz2#062a406a54b8feb09213e0de74c17abf\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.10-h9bcf4fe_0.conda#9e8a24e2ffa9bb8200cef965af01af06\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-2.0.2-py39h23fbdae_0.conda#aa5770d74752f0ecf2cb50586cde7f41\n+https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.52.1-py39h23fbdae_1.conda#b5788df8787a2116eea6253a80082e5a\n https://conda.anaconda.org/conda-forge/osx-arm64/gts-0.7.6-h4b6d4d6_2.tar.bz2#285247d54dbf40121f79a6e025c04df4\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.4-py39haaf3ac1_1.tar.bz2#5f43e4d5437b93606167c640ea2d06c1\n-https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.14-h8193b64_0.tar.bz2#9bc9a1c491795c92568481b6ab59d9c5\n-https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.86.0-hd538317_1.tar.bz2#64af094274984c756c18dbbe59327a45\n+https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-h481adae_0.conda#806395a21421da524d72aa4e0b69d54c\n+https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.88.1-h9049daf_1.conda#148e2e109774943f699768703502a918\n https://conda.anaconda.org/conda-forge/osx-arm64/libkml-1.3.0-h41464e4_1015.tar.bz2#6404f2ec1ee91e48175d9e5ee1dbca5f\n https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2#2a980a5d8cc34ce70d339b983f9920de\n-https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.1-hb650857_1.conda#0ffee7d6b76a2b69c0bf8ed8ba97bf82\n-https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.16.0-h1a74c4f_2.tar.bz2#8949545ae9641f7483a88abc3635b07a\n-https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h328b37c_0.tar.bz2#194c8df68e6966f8e012cd326e42c31d\n+https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.2-h1a28acd_0.conda#36fd96c2586fb726f9aa4dccea769efa\n+https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.18.1-h6635e49_0.conda#c6f3d11f5df3a9cce701b4e7853cf907\n+https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h999c80f_1.conda#8e0866db2c7808ad9058848c47e6d6ff\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/osx-arm64/lz4-4.3.2-py39hb35ce34_0.conda#6c875c9de482e081dc1de53854e58a94\n https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.2-py39h02fc5c5_0.conda#525d6fb3283d4b90cd9f92c9811214af\n@@ -151,18 +157,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.4-py39haaf3ac1_1.tar.bz2#69aa331a4a84802bdc3a003a98b454aa\n+https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.5-py39haaf3ac1_0.conda#8e142afe3469a80ffd282864a71b793c\n https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.0.4-py39h02fc5c5_0.conda#e7999ad8adcd7fc5ba9a3088cf3f72c5\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n-https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-h5d4e404_1.tar.bz2#4d65dff04bceb645c98a514c52df217f\n+https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda#c3e184f0810a4614863569488b1ac709\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -177,26 +183,24 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/osx-arm64/pycryptodomex-3.16.0-py39h02fc5c5_0.conda#c4d7f6373d8f3ffc13790e26c4cf181e\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/osx-arm64/pyrsistent-0.19.3-py39h02fc5c5_0.conda#750d82d39fc4c317590580dbf2e7a943\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py39h02fc5c5_5.tar.bz2#0f0d3b67c91d129e1fd912985880eaa5\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.0.0-py39h0553236_0.conda#cd341977316dbfd3f12f54c7f2ecda21\n-https://conda.anaconda.org/conda-forge/osx-arm64/regex-2022.10.31-py39h02fc5c5_0.tar.bz2#4fc77163804525b05a455f7fac6233b7\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.0.2-py39h0553236_0.conda#b800d745c90896b65ebffc7e54ede8cc\n+https://conda.anaconda.org/conda-forge/osx-arm64/regex-2023.3.23-py39h02fc5c5_0.conda#d5d5c022807167aef3b4a1b11af14719\n https://conda.anaconda.org/conda-forge/osx-arm64/rtree-1.0.1-py39hb28b0e7_1.tar.bz2#9fbe11ad3786a4ff0cbb3b5950b177cd\n-https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.0.249-py39hd82242d_0.conda#26ede36088f7baa23c75218c1b19bf70\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.0.259-py39hd82242d_0.conda#cb671e690e247bd28e0b62b4a69a057a\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -206,19 +210,21 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.2-py39h02fc5c5_1.tar.bz2#54bb01d39f399f9e846530f824db4b03\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.0.0-py39h02fc5c5_0.tar.bz2#1371c4d91f9c3edf170200a1374cb3e8\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.2.7-h9972306_13.tar.bz2#1aa327d20aec700b23809ce8c1da34cd\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.2.20-ha370d96_4.conda#06f67e990e792f186eaef7d90042bf49\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.6-hca61f3c_0.conda#a31434a64509cd494d92442ed1ad4371\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h73a0509_1014.tar.bz2#be2ea75899a7b1f1dd59a862fac655ee\n@@ -226,41 +232,41 @@ https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py39h7e6b969_3.cond\n https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.2.0-h2f961c4_0.conda#10112a8b1b7b479c7d4e87c9ade892eb\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.1.0-py39h02fc5c5_0.conda#abe9ca542c29c3b9963f5baaf64bf827\n-https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.86.0-hd538317_1.tar.bz2#068fc793cf5223be665bcd6d35a2f28f\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.2.2-py39h02fc5c5_0.conda#3ce044d44d8e4e4200dbe0dac2dd63e7\n+https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.88.1-h9049daf_1.conda#8df5e92aeb9de416919a64f116698761\n https://conda.anaconda.org/conda-forge/osx-arm64/cytoolz-0.12.0-py39h02fc5c5_1.tar.bz2#97df64efb321b00139181cbbb9615a66\n-https://conda.anaconda.org/conda-forge/osx-arm64/fastavro-1.7.1-py39h02fc5c5_0.conda#fda897c6835fe721ac1d3f281b3deb68\n-https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py39h02fc5c5_1.tar.bz2#bad1666f9a5aa9743e2be7b6818d752a\n+https://conda.anaconda.org/conda-forge/osx-arm64/fastavro-1.7.3-py39h02fc5c5_0.conda#17a6f3459c5cb03c68a418f51be28b9f\n+https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.39.2-py39h02fc5c5_0.conda#e5e6b3430008049193c9a090cb8784e0\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.46.4-py39h8e34ec7_7.tar.bz2#6b37200f00300837e7aacea76bc4b8d8\n-https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_h8968d4b_100.tar.bz2#6013e6a360be49d947d42b82f6a5a682\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_ha7af310_101.conda#050df57fed623d4b6aa817e9c8bdbfaa\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2#53d6d5097f0d62e24db8c1979a21102e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-hede1055_3.tar.bz2#8bbd974c213208687dc289d50feb5c65\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.1.0-hec15cb4_1.tar.bz2#ab0eccace6b28dbf2515897b7105fa68\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-h90fb8ed_4.conda#03c52c3cdcf9f4cf70e07135254b799f\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.8.0-h7206bc8_1.conda#4101b82f92955893124421a303673986\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1\n-https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.2.0-py39h139752e_3.tar.bz2#9a8ba1da3956c2f1a1b1f8f866adcacb\n+https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py39h8bd98a6_1.conda#90500f863712b55483294662f1f5f5f1\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-15.1-hf80b784_1.conda#69956ca98448a03365575522744fc9f2\n-https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.0-h3bdf472_0.tar.bz2#84796e1049fba379566c5b1cc3ac9e2b\n-https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-3.20.2-py39h23fbdae_1.conda#ba8b97d316b66e699cfba77833d732c1\n-https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.3-py39h74ffc5b_2.conda#f025b3a31bd05ad2df698d96df0e8ce4\n+https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-15.2-h45c140d_0.conda#9f35737220640a8de16d09b59914498f\n+https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.1-h13f728c_2.conda#6924682abbbe34aa837c64ca0016ec8e\n+https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.21.12-py39h23fbdae_0.conda#0b221c03b2823acffb6365b8cc31e887\n+https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.3-py39hf0b313e_2.conda#c614ae5b1b8eb9178063022c6061432a\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n-https://conda.anaconda.org/conda-forge/osx-arm64/pymssql-2.2.7-py39h23fbdae_0.conda#19880cdb3e323fb9d95d4ec42449dc63\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/osx-arm64/pymssql-2.2.5-py39h23fbdae_2.tar.bz2#4be75185e9ee55c9dc443c6a9439eb02\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/osx-arm64/pytz-deprecation-shim-0.1.0.post0-py39h2804cbe_3.tar.bz2#e976c04572369421dba4ad535407d3e1\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n@@ -269,23 +275,23 @@ https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf4\n https://conda.anaconda.org/conda-forge/osx-arm64/sqlalchemy-1.4.46-py39h02fc5c5_0.conda#2af39c1b565e2b3ac9107e958839f37f\n https://conda.anaconda.org/conda-forge/osx-arm64/thrift-0.16.0-py39h23fbdae_2.tar.bz2#87c45dcd82b83aedb358fba251671fc8\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-2.2.1-py39h02fc5c5_0.conda#fa89fc8892a56242757300c265957e73\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-3.0.0-py39h02fc5c5_0.conda#832eeb2465b00f3b8371592323cad54c\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.2.4-h627aa08_1.tar.bz2#e690c8c477c96c9f8ad9f7c63f1f94d2\n https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.8.2-py39h02fc5c5_0.conda#853f734f0c77512e4fa012a2f8dfc9cd\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.8.186-h392f50b_4.tar.bz2#d27eeebe0e48c6c4cbd21a09f575f496\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.6.26-h9ec8a34_1.conda#9b6e888da325885e2afc3be552fc6191\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.8.6-hcd3fa0e_12.conda#3ebeacc4c1ec79ba87cd5a0bab192910\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/osx-arm64/brotlipy-0.7.0-py39h02fc5c5_1005.tar.bz2#cf0b1f6f29ee28e7b20d49cb66bae19e\n-https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.4-py39haa0b8cc_0.conda#9b6d42619d774e81695ae50d1cafa76c\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.4-py39he2a39a8_0.conda#d6194b87c80eec7698dd65fecfba8bba\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n-https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-h90559a4_4.tar.bz2#01946796ab730299feff7026b1f0d222\n+https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-hdcdc974_6.conda#6cb68e5148f9c41564eb840c89b8f7bc\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n https://conda.anaconda.org/conda-forge/osx-arm64/google-crc32c-1.1.2-py39h17a57db_4.tar.bz2#c9e1b71cc9d98d32ac2c8a9d22b67dee\n@@ -293,116 +299,124 @@ https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-py\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-6.0.0-hddbc195_0.conda#bc6503f2956775e3d6e481d7588b7998\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/osx-arm64/kealib-1.5.0-hfd766a6_0.conda#3041514025aa54cad642e24061b6b6f6\n https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2#c7cfc18378f00d3faf7f8a9a2553be3c\n-https://conda.anaconda.org/conda-forge/osx-arm64/libdap4-3.20.6-h8510809_2.tar.bz2#b61547e8f0c4fb57318482666c07d6ca\n https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2#52d270c579bfca986d6cdd81eb5ed6e7\n-https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.8.1-nompi_h2510be2_106.tar.bz2#c5d2afa0f2bc4eca5be78c438a41de2e\n-https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h558e587_22.tar.bz2#e766cf477817d5fcce530d40c9d97a96\n+https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.1-nompi_h232cb48_101.conda#87dd4b0e9fe52d1b43bf0d5e7be28fc3\n+https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h14115fc_23.conda#2f80ac3b18bf574bb497f9f52966cd4e\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n-https://conda.anaconda.org/conda-forge/osx-arm64/poppler-22.12.0-hae7f5f0_0.conda#8bc158f737f4119d494e288ee0880cd2\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/osx-arm64/poppler-23.03.0-h9564b9f_0.conda#a04f2bd0e84b74d694ae65ab9ec09c0b\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.1-py39h8a4ac70_0.conda#3d7e5383a3e63d6be81b915359b1a8b5\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.1-py39hbb572e0_1.conda#72c46159aefe35590254e9a6bb1e5773\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.13.2-hc7ac4c9_0.conda#71844097f1f47854bb55d8928482cf25\n-https://conda.anaconda.org/conda-forge/osx-arm64/tzlocal-4.2-py39h2804cbe_2.tar.bz2#427d4289a3e6b2d6394da0195adf59d3\n+https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.13.2-h9bd36d0_0.conda#d3a88ffe0cbfbd8d3532bb8ef46f0626\n+https://conda.anaconda.org/conda-forge/osx-arm64/tzlocal-4.3-py39h2804cbe_0.conda#28a9180c8c8a3c77d7809217cf94b2d6\n+https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py39haaf3ac1_3.tar.bz2#a16daaebbfd9a3e4d1f71c0c6283dc57\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.8.4-py39h02fc5c5_0.conda#4d2b451aa718fd0d38e35e84206f996f\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.2.7-hc514de9_1.conda#d585d309fcced2a4e7b94a439f204d42\n https://conda.anaconda.org/conda-forge/osx-arm64/black-23.1.0-py39h2804cbe_0.conda#dd7e4a908ad555a887e36533df9fac9d\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.2.0-py39h2804cbe_0.conda#f2b8d1874e8dec1334004d09cbcd112c\n-https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.5.3-h28a98fa_10.conda#92ee56461fa1874bcc69ea168dfbe94e\n+https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.3.0-py39h2804cbe_0.conda#bc0f16edb3ef7d3c5e1cb975d85201a8\n+https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.6.2-h8d4b95d_9.conda#2f2e0c9c1ec238e79fd94c5f0ba35827\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.2-py39hff61c6a_0.conda#894fca4ee0ea0bfef6ebca15d6d8196e\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n-https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.13-h6c112b8_0.conda#3ffd7fede31a774ad8f3dc9114897daa\n+https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.14-h6c112b8_0.conda#1e6300d15e38bad0d52871251190b5e8\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/osx-arm64/arrow-cpp-8.0.1-py39h744a0ab_2_cpu.tar.bz2#6fc2da9911d50ab3e6e1d6572eeba55c\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.19.8-h6be2766_12.conda#cdfee90317474a42d31eb3ea3752e60c\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.0.7-py39haaf3ac1_0.conda#221d648082c1ebdd89e6968441b5a9c5\n-https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.5.3-py39h07a3771_10.conda#db7dc96a0c7bf72b6e7f5d34676fb98a\n+https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.6.2-py39h766d3fc_9.conda#440612bb309cfb8792ac85c10077688f\n https://conda.anaconda.org/conda-forge/osx-arm64/gtk2-2.24.33-h57013de_2.tar.bz2#144fb77338d90012ebe80d3dd13fc725\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda#e67b634578fefbb312cd6cfd34b63d86\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.54.4-ha2634a2_0.tar.bz2#a9fe78f1beab7f0a90581518a0e11311\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n https://conda.anaconda.org/conda-forge/osx-arm64/pandas-1.5.3-py39hde7b980_0.conda#694bdfe194977ddb7588e05f57ce295c\n-https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.16.7-py39hb39fadb_0.conda#8ec0c4d13c25069018f7684ab6fbb623\n+https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.16.16-py39hb39fadb_0.conda#0a332013217b00e9c14c12da9aa1ac45\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n https://conda.anaconda.org/conda-forge/osx-arm64/shapely-1.8.5-py39h472ea82_2.tar.bz2#d7691e859f86d4535844430fdf8a3953\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.8.22-py39hb828934_2.tar.bz2#f3441723062974c537d68a0d5af91de7\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.10.57-h3daea3c_8.conda#c35e6a52b070dfabe03e4fb63b5da47d\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.9.1-py39h9e5269e_0.conda#ad8c1ba7bf631a2af8fb24d749c3147e\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n-https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-7.0.5-h4f8fbd6_0.conda#88ead4365a188ffd036644a0b7931b0e\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh736e0ef_0.conda#aa43ffb10a39d9eb2538761a3f838a87\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n-https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.0-py39h35e9e80_0.conda#b1cb106fe4b56bc144c7b18d4f1c2ec1\n+https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-7.1.0-h4f8fbd6_0.conda#6840266ed0788c5c4c8429bf42c4b36d\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyhd1c38e8_0.conda#e88ca7d30e60645b2621c888029b85f1\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.1-py39h35e9e80_0.conda#d988ccc3ef2c093353ad1bb8ed9805ea\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh736e0ef_0.conda#3bbe4a71a9d5d8e13c1504e3cd077b32\n+https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-11.0.0-hdcd110a_13_cpu.conda#b8915aea8d4857228a292d672f01460a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n-https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-8.0.1-py39ha7dbb43_2_cpu.tar.bz2#830643d45718ad21e5212e1b64f81b6d\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/osx-arm64/arrow-cpp-11.0.0-hce30654_13_cpu.conda#ecd5efe74f31a2c6c244f81038ec9e35\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-0.7.0-py39h1305b9c_1.conda#0d26171f31caa4b5e0aa0ce6cd34bc12\n-https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.0-py39h18313fe_2.conda#fdd930b6cca23bb9867e4731fa345d6a\n-https://conda.anaconda.org/conda-forge/osx-arm64/snowflake-connector-python-2.8.3-py39ha423d07_0.conda#d03394aa1b297a982593808ff0c24b1b\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.1-py39h18313fe_0.conda#2ee2f9d93cfbd4e9836ad2de9421907d\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.2.1-py39h57c6424_0.conda#ae5a8a14380ca801f88b671590088199\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n+https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.2.2-py39h6180588_1.conda#a512813627bf4f2feb19bb4e114a5ce0\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-11.0.0-py39hfdcab31_13_cpu.conda#13a5329547c27e098700732b923298ce\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-0.7.1-py39h1305b9c_0.conda#843fed8f70bc029a0466e22ca7cab037\n+https://conda.anaconda.org/conda-forge/osx-arm64/snowflake-connector-python-3.0.2-py39h779302d_0.conda#790b86b2493cec5c4c03c53d26ae87ec\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "win-64-3.10.lock": "@@ -1,6 +1,6 @@\n # Generated by conda-lock.\n # platform: win-64\n-# input_hash: bd86aaeca87ae7374ef3a55c244cd8ac9e90098ce102c67524cb11f0871ac21a\n+# input_hash: 0fd828c02ea928c72e8eddbfbac00fa4ae207714eed301526c5e7a47fd5a6047\n @EXPLICIT\n https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2022.12.7-h5b45459_0.conda#31de4d9887dc8eaed9e6230a5dfbb9d6\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45\n@@ -9,11 +9,11 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.0.0-h57928b3_25922.conda#8ecf3a448f5a35bd30cb39ddc2a19058\n https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2#b0309b72560df66f71a9d5e34a5efdfa\n-https://conda.anaconda.org/conda-forge/win-64/pandoc-2.19.2-h57928b3_1.tar.bz2#94bac372f90d1402ddd1df0f4cf67656\n+https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.1-h57928b3_0.conda#71f11eb19ae575ee0b52d0d58fb018f3\n https://conda.anaconda.org/conda-forge/win-64/perl-5.32.1.1-2_h57928b3_strawberry.tar.bz2#c2f85039cbc767518ff2f701638e37c4\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-3_cp310.conda#f4cfd883c0d91bb17164d8e34f4900d5\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2#72608f6cd3e5898229c3ea16deb1ac43\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2#53a1c73e1e3d185516d7e3af177596d9\n@@ -22,7 +22,7 @@ https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-h4c5c07\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2#4289d80fb4d272f1f3b56cfe87ac90bd\n https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb6edc58_10.conda#52d246d8d14b83c516229be5bb03a163\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.6.2-h8ffe710_0.tar.bz2#7eb3e6859d0da38fe0bff50391e7f9dc\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.8.14-hcfcfb64_0.conda#6bc5797d31bbbd38b993a5c8356cbb87\n https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2#7c03c66026944073040cb19a4f3ec3c9\n https://conda.anaconda.org/conda-forge/win-64/c-ares-1.18.1-h8ffe710_0.tar.bz2#6aa55bbdfe054ea36c1c99d3adace8d9\n https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h1537add_0.tar.bz2#6b20c31bd735d2dd5c79ddb5b3524619\n@@ -34,7 +34,7 @@ https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-1000.tar.bz2#8fc0\n https://conda.anaconda.org/conda-forge/win-64/icu-70.1-h0e60522_0.tar.bz2#64073396a905b6df895ab2489fae3847\n https://conda.anaconda.org/conda-forge/win-64/jpeg-9e-hcfcfb64_3.conda#824f1e030d224e9e376a4655032fdbc7\n https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2#1900cb3cab5055833cfddb0ba233b074\n-https://conda.anaconda.org/conda-forge/win-64/libabseil-20220623.0-cxx17_h1a56200_6.conda#5a3b4c52be0bd9dd8718c560e38db140\n+https://conda.anaconda.org/conda-forge/win-64/libabseil-20230125.0-cxx17_h63175ca_1.conda#768d0974049a1146ff45579a05b112ca\n https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda#f98474a8245f55f4a273889dbe7bf193\n https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.0.9-hcfcfb64_8.tar.bz2#e8078e37208cd7d3e1eb5053f370ded8\n https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2#cd4cc2d0c610c8cb5419ccc979f2d6ce\n@@ -45,52 +45,53 @@ https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz\n https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h39d44d4_4.tar.bz2#51c172496e828258d04eba9971f2af1a\n https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.40.0-hcfcfb64_0.tar.bz2#5e5a97795de72f8cc3baf3d9ea6327a2\n https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2#076894846fe9f068f91c57d158c90cba\n-https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.2.4-h8ffe710_0.tar.bz2#0a09bd195ebeaff5711ccae93ac132ad\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda#381a3645c51cbf478872899b16490318\n https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_4.tar.bz2#0cc5c5cc64ee1637f37f8540a175854c\n https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda#e34720eb20a33fc3bfb8451dd837ab7a\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2#066552ac6b907ec6d72c0ddab29050dc\n-https://conda.anaconda.org/conda-forge/win-64/openssl-1.1.1t-hcfcfb64_0.conda#f47342fb350e6d2a233304f750c3502d\n+https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.0-hcfcfb64_0.conda#4245a25fae1aaf85bc3fbf6fc29c2d5d\n https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2#32b45d3fcffddc84cc1a014a0b5f0d58\n https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2#e2da8758d7d51ff6aa78a14dfb9dbed4\n-https://conda.anaconda.org/conda-forge/win-64/re2-2022.06.01-h0e60522_1.conda#dcff2309ccfcec47248ebb6f502c35ff\n-https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.9-hfb803bf_2.tar.bz2#073b08c65807f205d990ace14ccacdb2\n+https://conda.anaconda.org/conda-forge/win-64/re2-2023.02.02-h63175ca_0.conda#586130698a48cd88f76e3fba5f091243\n+https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda#cff1df79c9cff719460eb2dd172568de\n https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2#c69a5047cc9291ae40afd4a1ad6f0c0f\n-https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_1.tar.bz2#b026982f81a6aba1e8ce2525ba640632\n+https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_2.conda#8ba57760b15d0c2493192908317bdf5e\n https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2#515d77642eaa3639413c6b1bc3f94219\n https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2#adbfb9f45d1004a26763652246a33764\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.5.11-he19cf47_0.tar.bz2#c8b314ff705e4de32640c748e5b9c8d2\n-https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.11-h1e232aa_7.tar.bz2#c9fde0c43dce1a8eecbef5368396742c\n-https://conda.anaconda.org/conda-forge/win-64/freetds-1.3.16-pl5321hfe0aba9_0.conda#40463ad15ddabdd29c419a5eeb92b10b\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.5.21-h7cda486_2.conda#049fc3fb095e7838621382a696abcfda\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.16-h8a79959_5.conda#0a790b22ec9cf8aff76fdd3150d784aa\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.8-h8a79959_0.conda#2bf14b763bda622122577f11b03579d5\n+https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.14-h8a79959_5.conda#427baa843cb7d3bbac662efb193d27ed\n+https://conda.anaconda.org/conda-forge/win-64/freetds-1.3.16-pl5321hf43717d_0.conda#ca29852204cf1fb50fbc56c9f0a8681a\n https://conda.anaconda.org/conda-forge/win-64/freexl-1.0.6-h67ca5e6_1.tar.bz2#7ddb6e879c46e78eec37f956b3ffe743\n https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2#299d4fd6798a45337042ff5a48219e5f\n https://conda.anaconda.org/conda-forge/win-64/glog-0.6.0-h4797de2_0.tar.bz2#fdc11ab9a621f009995e89f52bea3004\n-https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-h6609f42_0.conda#a962b5937824124553d53bd9f535cc71\n+https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda#a07b05ee8f451ab15698397185efe989\n https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.0.9-hcfcfb64_8.tar.bz2#99839d9d81f33afa173c0fa82a702038\n https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.0.9-hcfcfb64_8.tar.bz2#88e62627120c20289bf8982b15e0a6a1\n https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda#ab6febdb2dbd9c00803609079db4de71\n-https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.20.2-h12be248_0.tar.bz2#672e32cebe446a63a26b9eb36c58422f\n+https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.21.12-h12be248_0.conda#065644957b64030c520c732a0b7eb43d\n https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-he22b5cd_12.tar.bz2#115a51fda72ff01d7b7eb275183d6c72\n-https://conda.anaconda.org/conda-forge/win-64/libssh2-1.10.0-h680486a_3.tar.bz2#3b2aa0d4ede640c471bd0e8f122fcbd5\n-https://conda.anaconda.org/conda-forge/win-64/libthrift-0.16.0-h9f558f2_2.tar.bz2#0b49bcb47e1a3c55a098cc3e78f3ee8f\n-https://conda.anaconda.org/conda-forge/win-64/libwebp-1.2.4-hcfcfb64_1.conda#ccde94ca6504af175b76f654bcad6e9f\n-https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.3-hc3477c8_0.tar.bz2#6dcf17bf780618ddb559d992ea3b6961\n-https://conda.anaconda.org/conda-forge/win-64/libzip-1.9.2-hfed4ece_1.tar.bz2#1964ebe1dd5f092b9512aaa41f5f2a8b\n+https://conda.anaconda.org/conda-forge/win-64/libssh2-1.10.0-h9a1e1f7_3.tar.bz2#c2b344e960a173c777bb3ed172c38cd8\n+https://conda.anaconda.org/conda-forge/win-64/libthrift-0.18.1-h9ce19ad_0.conda#c6b9481c37361790ff1b0d16899d2142\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-1.3.0-hcfcfb64_0.conda#0c1f2c4b45406631c600ec22ca9523fc\n+https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.3-hc3477c8_6.conda#a56f8a52bc13d7eee23457f0e253e055\n+https://conda.anaconda.org/conda-forge/win-64/libzip-1.9.2-h519de47_1.tar.bz2#9c3138e53e36c0c161a23d20db91297b\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2#fe759119b8b3bfa720b8762c6fdc35de\n https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2#2519de0d9620dc2bc7e19caf6867136d\n-https://conda.anaconda.org/conda-forge/win-64/python-3.10.8-h0269646_0_cpython.conda#9c11e051f478e2dc3699fdba9d5dd9a5\n+https://conda.anaconda.org/conda-forge/win-64/python-3.10.10-h4de0772_0_cpython.conda#3f6ad634efe9e6fe40a916eb68cc3ee4\n https://conda.anaconda.org/conda-forge/win-64/sqlite-3.40.0-hcfcfb64_0.tar.bz2#c71d4be22d8402e7e17386aeb18b930e\n https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.4-h0e60522_1.tar.bz2#e1aff0583dda5fb917eb3d2c1025aa80\n https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_4.tar.bz2#eed9fec3e6d2e8865135b09d24ca040c\n https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda#62826565682d013b3e2346aaf7bded0e\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.10.5-h2fe331c_0.tar.bz2#d38ee034f93fb73f3f222d1be1e9c3a3\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.19-h0d2781e_3.conda#075e2d0fc0b2ca759d61ceddfaeae87d\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/win-64/backports.zoneinfo-0.2.1-py310h5588dad_7.tar.bz2#0f18779fbc505ab486e92c654c004f59\n-https://conda.anaconda.org/conda-forge/win-64/bitarray-2.7.2-py310h8d17308_0.conda#c5426b869222495df66e226d5175e99e\n+https://conda.anaconda.org/conda-forge/win-64/bitarray-2.7.3-py310h8d17308_0.conda#07aba5ad0a54f3c7c28bab08a82fd26b\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.3-hdccc3a2_0.conda#b3fe9abd77808553a7d0a0cbf73b6ec9\n https://conda.anaconda.org/conda-forge/win-64/boost-cpp-1.78.0-h9f4b32c_1.tar.bz2#11a4273e974d63a99da36b89d6f918a9\n@@ -98,6 +99,7 @@ https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.0.9-hcfcfb64_8.tar.bz\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99\n@@ -105,27 +107,29 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/win-64/debugpy-1.6.6-py310h00ffb61_0.conda#5c1ccd98ca59fa7e37a34b8938a27bdf\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda#1b513009cd012591f3fdc9e03a74ec0a\n https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.3.3-py310h8d17308_0.tar.bz2#550271ca005a4c805cd7391cef008dc6\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/win-64/greenlet-2.0.2-py310h00ffb61_0.conda#ebce3ec31341d09dbbb0893a1c9c4054\n-https://conda.anaconda.org/conda-forge/win-64/grpc-cpp-1.46.4-hcb02dd0_7.tar.bz2#22d5b60176875da20518c4ea94a77037\n https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h1b1b6ef_5.tar.bz2#bfb6a2d82ef9a30455cc0900d89eed20\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.4-py310h232114e_1.tar.bz2#c55fe943d5f212d49d27d08580f5a610\n-https://conda.anaconda.org/conda-forge/win-64/libcurl-7.88.1-h68f0423_0.conda#382f59d4d1e98d89b32402c07e7c5017\n+https://conda.anaconda.org/conda-forge/win-64/libcurl-7.88.1-h68f0423_1.conda#e73c24dd32b88acab08e46ddeb173fee\n https://conda.anaconda.org/conda-forge/win-64/libglib-2.74.1-he8f3873_1.tar.bz2#09e1cbabfd9d733729843c3b35cb0b6d\n-https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.8.0-h039e092_1.tar.bz2#e84839b06cdd039130a1d1aa875146d3\n-https://conda.anaconda.org/conda-forge/win-64/libpq-15.1-he840576_3.conda#26b3842062eca8f6a95cb9065d92841c\n+https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.52.1-h32da247_1.conda#3c9082d6dda43261e0e0cb49c362fca8\n+https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.0-h51c2c0f_0.conda#6cbde93c514acb846762631c15c5d3c2\n+https://conda.anaconda.org/conda-forge/win-64/libpq-15.2-ha9684e8_0.conda#dd4e0f2881b08f08b76c2c4d1763b38a\n https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.0-hf8721a0_2.conda#2e003e276cc1375192569c96afd3d984\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/win-64/lz4-4.3.2-py310hbbb2075_0.conda#6402ef89ed20be188dbf48a238a5c337\n@@ -134,17 +138,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.4-py310h232114e_1.tar.bz2#037a60d74aadd3a2f10e1e9580a42a9b\n+https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.5-py310h232114e_0.conda#03f6096e23f3861934af853ac987c185\n https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.4-py310h8d17308_0.conda#23a55d74d8f91c7667555b81030034bf\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n+https://conda.anaconda.org/conda-forge/win-64/orc-1.8.3-hada7b9e_0.conda#d2c4ea49865e0838df46e74545fb8414\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -159,27 +164,25 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/win-64/pycryptodomex-3.16.0-py310h8d17308_0.conda#05477dec16d9aa494693abe5bb9287f0\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/win-64/pymssql-2.2.7-py310h00ffb61_0.conda#7f354d990fc8a04f01b7f92b657e79af\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/win-64/pyrsistent-0.19.3-py310h8d17308_0.conda#ddba6aad7d1857d16675d41a6e8b0224\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/win-64/pywin32-304-py310h00ffb61_2.tar.bz2#e1401844b4f4ec959e099452a953e764\n https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0-py310h8d17308_5.tar.bz2#d0daf3eed98dd2bf4337ed08d8011eb8\n-https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.0.0-py310hcd737a0_0.conda#a209a5ab6fa74a330a904f68375e30f5\n-https://conda.anaconda.org/conda-forge/win-64/regex-2022.10.31-py310h8d17308_0.tar.bz2#2170efa2fade1a873918245fc1f7e454\n+https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.0.2-py310hcd737a0_0.conda#8908f8a24967cf912284fd882f7da00d\n+https://conda.anaconda.org/conda-forge/win-64/regex-2023.3.23-py310h8d17308_0.conda#fbbda3e7f18fc1176dcb4680e2f0dcca\n https://conda.anaconda.org/conda-forge/win-64/rtree-1.0.1-py310h1cbd46b_1.tar.bz2#da35b972cbb9b41a4a73db959b810ad8\n-https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.249-py310h298983d_0.conda#c9098aed3e35f55874e96ac6f693d2ed\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.259-py310h298983d_0.conda#8dfa9622ffc5d88e81792a77e8fad760\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -189,95 +192,98 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/win-64/tornado-6.2-py310h8d17308_1.tar.bz2#09f089ca5a0e8854c3eb720854816972\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/win-64/unicodedata2-15.0.0-py310h8d17308_0.tar.bz2#5d14ba562f7740b64be9c8059498cfbf\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2#30878ecc4bd36e8deeea1e3c151b2e0b\n https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2#8d11c1dac4756ca57e78c1bfe173bba4\n https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.0.10-hcd874cb_0.tar.bz2#8f45beee385cb67e42d6732bdb1b6a40\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.9-hcd874cb_0.tar.bz2#9cef622e75683c17d05ae62d66e69e6c\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2#46878ebb6b9cbd8afcf8088d7ef00ece\n-https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1002.tar.bz2#4e2fb1b05e6f44190127b600b8f01645\n+https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda#6e6c2639620e436bddb7c040cd4f3adb\n https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2#88f3c65d2ad13826a9e0b162063be023\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.2.7-h70e1b0c_13.tar.bz2#c5946a20e3d686659e2173f4921160a7\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.2.20-h5f78564_4.conda#427ca70288aa9baf7514ee02c800f87c\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.6-h2545be9_0.conda#e0cb706b5e7856ebf28d3228e008d5c3\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/win-64/brotli-1.0.9-hcfcfb64_8.tar.bz2#2e661f21e1741c11506bdc7226e6b0bc\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/win-64/cffi-1.15.1-py310h628cb3f_3.conda#b7ca236d34501eb6a70691c1e29a0234\n https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.2.0-h9ebe7e4_0.conda#cccd314cbeea4f2f70f73c763d9660e8\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-win_pyhd8ed1ab_2.tar.bz2#6b58680207b526c42dcff68b543803dd\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/win-64/coverage-7.1.0-py310h8d17308_0.conda#78964ddbe4f7e66f31d8cf69dcf8f4a4\n-https://conda.anaconda.org/conda-forge/win-64/curl-7.88.1-h68f0423_0.conda#692a21a3ee4119c67f6e99f2c903d50b\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/win-64/coverage-7.2.2-py310h8d17308_0.conda#2dde53123830e3f8791201bd4b0ff3f1\n+https://conda.anaconda.org/conda-forge/win-64/curl-7.88.1-h68f0423_1.conda#61bac43f1aad61a834f9eb718421a87c\n https://conda.anaconda.org/conda-forge/win-64/cytoolz-0.12.0-py310h8d17308_1.tar.bz2#2bea7d6cc097ca31b83f1fe452a9bf84\n-https://conda.anaconda.org/conda-forge/win-64/fastavro-1.7.1-py310h8d17308_0.conda#edd06432d1082b58bf1abda20b1fb267\n+https://conda.anaconda.org/conda-forge/win-64/fastavro-1.7.3-py310h8d17308_0.conda#994f64be8cb59396782f2b948b9cabda\n https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda#08767992f1a4f1336a257af1241034bd\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/win-64/grpcio-1.46.4-py310h1177ea7_7.tar.bz2#74c5f62e4ced8893ef8d7610ec58e217\n+https://conda.anaconda.org/conda-forge/win-64/grpcio-1.52.1-py310h76bb054_1.conda#e9326a8f9c6e9890a1314c11c44ac528\n https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h7c369d9_2.tar.bz2#509e4ea898407220d7bdbc6f8a02fe63\n-https://conda.anaconda.org/conda-forge/win-64/hdf5-1.12.2-nompi_h2a0e4a3_101.conda#fc009523b37055956ca02475539e144c\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/win-64/hdf5-1.12.2-nompi_h57737ce_101.conda#3e2b84f2f7bcf6915d1baa21e5b1a862\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n-https://conda.anaconda.org/conda-forge/win-64/lcms2-2.14-ha5c8aab_1.conda#135bd65be6768b2bc84e864e7141ab77\n-https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.1.0-h1006c2c_1.tar.bz2#0e19cfef9029c1a74d70b82d1f8a827e\n+https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-ha5c8aab_0.conda#5ebe92728f44a8b2461410ffb3628c18\n+https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.8.0-hf2ff781_1.conda#97fc6c786071aea9d5d7d439e5f26635\n https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-hf2ab4e4_1015.tar.bz2#1f50b25e87cefda820cb71fb643bc021\n https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-hcd874cb_1004.tar.bz2#a6d7fd030532378ecb6ba435cd9f8234\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-ha2aaf27_2.conda#db0490689232e8e38c312281df6f31a2\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/win-64/postgresql-15.1-h09b8c1b_3.conda#50e0acf0eaf90abff3f96a5895e2b582\n+https://conda.anaconda.org/conda-forge/win-64/postgresql-15.2-hd87cd2b_0.conda#9148e8b6b7ec9e7dedf9bf9987f606cd\n https://conda.anaconda.org/conda-forge/win-64/proj-9.1.1-heca977f_2.conda#eb88b5bc4d13493971408c3131022aec\n-https://conda.anaconda.org/conda-forge/win-64/protobuf-3.20.2-py310h5588dad_1.conda#0e842d7a25a9e42f6c538fe3ca207be5\n-https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.3-py310h1aa7a9d_2.conda#7cf896dd9b8dfd63ec04c6b83bdcdf3b\n+https://conda.anaconda.org/conda-forge/win-64/protobuf-4.21.12-py310h00ffb61_0.conda#bc7af38de2d06a42df22de09b94eea75\n+https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.3-py310h709a2f1_2.conda#48e48c95d55c1c75b478e7ffd8fddfd8\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2#56cd9fe388baac0e90c7149cfac95b60\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/win-64/pytz-deprecation-shim-0.1.0.post0-py310h5588dad_3.tar.bz2#002aa0e5a4b75deaf280cda53d625bbc\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-1.4.46-py310h8d17308_0.conda#41d74047d854ee77ca51191682a01ba1\n-https://conda.anaconda.org/conda-forge/win-64/tbb-2021.7.0-h91493d7_1.conda#39365b918d4f04909485f3055b131c86\n+https://conda.anaconda.org/conda-forge/win-64/tbb-2021.8.0-h91493d7_0.conda#e155410da447d8e37302a561b911dcb8\n https://conda.anaconda.org/conda-forge/win-64/thrift-0.16.0-py310h00ffb61_2.tar.bz2#ba9249abad1b29625aabbe34e85a7930\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/win-64/watchdog-2.2.1-py310h5588dad_0.conda#4edd9c0863c03f222b2a118e6e0d150b\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/win-64/watchdog-3.0.0-py310h5588dad_0.conda#7dffd715879d876d5101bad90ef0bf86\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.3-hcd874cb_1000.tar.bz2#76a765e735668a9922da3d58e746a7a6\n https://conda.anaconda.org/conda-forge/win-64/yarl-1.8.2-py310h8d17308_0.conda#ca778392f9e76350e1bd0914823baeb5\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.8.186-h93d3aa3_4.tar.bz2#b67b8f43c04fac75e8932d6023b22ef2\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.6.26-h1262f0c_1.conda#2090318f4a24eec3680efbd0395b1697\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.8.6-hd211e0c_12.conda#6eadc1f9b2b273f574cc24227a3390c6\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/win-64/brotlipy-0.7.0-py310h8d17308_1005.tar.bz2#6cb010e0fa21d7b606a13038a89ccbc2\n https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hd694305_1014.tar.bz2#91f08ed9ff25a969ddd06237454dae0d\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/win-64/cryptography-38.0.4-py310h52f42fa_0.conda#9f7c511e8f08c120ea76267400a12ca8\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/win-64/cryptography-38.0.4-py310h6e82f81_0.conda#0e8b49bc425a99afa3c8d48776c6e6ed\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n-https://conda.anaconda.org/conda-forge/win-64/fonttools-4.38.0-py310h8d17308_1.tar.bz2#278ceddad4295cdeb1a2c60537cd20a5\n+https://conda.anaconda.org/conda-forge/win-64/fonttools-4.39.2-py310h8d17308_0.conda#a62195ea396a2fb13edc53c252428c40\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-hc256dc0_6.conda#d147f5504f1b29faa112aa72e9c59599\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n@@ -285,123 +291,132 @@ https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.cond\n https://conda.anaconda.org/conda-forge/win-64/google-crc32c-1.1.2-py310ha7be474_4.tar.bz2#a15b9bdf00b8b18c2af01fba0f2ab361\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.0-h61be68b_0.conda#59e439387b2ca19699b8ce1f077ebe0a\n-https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.8.1-nompi_h8c042bf_106.tar.bz2#90515eee0f7575b5fd296b6ba8d91dae\n+https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.1-nompi_hc41bf00_101.conda#cc79e202db8167cfc78ce4edfcf43c17\n https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.0.1-hfdcade0_23.conda#7661a11b21d23f6f21648a787045b825\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2#2ff89a7337a9636029b4db9466e9f8e3\n https://conda.anaconda.org/conda-forge/win-64/pillow-9.4.0-py310hdbb7713_1.conda#79fd90da956353feaf83e1fcd9e8ec15\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n https://conda.anaconda.org/conda-forge/win-64/pyproj-3.4.1-py310hcdd211a_1.conda#45b4a4828397fef0b539a3bff8706390\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/win-64/tiledb-2.13.2-h5689973_0.conda#931a7aedaa3ae50e4fca6982e3dda4ba\n-https://conda.anaconda.org/conda-forge/win-64/tzlocal-4.2-py310h5588dad_2.tar.bz2#f27c4592774f57b565eb50fa4e9a4415\n+https://conda.anaconda.org/conda-forge/win-64/tiledb-2.13.2-h3132609_0.conda#07426c5e1301448738f66686548d41ff\n+https://conda.anaconda.org/conda-forge/win-64/tzlocal-4.3-py310h5588dad_0.conda#0e61da38a4d0a48e43c657dc859e50be\n+https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py310h232114e_3.tar.bz2#e058ad110afa0356b03a91ad949c510d\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n-https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.7.2-hcd874cb_0.tar.bz2#fc83d322fcfa4ca466b8529c4a2d259c\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.4-hcd874cb_0.conda#ebdb02b455647e13fa697da89d9bdf84\n https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.8.4-py310h8d17308_0.conda#1b9c65dd95d828865f4b7d0dbb3d501b\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.2.7-h8113e7b_1.conda#4f322af22c19df5e1d2c4d77dd68fa7c\n https://conda.anaconda.org/conda-forge/win-64/black-23.1.0-py310h5588dad_0.conda#e376fe05d9f4feaed353cdeeffc171d8\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n https://conda.anaconda.org/conda-forge/win-64/harfbuzz-6.0.0-he256f1b_0.conda#15422d4ff786ed835173cfb8e6735679\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.2.0-py310h5588dad_0.conda#7a4e9c207e4cc3143ddfccef107235ba\n+https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.3.0-py310h5588dad_0.conda#637134be9eeb27207be68efa21e841cc\n https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-16_win64_mkl.tar.bz2#d2e6f4e86cee2b4e8c27ff6884ccdc61\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/win-64/poppler-23.01.0-h183ae7b_0.conda#e783b13dd5053ac11ecb77b0edc8eafc\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/win-64/poppler-23.03.0-h183ae7b_0.conda#0908fe0f0432ac13c3411822c68da81d\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_1.tar.bz2#237e70b849a9440c2fce725b74412cd6\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda#2aa695ac3c56193fd8d526e3b511e021\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.2.1-hcd874cb_2.tar.bz2#75788d7a4edf041cdd0a830f9bcaa3fb\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh08f2357_0.conda#ad7524fdf746f7141b6c3dbffc2a9548\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.19.8-he6d3b81_12.conda#10db42f355afa5c3c552391d1037a979\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-16_win64_mkl.tar.bz2#14c2fb03b2bb14dfa3806186ca91d557\n-https://conda.anaconda.org/conda-forge/win-64/libgdal-3.6.2-hb852d34_5.conda#86b77837f2f7ce8f5d63f9f071d520d5\n+https://conda.anaconda.org/conda-forge/win-64/libgdal-3.6.2-h221c0cb_9.conda#88c3283cd62901b1d33e51a15f8e981d\n https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-16_win64_mkl.tar.bz2#be2f9d5712a5bb05cd900005ee752a05\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n-https://conda.anaconda.org/conda-forge/win-64/pango-1.50.13-hdffb7b3_0.conda#a2db50ec796a95c44f6fae10eb7ae39e\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/win-64/pango-1.50.14-hdffb7b3_0.conda#a613f324e0f213238baec720d5c4ed00\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.13-hcd874cb_0.tar.bz2#4b31b88585f696327ba79fea3b41f973\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh025b116_0.conda#2f0ef6a37b24f898508d7a5026e32c02\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n+https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.10.57-h64004b3_8.conda#1c1266961221f698336f672757c27ff2\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh08f2357_0.conda#260ed8a8cbb42c30f8b17a9daeb78353\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-hf5a96e7_4.conda#07f0bd616b51dbd898cabf14646cdf5d\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n https://conda.anaconda.org/conda-forge/win-64/numpy-1.24.2-py310hd02465a_0.conda#bf67b852c970df4ea3e41313bcf09fc2\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/win-64/arrow-cpp-8.0.1-py310h8b1cf1d_2_cpu.tar.bz2#e2b7d79a83b68aef26efd6781f25fded\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/win-64/contourpy-1.0.7-py310h232114e_0.conda#357f1ccd3fa2bbf3661146467f7afd44\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/win-64/gdal-3.6.2-py310h198874d_5.conda#e037731b045a68a5c227ccb35ccf7f81\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n+https://conda.anaconda.org/conda-forge/win-64/gdal-3.6.2-py310h644bc08_9.conda#78e1cc7339050d48a915a06846b13b40\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n https://conda.anaconda.org/conda-forge/win-64/graphviz-7.1.0-h51cb2cd_0.conda#2ab84ffaa7b47e0118c10e9e5d29bd37\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh025b116_0.conda#4d594953555f43826532ab5c5f7754f5\n+https://conda.anaconda.org/conda-forge/win-64/libarrow-11.0.0-h04c43f8_13_cpu.conda#0872ce0cc56d710e1467c996b3142cb4\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n https://conda.anaconda.org/conda-forge/win-64/pandas-1.5.3-py310h1c4a608_0.conda#9804d59dd8ea7d363ac2ccbba29c950c\n-https://conda.anaconda.org/conda-forge/win-64/polars-0.16.6-py310h87d50f1_0.conda#ced19f81b23213f9dab539932028f1e7\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n+https://conda.anaconda.org/conda-forge/win-64/polars-0.16.16-py310h87d50f1_0.conda#74306fc9c3c3d4800fa79d51a9fbb778\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n https://conda.anaconda.org/conda-forge/win-64/shapely-1.8.5-py310h8c82734_2.tar.bz2#76b4d1b25e5ba9d036700b6a0da8cdbc\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/win-64/arrow-cpp-11.0.0-h57928b3_13_cpu.conda#7d096783fc97ffadf0961772786a67a3\n https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.1-py310h4a685fe_0.conda#7a62281f141df79bf2f1248d2873567b\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n-https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.0-py310h51140c5_0.conda#050298ca11576d5dc47cb9fffca7af5c\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n+https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.1-py310h51140c5_0.conda#d8c42a72d04ad1b93ba7269e9949738e\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n-https://conda.anaconda.org/conda-forge/win-64/scipy-1.10.0-py310h578b7cb_2.conda#e6842a664dc7dd2e084fca47138ba08e\n+https://conda.anaconda.org/conda-forge/win-64/scipy-1.10.1-py310h578b7cb_0.conda#0fb710fe01eb0107d700d20d19117e73\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n-https://conda.anaconda.org/conda-forge/win-64/pyarrow-8.0.1-py310h0c37ab2_2_cpu.tar.bz2#b4588c0be5791753e9119877a9078311\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.2.1-py310had3394f_0.conda#89c45b9f5f2941375946722eb7a03ff8\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.2.2-py310hd266714_1.conda#58ec4d53193a74a09d8a862f98a730e5\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/win-64/python-duckdb-0.7.0-py310hfd7f7d5_1.conda#a453090fc710c0585a90f0939d201769\n-https://conda.anaconda.org/conda-forge/win-64/snowflake-connector-python-2.8.3-py310h97c4d07_0.conda#b568cd12353b19066bf61b9efc966445\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/win-64/pyarrow-11.0.0-py310hd1a9178_13_cpu.conda#4d8d8c48984fd8c7e1a4e74a8c2ee16d\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/win-64/python-duckdb-0.7.1-py310hfd7f7d5_0.conda#c12a01d1dc3edd027392fb862d886027\n+https://conda.anaconda.org/conda-forge/win-64/snowflake-connector-python-3.0.2-py310h9327e8f_0.conda#56512902e1fe1577a519a9f934479cf1\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "win-64-3.11.lock": "@@ -0,0 +1,421 @@\n+# Generated by conda-lock.\n+# platform: win-64\n+# input_hash: 0d8e5f3a147557bbc68b5fa63eda56b5ea6902af97bf9f95e4cf17586859aab8\n+@EXPLICIT\n+https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2022.12.7-h5b45459_0.conda#31de4d9887dc8eaed9e6230a5dfbb9d6\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb\n+https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n+https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.0.0-h57928b3_25922.conda#8ecf3a448f5a35bd30cb39ddc2a19058\n+https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2#b0309b72560df66f71a9d5e34a5efdfa\n+https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.1-h57928b3_0.conda#71f11eb19ae575ee0b52d0d58fb018f3\n+https://conda.anaconda.org/conda-forge/win-64/perl-5.32.1.1-2_h57928b3_strawberry.tar.bz2#c2f85039cbc767518ff2f701638e37c4\n+https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n+https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-3_cp311.conda#fd1634ba85cfea9376e1fc02d6f592e9\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n+https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2#72608f6cd3e5898229c3ea16deb1ac43\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n+https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2#53a1c73e1e3d185516d7e3af177596d9\n+https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2#774130a326dee16f1ceb05cc687ee4f0\n+https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-h4c5c07a_10.conda#25640086ba777e79e5d233d079d7c5fc\n+https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n+https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2#4289d80fb4d272f1f3b56cfe87ac90bd\n+https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb6edc58_10.conda#52d246d8d14b83c516229be5bb03a163\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.8.14-hcfcfb64_0.conda#6bc5797d31bbbd38b993a5c8356cbb87\n+https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2#7c03c66026944073040cb19a4f3ec3c9\n+https://conda.anaconda.org/conda-forge/win-64/c-ares-1.18.1-h8ffe710_0.tar.bz2#6aa55bbdfe054ea36c1c99d3adace8d9\n+https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h1537add_0.tar.bz2#6b20c31bd735d2dd5c79ddb5b3524619\n+https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2#807e81d915f2bb2e49951648615241f6\n+https://conda.anaconda.org/conda-forge/win-64/geos-3.11.1-h1537add_0.tar.bz2#97225394895a9c6939175c936ab1a4b0\n+https://conda.anaconda.org/conda-forge/win-64/getopt-win32-0.1-h8ffe710_0.tar.bz2#9ac4874e2958f18e01c386649208fe40\n+https://conda.anaconda.org/conda-forge/win-64/gflags-2.2.2-ha925a31_1004.tar.bz2#e9442160f56fa442d4ff3eb2e4cf0f22\n+https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-1000.tar.bz2#8fc0e04e5c852cadf2cad68b86a906ab\n+https://conda.anaconda.org/conda-forge/win-64/icu-70.1-h0e60522_0.tar.bz2#64073396a905b6df895ab2489fae3847\n+https://conda.anaconda.org/conda-forge/win-64/jpeg-9e-hcfcfb64_3.conda#824f1e030d224e9e376a4655032fdbc7\n+https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2#1900cb3cab5055833cfddb0ba233b074\n+https://conda.anaconda.org/conda-forge/win-64/libabseil-20230125.0-cxx17_h63175ca_1.conda#768d0974049a1146ff45579a05b112ca\n+https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda#f98474a8245f55f4a273889dbe7bf193\n+https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.0.9-hcfcfb64_8.tar.bz2#e8078e37208cd7d3e1eb5053f370ded8\n+https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2#cd4cc2d0c610c8cb5419ccc979f2d6ce\n+https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.17-hcfcfb64_0.conda#ae9dfb57bcb42093a2417aceabb530f7\n+https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2#2c96d1b6915b408893f9472569dee135\n+https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2#050119977a86e4856f0416e2edcf81bb\n+https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2#5c1fb45b5e2912c19098750ae8a32604\n+https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h39d44d4_4.tar.bz2#51c172496e828258d04eba9971f2af1a\n+https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.40.0-hcfcfb64_0.tar.bz2#5e5a97795de72f8cc3baf3d9ea6327a2\n+https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2#076894846fe9f068f91c57d158c90cba\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda#381a3645c51cbf478872899b16490318\n+https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_4.tar.bz2#0cc5c5cc64ee1637f37f8540a175854c\n+https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda#e34720eb20a33fc3bfb8451dd837ab7a\n+https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2#066552ac6b907ec6d72c0ddab29050dc\n+https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.0-hcfcfb64_0.conda#4245a25fae1aaf85bc3fbf6fc29c2d5d\n+https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2#32b45d3fcffddc84cc1a014a0b5f0d58\n+https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2#e2da8758d7d51ff6aa78a14dfb9dbed4\n+https://conda.anaconda.org/conda-forge/win-64/re2-2023.02.02-h63175ca_0.conda#586130698a48cd88f76e3fba5f091243\n+https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda#cff1df79c9cff719460eb2dd172568de\n+https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2#c69a5047cc9291ae40afd4a1ad6f0c0f\n+https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_2.conda#8ba57760b15d0c2493192908317bdf5e\n+https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2#515d77642eaa3639413c6b1bc3f94219\n+https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2#adbfb9f45d1004a26763652246a33764\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.5.21-h7cda486_2.conda#049fc3fb095e7838621382a696abcfda\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.16-h8a79959_5.conda#0a790b22ec9cf8aff76fdd3150d784aa\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.8-h8a79959_0.conda#2bf14b763bda622122577f11b03579d5\n+https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.14-h8a79959_5.conda#427baa843cb7d3bbac662efb193d27ed\n+https://conda.anaconda.org/conda-forge/win-64/freetds-1.3.16-pl5321hf43717d_0.conda#ca29852204cf1fb50fbc56c9f0a8681a\n+https://conda.anaconda.org/conda-forge/win-64/freexl-1.0.6-h67ca5e6_1.tar.bz2#7ddb6e879c46e78eec37f956b3ffe743\n+https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2#299d4fd6798a45337042ff5a48219e5f\n+https://conda.anaconda.org/conda-forge/win-64/glog-0.6.0-h4797de2_0.tar.bz2#fdc11ab9a621f009995e89f52bea3004\n+https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda#a07b05ee8f451ab15698397185efe989\n+https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.0.9-hcfcfb64_8.tar.bz2#99839d9d81f33afa173c0fa82a702038\n+https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.0.9-hcfcfb64_8.tar.bz2#88e62627120c20289bf8982b15e0a6a1\n+https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda#ab6febdb2dbd9c00803609079db4de71\n+https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.21.12-h12be248_0.conda#065644957b64030c520c732a0b7eb43d\n+https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-he22b5cd_12.tar.bz2#115a51fda72ff01d7b7eb275183d6c72\n+https://conda.anaconda.org/conda-forge/win-64/libssh2-1.10.0-h9a1e1f7_3.tar.bz2#c2b344e960a173c777bb3ed172c38cd8\n+https://conda.anaconda.org/conda-forge/win-64/libthrift-0.18.1-h9ce19ad_0.conda#c6b9481c37361790ff1b0d16899d2142\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-1.3.0-hcfcfb64_0.conda#0c1f2c4b45406631c600ec22ca9523fc\n+https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.3-hc3477c8_6.conda#a56f8a52bc13d7eee23457f0e253e055\n+https://conda.anaconda.org/conda-forge/win-64/libzip-1.9.2-h519de47_1.tar.bz2#9c3138e53e36c0c161a23d20db91297b\n+https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2#fe759119b8b3bfa720b8762c6fdc35de\n+https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2#2519de0d9620dc2bc7e19caf6867136d\n+https://conda.anaconda.org/conda-forge/win-64/python-3.11.0-hcf16a7b_0_cpython.tar.bz2#13ee3577afc291dabd2d9edc59736688\n+https://conda.anaconda.org/conda-forge/win-64/sqlite-3.40.0-hcfcfb64_0.tar.bz2#c71d4be22d8402e7e17386aeb18b930e\n+https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.4-h0e60522_1.tar.bz2#e1aff0583dda5fb917eb3d2c1025aa80\n+https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_4.tar.bz2#eed9fec3e6d2e8865135b09d24ca040c\n+https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda#62826565682d013b3e2346aaf7bded0e\n+https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n+https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n+https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.19-h0d2781e_3.conda#075e2d0fc0b2ca759d61ceddfaeae87d\n+https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n+https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n+https://conda.anaconda.org/conda-forge/win-64/backports.zoneinfo-0.2.1-py311h1ea47a8_7.tar.bz2#0a1982afb30e272f1fc4354bfb4863af\n+https://conda.anaconda.org/conda-forge/win-64/bitarray-2.7.3-py311ha68e1ae_0.conda#a84ae0be80e36c31597f8e038600b1b5\n+https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n+https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.3-hdccc3a2_0.conda#b3fe9abd77808553a7d0a0cbf73b6ec9\n+https://conda.anaconda.org/conda-forge/win-64/boost-cpp-1.78.0-h9f4b32c_1.tar.bz2#11a4273e974d63a99da36b89d6f918a9\n+https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.0.9-hcfcfb64_8.tar.bz2#e18b70ed349d96086fd60a9c642b1b58\n+https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n+https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n+https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n+https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n+https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n+https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99\n+https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2#a50559fad0affdbb33729a68669ca1cb\n+https://conda.anaconda.org/conda-forge/win-64/debugpy-1.6.6-py311h12c1d0e_0.conda#5ade06101d9638f230c71507b10a05d2\n+https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n+https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n+https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n+https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n+https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n+https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda#1b513009cd012591f3fdc9e03a74ec0a\n+https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.3.3-py311ha68e1ae_0.tar.bz2#e4cc8c6ea80d6cf4e81e5050e6006536\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n+https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n+https://conda.anaconda.org/conda-forge/win-64/greenlet-2.0.2-py311h12c1d0e_0.conda#767327dc881818d8becef41f38ffffaf\n+https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h1b1b6ef_5.tar.bz2#bfb6a2d82ef9a30455cc0900d89eed20\n+https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n+https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n+https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n+https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.4-py311h005e61a_1.tar.bz2#564530d9dd01d102b5ec76c34381f3b7\n+https://conda.anaconda.org/conda-forge/win-64/libcurl-7.88.1-h68f0423_1.conda#e73c24dd32b88acab08e46ddeb173fee\n+https://conda.anaconda.org/conda-forge/win-64/libglib-2.74.1-he8f3873_1.tar.bz2#09e1cbabfd9d733729843c3b35cb0b6d\n+https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.52.1-h32da247_1.conda#3c9082d6dda43261e0e0cb49c362fca8\n+https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.0-h51c2c0f_0.conda#6cbde93c514acb846762631c15c5d3c2\n+https://conda.anaconda.org/conda-forge/win-64/libpq-15.2-ha9684e8_0.conda#dd4e0f2881b08f08b76c2c4d1763b38a\n+https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.0-hf8721a0_2.conda#2e003e276cc1375192569c96afd3d984\n+https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n+https://conda.anaconda.org/conda-forge/win-64/lz4-4.3.2-py311haddf500_0.conda#029635effbf99cd6eb59b60d6173b870\n+https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.2-py311ha68e1ae_0.conda#96e7ffe6ea438ba4517152abe3b39874\n+https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268\n+https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n+https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n+https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.5-py311h005e61a_0.conda#01a252f384a5d1ad338cff1184d9a9c0\n+https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.4-py311ha68e1ae_0.conda#8fdb245e445799fedebfb01c769621d5\n+https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n+https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n+https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n+https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n+https://conda.anaconda.org/conda-forge/win-64/orc-1.8.3-hada7b9e_0.conda#d2c4ea49865e0838df46e74545fb8414\n+https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n+https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n+https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n+https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n+https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n+https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n+https://conda.anaconda.org/conda-forge/noarch/pprintpp-0.4.0-pyhd8ed1ab_5.conda#3c9f3f3f7e0a9f0b2fd9d0e2064729ba\n+https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.4-py311ha68e1ae_0.tar.bz2#2484db2971c44ba7fc486a7cf2a456bf\n+https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2#a1f820480193ea83582b13249a7e7bd9\n+https://conda.anaconda.org/conda-forge/noarch/pure-sasl-0.6.2-pyhd8ed1ab_0.tar.bz2#ac695eecf21ab48093bc33fd60b4102d\n+https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883\n+https://conda.anaconda.org/conda-forge/noarch/py-cpuinfo-9.0.0-pyhd8ed1ab_0.tar.bz2#6f6d42b894118f8378fce11887ccdaff\n+https://conda.anaconda.org/conda-forge/noarch/py4j-0.10.9.5-pyhd8ed1ab_0.tar.bz2#aa4b90e96537b3178e500ecb0d7913ce\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f8f72ac77911db942eda24fb9\n+https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n+https://conda.anaconda.org/conda-forge/win-64/pycryptodomex-3.16.0-py311ha68e1ae_0.conda#5311772ba3a59e6377dcda94cb8e5efd\n+https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n+https://conda.anaconda.org/conda-forge/win-64/pymssql-2.2.7-py311h12c1d0e_0.conda#f67fc8aafab8b491f9dadd613e2a9f23\n+https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n+https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n+https://conda.anaconda.org/conda-forge/win-64/pyrsistent-0.19.3-py311ha68e1ae_0.conda#3f2780a49f0b4bb2c622f7cf098e3d06\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n+https://conda.anaconda.org/conda-forge/win-64/pywin32-304-py311h12c1d0e_2.tar.bz2#20a2d8e73b0be8e27ca4096d4f3a7053\n+https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0-py311ha68e1ae_5.tar.bz2#0c97d59d54eb52e170224b3de6ade906\n+https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.0.2-py311h7b3f143_0.conda#b371e2ff34ce2f6c057f132dab68a126\n+https://conda.anaconda.org/conda-forge/win-64/regex-2023.3.23-py311ha68e1ae_0.conda#55663edf6b4d5b1b2ffb8132a0ab19f3\n+https://conda.anaconda.org/conda-forge/win-64/rtree-1.0.1-py311hcacb13a_1.tar.bz2#5196f6012592bfcfabc7d1c4bb5447a6\n+https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.259-py311hc14472d_0.conda#0987b7bcca03f9fc9b5c8dfc019ba535\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n+https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n+https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n+https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n+https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n+https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n+https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n+https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n+https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095\n+https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96\n+https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36\n+https://conda.anaconda.org/conda-forge/win-64/tornado-6.2-py311ha68e1ae_1.tar.bz2#d10c673cd263e4f63c1355abb9082dff\n+https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n+https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n+https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n+https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2#30878ecc4bd36e8deeea1e3c151b2e0b\n+https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2#8d11c1dac4756ca57e78c1bfe173bba4\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.0.10-hcd874cb_0.tar.bz2#8f45beee385cb67e42d6732bdb1b6a40\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.9-hcd874cb_0.tar.bz2#9cef622e75683c17d05ae62d66e69e6c\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2#46878ebb6b9cbd8afcf8088d7ef00ece\n+https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda#6e6c2639620e436bddb7c040cd4f3adb\n+https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2#88f3c65d2ad13826a9e0b162063be023\n+https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n+https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n+https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.2.20-h5f78564_4.conda#427ca70288aa9baf7514ee02c800f87c\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.6-h2545be9_0.conda#e0cb706b5e7856ebf28d3228e008d5c3\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n+https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n+https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n+https://conda.anaconda.org/conda-forge/win-64/brotli-1.0.9-hcfcfb64_8.tar.bz2#2e661f21e1741c11506bdc7226e6b0bc\n+https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n+https://conda.anaconda.org/conda-forge/win-64/cffi-1.15.1-py311h7d9ee11_3.conda#a8524727eb956b4741e25a64af79edb8\n+https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.2.0-h9ebe7e4_0.conda#cccd314cbeea4f2f70f73c763d9660e8\n+https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-win_pyhd8ed1ab_2.tar.bz2#6b58680207b526c42dcff68b543803dd\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/win-64/coverage-7.2.2-py311ha68e1ae_0.conda#8f48b3d36fc69a5ed9b8d3f3d89e361a\n+https://conda.anaconda.org/conda-forge/win-64/curl-7.88.1-h68f0423_1.conda#61bac43f1aad61a834f9eb718421a87c\n+https://conda.anaconda.org/conda-forge/win-64/cytoolz-0.12.0-py311ha68e1ae_1.tar.bz2#baf24232498604d651158e6e242a3d32\n+https://conda.anaconda.org/conda-forge/win-64/fastavro-1.7.3-py311ha68e1ae_0.conda#c286af417f18605e2031b39ace01f304\n+https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda#08767992f1a4f1336a257af1241034bd\n+https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n+https://conda.anaconda.org/conda-forge/win-64/grpcio-1.52.1-py311h5f90226_1.conda#30378cc508ce66eb17651408795380d0\n+https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h7c369d9_2.tar.bz2#509e4ea898407220d7bdbc6f8a02fe63\n+https://conda.anaconda.org/conda-forge/win-64/hdf5-1.12.2-nompi_h57737ce_101.conda#3e2b84f2f7bcf6915d1baa21e5b1a862\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n+https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n+https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n+https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n+https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n+https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-ha5c8aab_0.conda#5ebe92728f44a8b2461410ffb3628c18\n+https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.8.0-hf2ff781_1.conda#97fc6c786071aea9d5d7d439e5f26635\n+https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-hf2ab4e4_1015.tar.bz2#1f50b25e87cefda820cb71fb643bc021\n+https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-hcd874cb_1004.tar.bz2#a6d7fd030532378ecb6ba435cd9f8234\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n+https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n+https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n+https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n+https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-ha2aaf27_2.conda#db0490689232e8e38c312281df6f31a2\n+https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n+https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n+https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n+https://conda.anaconda.org/conda-forge/win-64/postgresql-15.2-hd87cd2b_0.conda#9148e8b6b7ec9e7dedf9bf9987f606cd\n+https://conda.anaconda.org/conda-forge/win-64/proj-9.1.1-heca977f_2.conda#eb88b5bc4d13493971408c3131022aec\n+https://conda.anaconda.org/conda-forge/win-64/protobuf-4.21.12-py311h12c1d0e_0.conda#c01e81ea74ec35cf823ed5499743f372\n+https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.3-py311hb12f294_2.conda#9f925d3a9f22927fc039a69d16de8548\n+https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n+https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n+https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2#56cd9fe388baac0e90c7149cfac95b60\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n+https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n+https://conda.anaconda.org/conda-forge/win-64/pytz-deprecation-shim-0.1.0.post0-py311h1ea47a8_3.tar.bz2#04c42bed4fdd52895fd29b66d1dbc5b1\n+https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n+https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n+https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n+https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-1.4.46-py311ha68e1ae_0.conda#f0c5f7f520e0a1e619b7501450a0fef7\n+https://conda.anaconda.org/conda-forge/win-64/tbb-2021.8.0-h91493d7_0.conda#e155410da447d8e37302a561b911dcb8\n+https://conda.anaconda.org/conda-forge/win-64/thrift-0.16.0-py311h12c1d0e_2.tar.bz2#3fad59967e1b54b10aabd63f5fcd79f0\n+https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/win-64/watchdog-3.0.0-py311h1ea47a8_0.conda#0b230f93a075fce059f6cd52bcc4aea7\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.3-hcd874cb_1000.tar.bz2#76a765e735668a9922da3d58e746a7a6\n+https://conda.anaconda.org/conda-forge/win-64/yarl-1.8.2-py311ha68e1ae_0.conda#5801ed875c8cce8bb3962e200a10a671\n+https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n+https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.6.26-h1262f0c_1.conda#2090318f4a24eec3680efbd0395b1697\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.8.6-hd211e0c_12.conda#6eadc1f9b2b273f574cc24227a3390c6\n+https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n+https://conda.anaconda.org/conda-forge/win-64/brotlipy-0.7.0-py311ha68e1ae_1005.tar.bz2#dd9604ece454103e7210110c6d343e37\n+https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hd694305_1014.tar.bz2#91f08ed9ff25a969ddd06237454dae0d\n+https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n+https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n+https://conda.anaconda.org/conda-forge/win-64/cryptography-38.0.4-py311h28e9c30_0.conda#369bad555cfdd4094409411ac563de32\n+https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n+https://conda.anaconda.org/conda-forge/win-64/fonttools-4.39.2-py311ha68e1ae_0.conda#c3bd4a39c46fb1a0c477cd3ab9ec77d8\n+https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n+https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-hc256dc0_6.conda#d147f5504f1b29faa112aa72e9c59599\n+https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n+https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.conda#f6e6b482110246a81c3f03e81c68752d\n+https://conda.anaconda.org/conda-forge/win-64/google-crc32c-1.1.2-py311h48d9ab2_4.tar.bz2#45d8a9fce4eb8e0c01571783d9c8e62f\n+https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n+https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n+https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n+https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.0-h61be68b_0.conda#59e439387b2ca19699b8ce1f077ebe0a\n+https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.1-nompi_hc41bf00_101.conda#cc79e202db8167cfc78ce4edfcf43c17\n+https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.0.1-hfdcade0_23.conda#7661a11b21d23f6f21648a787045b825\n+https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n+https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2#2ff89a7337a9636029b4db9466e9f8e3\n+https://conda.anaconda.org/conda-forge/win-64/pillow-9.4.0-py311h76d9071_1.conda#4104956aac6095ab7ac82c1a7eaf97a5\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n+https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n+https://conda.anaconda.org/conda-forge/win-64/pyproj-3.4.1-py311h36482e4_1.conda#0573a07c55714f579a3e96f6fa59c0ea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n+https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n+https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n+https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n+https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n+https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n+https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n+https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n+https://conda.anaconda.org/conda-forge/win-64/tiledb-2.13.2-h3132609_0.conda#07426c5e1301448738f66686548d41ff\n+https://conda.anaconda.org/conda-forge/win-64/tzlocal-4.3-py311h1ea47a8_0.conda#94152fbff99176e4b834eea73bb252f5\n+https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py311h005e61a_3.tar.bz2#345c6b3bee32bb1d87a4e8759ec6cbff\n+https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.4-hcd874cb_0.conda#ebdb02b455647e13fa697da89d9bdf84\n+https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.8.4-py311ha68e1ae_0.conda#4428840f2595506190dcf8e2fb571b9a\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.2.7-h8113e7b_1.conda#4f322af22c19df5e1d2c4d77dd68fa7c\n+https://conda.anaconda.org/conda-forge/win-64/black-23.1.0-py311h1ea47a8_0.conda#01243cbab42864de6da52df59bb7e745\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n+https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n+https://conda.anaconda.org/conda-forge/win-64/harfbuzz-6.0.0-he256f1b_0.conda#15422d4ff786ed835173cfb8e6735679\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n+https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n+https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.3.0-py311h1ea47a8_0.conda#2b81965b74e70b89053845d1bc287561\n+https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-16_win64_mkl.tar.bz2#d2e6f4e86cee2b4e8c27ff6884ccdc61\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n+https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n+https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n+https://conda.anaconda.org/conda-forge/win-64/poppler-23.03.0-h183ae7b_0.conda#0908fe0f0432ac13c3411822c68da81d\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n+https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n+https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda#2aa695ac3c56193fd8d526e3b511e021\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.2.1-hcd874cb_2.tar.bz2#75788d7a4edf041cdd0a830f9bcaa3fb\n+https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.19.8-he6d3b81_12.conda#10db42f355afa5c3c552391d1037a979\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n+https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-16_win64_mkl.tar.bz2#14c2fb03b2bb14dfa3806186ca91d557\n+https://conda.anaconda.org/conda-forge/win-64/libgdal-3.6.2-h221c0cb_9.conda#88c3283cd62901b1d33e51a15f8e981d\n+https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-16_win64_mkl.tar.bz2#be2f9d5712a5bb05cd900005ee752a05\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/win-64/pango-1.50.14-hdffb7b3_0.conda#a613f324e0f213238baec720d5c4ed00\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.13-hcd874cb_0.tar.bz2#4b31b88585f696327ba79fea3b41f973\n+https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.10.57-h64004b3_8.conda#1c1266961221f698336f672757c27ff2\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh08f2357_0.conda#260ed8a8cbb42c30f8b17a9daeb78353\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n+https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-hf5a96e7_4.conda#07f0bd616b51dbd898cabf14646cdf5d\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n+https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n+https://conda.anaconda.org/conda-forge/win-64/numpy-1.24.2-py311h0b4df5a_0.conda#2596fad79689a38b6061f185c1fc3498\n+https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n+https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n+https://conda.anaconda.org/conda-forge/win-64/contourpy-1.0.7-py311h005e61a_0.conda#e7cb4befb5b37231881c2b9b5dc00bee\n+https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n+https://conda.anaconda.org/conda-forge/win-64/gdal-3.6.2-py311h4bd9738_9.conda#3afa92c9d8031993e05d8073755c9bca\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n+https://conda.anaconda.org/conda-forge/win-64/graphviz-7.1.0-h51cb2cd_0.conda#2ab84ffaa7b47e0118c10e9e5d29bd37\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh025b116_0.conda#4d594953555f43826532ab5c5f7754f5\n+https://conda.anaconda.org/conda-forge/win-64/libarrow-11.0.0-h04c43f8_13_cpu.conda#0872ce0cc56d710e1467c996b3142cb4\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n+https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n+https://conda.anaconda.org/conda-forge/win-64/pandas-1.5.3-py311hf63dbb6_0.conda#6bd7d08da09b8fd7ca3d076af9040d82\n+https://conda.anaconda.org/conda-forge/win-64/polars-0.16.8-py311hc37eb10_0.conda#02cd9229296c61066dcb4654a4e21778\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n+https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n+https://conda.anaconda.org/conda-forge/win-64/shapely-1.8.5-py311habfe8a2_2.tar.bz2#1446a03ee7e308ba21d165c5fca501fb\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/win-64/arrow-cpp-11.0.0-h57928b3_13_cpu.conda#7d096783fc97ffadf0961772786a67a3\n+https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.1-py311ha4db88c_0.conda#a66df24116e037cede7ec65add5b88f9\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n+https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.1-py311h6e989c2_0.conda#8220277205fbdf07ddfa7a124346c2dd\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n+https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n+https://conda.anaconda.org/conda-forge/win-64/scipy-1.10.1-py311h37ff6ca_0.conda#a4640d56699fbcb381485d749d126a8f\n+https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n+https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n+https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n+https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.2.2-py311h142b183_1.conda#ce1dbe81f1199a0e2719c9876715f7d4\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n+https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/win-64/pyarrow-11.0.0-py311h6a6099b_13_cpu.conda#ae424522a9d435d4fcda67f4488ef2c4\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/win-64/python-duckdb-0.7.1-py311h9511c57_0.conda#cb955db4b9d92082b9c9b7f7a05284d4\n+https://conda.anaconda.org/conda-forge/win-64/snowflake-connector-python-3.0.2-py311h778996e_0.conda#d7a663a9f964bb493a11540faa13ce85\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "win-64-3.8.lock": "@@ -1,6 +1,6 @@\n # Generated by conda-lock.\n # platform: win-64\n-# input_hash: 90d901b48a455398588df3e8186703b31ca47318a42cb90bbbe9f73c23cd9b36\n+# input_hash: 97b516ac5bb64b074f10013184432826fff3ee13d7e74b09008d699ef273c061\n @EXPLICIT\n https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2022.12.7-h5b45459_0.conda#31de4d9887dc8eaed9e6230a5dfbb9d6\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45\n@@ -9,11 +9,11 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.0.0-h57928b3_25922.conda#8ecf3a448f5a35bd30cb39ddc2a19058\n https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2#b0309b72560df66f71a9d5e34a5efdfa\n-https://conda.anaconda.org/conda-forge/win-64/pandoc-2.19.2-h57928b3_1.tar.bz2#94bac372f90d1402ddd1df0f4cf67656\n+https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.1-h57928b3_0.conda#71f11eb19ae575ee0b52d0d58fb018f3\n https://conda.anaconda.org/conda-forge/win-64/perl-5.32.1.1-2_h57928b3_strawberry.tar.bz2#c2f85039cbc767518ff2f701638e37c4\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/win-64/python_abi-3.8-3_cp38.conda#c6df946723dadd4a5830a8ff8c6b9a20\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2#72608f6cd3e5898229c3ea16deb1ac43\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2#53a1c73e1e3d185516d7e3af177596d9\n@@ -22,7 +22,7 @@ https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-h4c5c07\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2#4289d80fb4d272f1f3b56cfe87ac90bd\n https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb6edc58_10.conda#52d246d8d14b83c516229be5bb03a163\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.6.2-h8ffe710_0.tar.bz2#7eb3e6859d0da38fe0bff50391e7f9dc\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.8.14-hcfcfb64_0.conda#6bc5797d31bbbd38b993a5c8356cbb87\n https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2#7c03c66026944073040cb19a4f3ec3c9\n https://conda.anaconda.org/conda-forge/win-64/c-ares-1.18.1-h8ffe710_0.tar.bz2#6aa55bbdfe054ea36c1c99d3adace8d9\n https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h1537add_0.tar.bz2#6b20c31bd735d2dd5c79ddb5b3524619\n@@ -34,7 +34,7 @@ https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-1000.tar.bz2#8fc0\n https://conda.anaconda.org/conda-forge/win-64/icu-70.1-h0e60522_0.tar.bz2#64073396a905b6df895ab2489fae3847\n https://conda.anaconda.org/conda-forge/win-64/jpeg-9e-hcfcfb64_3.conda#824f1e030d224e9e376a4655032fdbc7\n https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2#1900cb3cab5055833cfddb0ba233b074\n-https://conda.anaconda.org/conda-forge/win-64/libabseil-20220623.0-cxx17_h1a56200_6.conda#5a3b4c52be0bd9dd8718c560e38db140\n+https://conda.anaconda.org/conda-forge/win-64/libabseil-20230125.0-cxx17_h63175ca_1.conda#768d0974049a1146ff45579a05b112ca\n https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda#f98474a8245f55f4a273889dbe7bf193\n https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.0.9-hcfcfb64_8.tar.bz2#e8078e37208cd7d3e1eb5053f370ded8\n https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2#cd4cc2d0c610c8cb5419ccc979f2d6ce\n@@ -45,51 +45,52 @@ https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz\n https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h39d44d4_4.tar.bz2#51c172496e828258d04eba9971f2af1a\n https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.40.0-hcfcfb64_0.tar.bz2#5e5a97795de72f8cc3baf3d9ea6327a2\n https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2#076894846fe9f068f91c57d158c90cba\n-https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.2.4-h8ffe710_0.tar.bz2#0a09bd195ebeaff5711ccae93ac132ad\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda#381a3645c51cbf478872899b16490318\n https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_4.tar.bz2#0cc5c5cc64ee1637f37f8540a175854c\n https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda#e34720eb20a33fc3bfb8451dd837ab7a\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2#066552ac6b907ec6d72c0ddab29050dc\n-https://conda.anaconda.org/conda-forge/win-64/openssl-1.1.1t-hcfcfb64_0.conda#f47342fb350e6d2a233304f750c3502d\n+https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.0-hcfcfb64_0.conda#4245a25fae1aaf85bc3fbf6fc29c2d5d\n https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2#32b45d3fcffddc84cc1a014a0b5f0d58\n https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2#e2da8758d7d51ff6aa78a14dfb9dbed4\n-https://conda.anaconda.org/conda-forge/win-64/re2-2022.06.01-h0e60522_1.conda#dcff2309ccfcec47248ebb6f502c35ff\n-https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.9-hfb803bf_2.tar.bz2#073b08c65807f205d990ace14ccacdb2\n+https://conda.anaconda.org/conda-forge/win-64/re2-2023.02.02-h63175ca_0.conda#586130698a48cd88f76e3fba5f091243\n+https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda#cff1df79c9cff719460eb2dd172568de\n https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2#c69a5047cc9291ae40afd4a1ad6f0c0f\n-https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_1.tar.bz2#b026982f81a6aba1e8ce2525ba640632\n+https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_2.conda#8ba57760b15d0c2493192908317bdf5e\n https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2#515d77642eaa3639413c6b1bc3f94219\n https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2#adbfb9f45d1004a26763652246a33764\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.5.11-he19cf47_0.tar.bz2#c8b314ff705e4de32640c748e5b9c8d2\n-https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.11-h1e232aa_7.tar.bz2#c9fde0c43dce1a8eecbef5368396742c\n-https://conda.anaconda.org/conda-forge/win-64/freetds-1.3.16-pl5321hfe0aba9_0.conda#40463ad15ddabdd29c419a5eeb92b10b\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.5.21-h7cda486_2.conda#049fc3fb095e7838621382a696abcfda\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.16-h8a79959_5.conda#0a790b22ec9cf8aff76fdd3150d784aa\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.8-h8a79959_0.conda#2bf14b763bda622122577f11b03579d5\n+https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.14-h8a79959_5.conda#427baa843cb7d3bbac662efb193d27ed\n+https://conda.anaconda.org/conda-forge/win-64/freetds-1.3.16-pl5321hf43717d_0.conda#ca29852204cf1fb50fbc56c9f0a8681a\n https://conda.anaconda.org/conda-forge/win-64/freexl-1.0.6-h67ca5e6_1.tar.bz2#7ddb6e879c46e78eec37f956b3ffe743\n https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2#299d4fd6798a45337042ff5a48219e5f\n https://conda.anaconda.org/conda-forge/win-64/glog-0.6.0-h4797de2_0.tar.bz2#fdc11ab9a621f009995e89f52bea3004\n-https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-h6609f42_0.conda#a962b5937824124553d53bd9f535cc71\n+https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda#a07b05ee8f451ab15698397185efe989\n https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.0.9-hcfcfb64_8.tar.bz2#99839d9d81f33afa173c0fa82a702038\n https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.0.9-hcfcfb64_8.tar.bz2#88e62627120c20289bf8982b15e0a6a1\n https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda#ab6febdb2dbd9c00803609079db4de71\n-https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.20.2-h12be248_0.tar.bz2#672e32cebe446a63a26b9eb36c58422f\n+https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.21.12-h12be248_0.conda#065644957b64030c520c732a0b7eb43d\n https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-he22b5cd_12.tar.bz2#115a51fda72ff01d7b7eb275183d6c72\n-https://conda.anaconda.org/conda-forge/win-64/libssh2-1.10.0-h680486a_3.tar.bz2#3b2aa0d4ede640c471bd0e8f122fcbd5\n-https://conda.anaconda.org/conda-forge/win-64/libthrift-0.16.0-h9f558f2_2.tar.bz2#0b49bcb47e1a3c55a098cc3e78f3ee8f\n-https://conda.anaconda.org/conda-forge/win-64/libwebp-1.2.4-hcfcfb64_1.conda#ccde94ca6504af175b76f654bcad6e9f\n-https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.3-hc3477c8_0.tar.bz2#6dcf17bf780618ddb559d992ea3b6961\n-https://conda.anaconda.org/conda-forge/win-64/libzip-1.9.2-hfed4ece_1.tar.bz2#1964ebe1dd5f092b9512aaa41f5f2a8b\n+https://conda.anaconda.org/conda-forge/win-64/libssh2-1.10.0-h9a1e1f7_3.tar.bz2#c2b344e960a173c777bb3ed172c38cd8\n+https://conda.anaconda.org/conda-forge/win-64/libthrift-0.18.1-h9ce19ad_0.conda#c6b9481c37361790ff1b0d16899d2142\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-1.3.0-hcfcfb64_0.conda#0c1f2c4b45406631c600ec22ca9523fc\n+https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.3-hc3477c8_6.conda#a56f8a52bc13d7eee23457f0e253e055\n+https://conda.anaconda.org/conda-forge/win-64/libzip-1.9.2-h519de47_1.tar.bz2#9c3138e53e36c0c161a23d20db91297b\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2#fe759119b8b3bfa720b8762c6fdc35de\n https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2#2519de0d9620dc2bc7e19caf6867136d\n-https://conda.anaconda.org/conda-forge/win-64/python-3.8.15-h0269646_0_cpython.conda#c357e563492a7239723e3bf192151780\n+https://conda.anaconda.org/conda-forge/win-64/python-3.8.16-h4de0772_1_cpython.conda#461d9fc92cfde68f2ca7ef0988f6326a\n https://conda.anaconda.org/conda-forge/win-64/sqlite-3.40.0-hcfcfb64_0.tar.bz2#c71d4be22d8402e7e17386aeb18b930e\n https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.4-h0e60522_1.tar.bz2#e1aff0583dda5fb917eb3d2c1025aa80\n https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_4.tar.bz2#eed9fec3e6d2e8865135b09d24ca040c\n https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda#62826565682d013b3e2346aaf7bded0e\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.10.5-h2fe331c_0.tar.bz2#d38ee034f93fb73f3f222d1be1e9c3a3\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.19-h0d2781e_3.conda#075e2d0fc0b2ca759d61ceddfaeae87d\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n-https://conda.anaconda.org/conda-forge/win-64/bitarray-2.7.2-py38h91455d4_0.conda#ce2f3e7535fbfcb222a5957cb8f665e4\n+https://conda.anaconda.org/conda-forge/win-64/bitarray-2.7.3-py38h91455d4_0.conda#fb26c9d1ec6025b16415f3690de6412f\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.3-hdccc3a2_0.conda#b3fe9abd77808553a7d0a0cbf73b6ec9\n https://conda.anaconda.org/conda-forge/win-64/boost-cpp-1.78.0-h9f4b32c_1.tar.bz2#11a4273e974d63a99da36b89d6f918a9\n@@ -97,6 +98,7 @@ https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.0.9-hcfcfb64_8.tar.bz\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99\n@@ -104,27 +106,29 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/win-64/debugpy-1.6.6-py38hd3f51b4_0.conda#c0e723925312ad99aef82e6e591ab3e8\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda#1b513009cd012591f3fdc9e03a74ec0a\n https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.3.3-py38h91455d4_0.tar.bz2#5078ec13d403c55bbbc72cbc4c821270\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/win-64/greenlet-2.0.2-py38hd3f51b4_0.conda#4ef7ea69641a9151c426245e83ddf2f9\n-https://conda.anaconda.org/conda-forge/win-64/grpc-cpp-1.46.4-hcb02dd0_7.tar.bz2#22d5b60176875da20518c4ea94a77037\n https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h1b1b6ef_5.tar.bz2#bfb6a2d82ef9a30455cc0900d89eed20\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.4-py38hb1fd069_1.tar.bz2#1dcc50e3241f9e4e59713eec2653abd5\n-https://conda.anaconda.org/conda-forge/win-64/libcurl-7.88.1-h68f0423_0.conda#382f59d4d1e98d89b32402c07e7c5017\n+https://conda.anaconda.org/conda-forge/win-64/libcurl-7.88.1-h68f0423_1.conda#e73c24dd32b88acab08e46ddeb173fee\n https://conda.anaconda.org/conda-forge/win-64/libglib-2.74.1-he8f3873_1.tar.bz2#09e1cbabfd9d733729843c3b35cb0b6d\n-https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.8.0-h039e092_1.tar.bz2#e84839b06cdd039130a1d1aa875146d3\n-https://conda.anaconda.org/conda-forge/win-64/libpq-15.1-he840576_3.conda#26b3842062eca8f6a95cb9065d92841c\n+https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.52.1-h32da247_1.conda#3c9082d6dda43261e0e0cb49c362fca8\n+https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.0-h51c2c0f_0.conda#6cbde93c514acb846762631c15c5d3c2\n+https://conda.anaconda.org/conda-forge/win-64/libpq-15.2-ha9684e8_0.conda#dd4e0f2881b08f08b76c2c4d1763b38a\n https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.0-hf8721a0_2.conda#2e003e276cc1375192569c96afd3d984\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/win-64/lz4-4.3.2-py38hb6d8784_0.conda#63f9d25c2c45503307f2a730e2fd36d4\n@@ -133,17 +137,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.4-py38hb1fd069_1.tar.bz2#ef8a190d49a8b436e5a23ef0ba39e570\n+https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.5-py38hb1fd069_0.conda#766477345ea8870d47d2dd2988f5c1f8\n https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.4-py38h91455d4_0.conda#4cf563f10a20a9d369642914b4570a07\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n+https://conda.anaconda.org/conda-forge/win-64/orc-1.8.3-hada7b9e_0.conda#d2c4ea49865e0838df46e74545fb8414\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -158,27 +163,25 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/win-64/pycryptodomex-3.16.0-py38h91455d4_0.conda#05c0f86c433991317361a11b7f7433c0\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/win-64/pymssql-2.2.7-py38hd3f51b4_0.conda#3e773c2b7cbe709ed8b78d44e08717e1\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/win-64/pyrsistent-0.19.3-py38h91455d4_0.conda#fb4aa6d774c3a286a8561af24ff87185\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/win-64/pywin32-304-py38hd3f51b4_2.tar.bz2#cfefffaad808b61f2932f64c079417b8\n https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0-py38h91455d4_5.tar.bz2#f62ab7e18711e3cbc068319448ecf771\n-https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.0.0-py38ha85f68a_0.conda#9a9a808052bf38bcb72997b20497ac94\n-https://conda.anaconda.org/conda-forge/win-64/regex-2022.10.31-py38h91455d4_0.tar.bz2#8f3115b972ad9530a0747d49939b1885\n+https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.0.2-py38ha85f68a_0.conda#de7ef1838740970039f695e2fb1df9f5\n+https://conda.anaconda.org/conda-forge/win-64/regex-2023.3.23-py38h91455d4_0.conda#d4723697d37732527aeeb8331054dcab\n https://conda.anaconda.org/conda-forge/win-64/rtree-1.0.1-py38h8b54edf_1.tar.bz2#78d18e3c87ba3096647f4b5a95d1ce20\n-https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.249-py38h5e48be7_0.conda#bb2668690421eb3c0a111ff520c1924f\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.259-py38h5e48be7_0.conda#c3c893e5be2cd98d0485f72461bd5683\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -188,95 +191,98 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/win-64/tornado-6.2-py38h91455d4_1.tar.bz2#ed09a022d62a1550692f856c104d929e\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/win-64/unicodedata2-15.0.0-py38h91455d4_0.tar.bz2#7a135e40d9f26c15419e5e82e1c436c0\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2#30878ecc4bd36e8deeea1e3c151b2e0b\n https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2#8d11c1dac4756ca57e78c1bfe173bba4\n https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.0.10-hcd874cb_0.tar.bz2#8f45beee385cb67e42d6732bdb1b6a40\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.9-hcd874cb_0.tar.bz2#9cef622e75683c17d05ae62d66e69e6c\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2#46878ebb6b9cbd8afcf8088d7ef00ece\n-https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1002.tar.bz2#4e2fb1b05e6f44190127b600b8f01645\n+https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda#6e6c2639620e436bddb7c040cd4f3adb\n https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2#88f3c65d2ad13826a9e0b162063be023\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.2.7-h70e1b0c_13.tar.bz2#c5946a20e3d686659e2173f4921160a7\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.2.20-h5f78564_4.conda#427ca70288aa9baf7514ee02c800f87c\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.6-h2545be9_0.conda#e0cb706b5e7856ebf28d3228e008d5c3\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n https://conda.anaconda.org/conda-forge/win-64/backports.zoneinfo-0.2.1-py38h91455d4_7.tar.bz2#0257d9c2e8f1495e74296465d78f8a07\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/win-64/brotli-1.0.9-hcfcfb64_8.tar.bz2#2e661f21e1741c11506bdc7226e6b0bc\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/win-64/cffi-1.15.1-py38h57701bc_3.conda#9b94af390cfdf924a063302a2ddb3860\n https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.2.0-h9ebe7e4_0.conda#cccd314cbeea4f2f70f73c763d9660e8\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-win_pyhd8ed1ab_2.tar.bz2#6b58680207b526c42dcff68b543803dd\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/win-64/coverage-7.1.0-py38h91455d4_0.conda#9b54e09d1a76713fd186f2e905421afe\n-https://conda.anaconda.org/conda-forge/win-64/curl-7.88.1-h68f0423_0.conda#692a21a3ee4119c67f6e99f2c903d50b\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/win-64/coverage-7.2.2-py38h91455d4_0.conda#f580488152afd50b99f830b075d55be9\n+https://conda.anaconda.org/conda-forge/win-64/curl-7.88.1-h68f0423_1.conda#61bac43f1aad61a834f9eb718421a87c\n https://conda.anaconda.org/conda-forge/win-64/cytoolz-0.12.0-py38h91455d4_1.tar.bz2#387f44e5cf4f48ca957b4ed6e8fd2e93\n-https://conda.anaconda.org/conda-forge/win-64/fastavro-1.7.1-py38h91455d4_0.conda#3dabd2ec047ee250d5011b23bc7ccfde\n+https://conda.anaconda.org/conda-forge/win-64/fastavro-1.7.3-py38h91455d4_0.conda#fbd7754d65035fc583d2a582fe669f86\n https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda#08767992f1a4f1336a257af1241034bd\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/win-64/grpcio-1.46.4-py38h7557e77_7.tar.bz2#ac3f13f1e64b5fc0e9453e65cc689c18\n+https://conda.anaconda.org/conda-forge/win-64/grpcio-1.52.1-py38h7cc6c9e_1.conda#580c3e1de43d25bdfacfe762f34d1ef2\n https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h7c369d9_2.tar.bz2#509e4ea898407220d7bdbc6f8a02fe63\n-https://conda.anaconda.org/conda-forge/win-64/hdf5-1.12.2-nompi_h2a0e4a3_101.conda#fc009523b37055956ca02475539e144c\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/win-64/hdf5-1.12.2-nompi_h57737ce_101.conda#3e2b84f2f7bcf6915d1baa21e5b1a862\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n-https://conda.anaconda.org/conda-forge/win-64/lcms2-2.14-ha5c8aab_1.conda#135bd65be6768b2bc84e864e7141ab77\n-https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.1.0-h1006c2c_1.tar.bz2#0e19cfef9029c1a74d70b82d1f8a827e\n+https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-ha5c8aab_0.conda#5ebe92728f44a8b2461410ffb3628c18\n+https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.8.0-hf2ff781_1.conda#97fc6c786071aea9d5d7d439e5f26635\n https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-hf2ab4e4_1015.tar.bz2#1f50b25e87cefda820cb71fb643bc021\n https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-hcd874cb_1004.tar.bz2#a6d7fd030532378ecb6ba435cd9f8234\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-ha2aaf27_2.conda#db0490689232e8e38c312281df6f31a2\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/win-64/postgresql-15.1-h09b8c1b_3.conda#50e0acf0eaf90abff3f96a5895e2b582\n+https://conda.anaconda.org/conda-forge/win-64/postgresql-15.2-hd87cd2b_0.conda#9148e8b6b7ec9e7dedf9bf9987f606cd\n https://conda.anaconda.org/conda-forge/win-64/proj-9.1.1-heca977f_2.conda#eb88b5bc4d13493971408c3131022aec\n-https://conda.anaconda.org/conda-forge/win-64/protobuf-3.20.2-py38haa244fe_1.conda#bb788a10478a1b83828d3903d58de733\n-https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.3-py38h92f1765_2.conda#516564b1c07ae8d645c0f645a2d19fe5\n+https://conda.anaconda.org/conda-forge/win-64/protobuf-4.21.12-py38hd3f51b4_0.conda#d57104e1d122e17dce4e8d7f3fe428f7\n+https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.3-py38hf4f1dbe_2.conda#ca1a430a96ed91d07fc15d391b7077fc\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2#56cd9fe388baac0e90c7149cfac95b60\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-1.4.46-py38h91455d4_0.conda#61e48528c84c8cdb630d7aefe678d921\n-https://conda.anaconda.org/conda-forge/win-64/tbb-2021.7.0-h91493d7_1.conda#39365b918d4f04909485f3055b131c86\n+https://conda.anaconda.org/conda-forge/win-64/tbb-2021.8.0-h91493d7_0.conda#e155410da447d8e37302a561b911dcb8\n https://conda.anaconda.org/conda-forge/win-64/thrift-0.16.0-py38hd3f51b4_2.tar.bz2#7e92153fdc6f01a8f6e16d880386ef8d\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/win-64/watchdog-2.2.1-py38haa244fe_0.conda#795324f37776e087124c30f31ea5a47f\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/win-64/watchdog-3.0.0-py38haa244fe_0.conda#3438f867739fe1763a6a5df9ecd9c0db\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.3-hcd874cb_1000.tar.bz2#76a765e735668a9922da3d58e746a7a6\n https://conda.anaconda.org/conda-forge/win-64/yarl-1.8.2-py38h91455d4_0.conda#2a801dfae7a5b2f25cd36059ae5cc847\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.8.186-h93d3aa3_4.tar.bz2#b67b8f43c04fac75e8932d6023b22ef2\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.6.26-h1262f0c_1.conda#2090318f4a24eec3680efbd0395b1697\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.8.6-hd211e0c_12.conda#6eadc1f9b2b273f574cc24227a3390c6\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/win-64/brotlipy-0.7.0-py38h91455d4_1005.tar.bz2#9fabc7fadfb37addbe91cc67c09cda69\n https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hd694305_1014.tar.bz2#91f08ed9ff25a969ddd06237454dae0d\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/win-64/cryptography-38.0.4-py38h086c683_0.conda#12f19d2311a22211553fc84025ec85eb\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/win-64/cryptography-38.0.4-py38h95f5157_0.conda#6818f6038a87bd2cc20efcba38a1cf11\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n-https://conda.anaconda.org/conda-forge/win-64/fonttools-4.38.0-py38h91455d4_1.tar.bz2#45aa8e4d44d4b82db1ba373b6b7fbd61\n+https://conda.anaconda.org/conda-forge/win-64/fonttools-4.39.2-py38h91455d4_0.conda#add310032aa2cbae67f78ef5189b033a\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-hc256dc0_6.conda#d147f5504f1b29faa112aa72e9c59599\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n@@ -284,125 +290,134 @@ https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.cond\n https://conda.anaconda.org/conda-forge/win-64/google-crc32c-1.1.2-py38h40ab01b_4.tar.bz2#fe9687c3adcb0ab87c926e7831e04039\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.0-h61be68b_0.conda#59e439387b2ca19699b8ce1f077ebe0a\n-https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.8.1-nompi_h8c042bf_106.tar.bz2#90515eee0f7575b5fd296b6ba8d91dae\n+https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.1-nompi_hc41bf00_101.conda#cc79e202db8167cfc78ce4edfcf43c17\n https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.0.1-hfdcade0_23.conda#7661a11b21d23f6f21648a787045b825\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2#2ff89a7337a9636029b4db9466e9f8e3\n https://conda.anaconda.org/conda-forge/win-64/pillow-9.4.0-py38h087119c_1.conda#22f3a5dc5b508c0da8c972991825fdee\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n https://conda.anaconda.org/conda-forge/win-64/pyproj-3.4.1-py38h3bccd86_1.conda#f8c7722350e52037069add8646c146a5\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n https://conda.anaconda.org/conda-forge/win-64/pytz-deprecation-shim-0.1.0.post0-py38haa244fe_3.tar.bz2#65e2a775e12b13ded1d6577b26c018af\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/win-64/tiledb-2.13.2-h5689973_0.conda#931a7aedaa3ae50e4fca6982e3dda4ba\n+https://conda.anaconda.org/conda-forge/win-64/tiledb-2.13.2-h3132609_0.conda#07426c5e1301448738f66686548d41ff\n+https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py38hb1fd069_3.tar.bz2#8f1c0c4b1de3472bc880fd55648d36ab\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n-https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.7.2-hcd874cb_0.tar.bz2#fc83d322fcfa4ca466b8529c4a2d259c\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.4-hcd874cb_0.conda#ebdb02b455647e13fa697da89d9bdf84\n https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.8.4-py38h91455d4_0.conda#306b286eedd23756bdd34d19bfc20174\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.2.7-h8113e7b_1.conda#4f322af22c19df5e1d2c4d77dd68fa7c\n https://conda.anaconda.org/conda-forge/win-64/black-23.1.0-py38haa244fe_0.conda#dec2c966aa05cc6de5df7c3ae6009359\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n https://conda.anaconda.org/conda-forge/win-64/harfbuzz-6.0.0-he256f1b_0.conda#15422d4ff786ed835173cfb8e6735679\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.2.0-py38haa244fe_0.conda#acd4ba37f297f756dc36d6cf5c298b55\n+https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.3.0-py38haa244fe_0.conda#ff05e328ef5915b4a8176844f5effddd\n https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-16_win64_mkl.tar.bz2#d2e6f4e86cee2b4e8c27ff6884ccdc61\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/win-64/poppler-23.01.0-h183ae7b_0.conda#e783b13dd5053ac11ecb77b0edc8eafc\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/win-64/poppler-23.03.0-h183ae7b_0.conda#0908fe0f0432ac13c3411822c68da81d\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/win-64/tzlocal-4.2-py38haa244fe_2.tar.bz2#c5588990fac693c6c8565f0f1cb631f9\n-https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_1.tar.bz2#237e70b849a9440c2fce725b74412cd6\n+https://conda.anaconda.org/conda-forge/win-64/tzlocal-4.3-py38haa244fe_0.conda#cf2fe29d9e209affaa0eea6792996540\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda#2aa695ac3c56193fd8d526e3b511e021\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.2.1-hcd874cb_2.tar.bz2#75788d7a4edf041cdd0a830f9bcaa3fb\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh08f2357_0.conda#ad7524fdf746f7141b6c3dbffc2a9548\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.19.8-he6d3b81_12.conda#10db42f355afa5c3c552391d1037a979\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-16_win64_mkl.tar.bz2#14c2fb03b2bb14dfa3806186ca91d557\n-https://conda.anaconda.org/conda-forge/win-64/libgdal-3.6.2-hb852d34_5.conda#86b77837f2f7ce8f5d63f9f071d520d5\n+https://conda.anaconda.org/conda-forge/win-64/libgdal-3.6.2-h221c0cb_9.conda#88c3283cd62901b1d33e51a15f8e981d\n https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-16_win64_mkl.tar.bz2#be2f9d5712a5bb05cd900005ee752a05\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n-https://conda.anaconda.org/conda-forge/win-64/pango-1.50.13-hdffb7b3_0.conda#a2db50ec796a95c44f6fae10eb7ae39e\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/win-64/pango-1.50.14-hdffb7b3_0.conda#a613f324e0f213238baec720d5c4ed00\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.13-hcd874cb_0.tar.bz2#4b31b88585f696327ba79fea3b41f973\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh025b116_0.conda#2f0ef6a37b24f898508d7a5026e32c02\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n+https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.10.57-h64004b3_8.conda#1c1266961221f698336f672757c27ff2\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh08f2357_0.conda#260ed8a8cbb42c30f8b17a9daeb78353\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-hf5a96e7_4.conda#07f0bd616b51dbd898cabf14646cdf5d\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n https://conda.anaconda.org/conda-forge/win-64/numpy-1.24.2-py38h7ec9225_0.conda#c3f278e36ed9128fcb6acfd8e2f46449\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/win-64/arrow-cpp-8.0.1-py38hbab55ff_2_cpu.tar.bz2#759a55d2f455ec1d189ba31d53ca9aff\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/win-64/contourpy-1.0.7-py38hb1fd069_0.conda#6b53200dddcec578cdd90cac146eeadd\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/win-64/gdal-3.6.2-py38h658b046_5.conda#746f2b77ec9663c5f630ef2c425d622d\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n+https://conda.anaconda.org/conda-forge/win-64/gdal-3.6.2-py38h5a6f081_9.conda#8227f8dee15e614201e52f81bdd774cc\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n https://conda.anaconda.org/conda-forge/win-64/graphviz-7.1.0-h51cb2cd_0.conda#2ab84ffaa7b47e0118c10e9e5d29bd37\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh025b116_0.conda#4d594953555f43826532ab5c5f7754f5\n+https://conda.anaconda.org/conda-forge/win-64/libarrow-11.0.0-h04c43f8_13_cpu.conda#0872ce0cc56d710e1467c996b3142cb4\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n https://conda.anaconda.org/conda-forge/win-64/pandas-1.5.3-py38h5846ac1_0.conda#ca579bb262dcfbe6fc82f6758d2307b2\n-https://conda.anaconda.org/conda-forge/win-64/polars-0.16.6-py38h4900a04_0.conda#326200900bf2843cc61264f75964540b\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n+https://conda.anaconda.org/conda-forge/win-64/polars-0.16.13-py38h4900a04_0.conda#dc0bdfbf1c9978fcaf68143c5598d588\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n https://conda.anaconda.org/conda-forge/win-64/shapely-1.8.5-py38h9c0aba1_2.tar.bz2#123f28c0c8c931a1ad4a506fb49c94ce\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/win-64/arrow-cpp-11.0.0-h57928b3_13_cpu.conda#7d096783fc97ffadf0961772786a67a3\n https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.1-py38hc97cbf3_0.conda#70a2ff5fc4851164924a2655e5a7a832\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n-https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.0-py38h528a6c7_0.conda#e4a707baf4bc86081cf6b5702f330071\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n+https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.1-py38h528a6c7_0.conda#0aebccad15d74ec7f1bc3d62497ad1a8\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n-https://conda.anaconda.org/conda-forge/win-64/scipy-1.10.0-py38h0f6ee2a_2.conda#4ec63f891fe6fff7940c0bef00d2a481\n+https://conda.anaconda.org/conda-forge/win-64/scipy-1.10.1-py38h0f6ee2a_0.conda#ad604d9c7b391da227489d25c38faab7\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n-https://conda.anaconda.org/conda-forge/win-64/pyarrow-8.0.1-py38hb2e333c_2_cpu.tar.bz2#ad3455af769710c73edb566867b13026\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.2.1-py38h69724d7_0.conda#dc7c965f44dd2cbc5db4e188d83d2d18\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.2.2-py38h42e183d_1.conda#49b8b48dbe38b9799ea4115c0a2fbdeb\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/win-64/python-duckdb-0.7.0-py38hd99a6a2_1.conda#21f4c02465655cc45e43bca5a864ffd6\n-https://conda.anaconda.org/conda-forge/win-64/snowflake-connector-python-2.8.3-py38h1372981_0.conda#1b2e87056742355b0427bcfd9c3eb037\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/win-64/pyarrow-11.0.0-py38hc72dcf3_13_cpu.conda#39bda66eb687b54c40a03b2a4e00244b\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/win-64/python-duckdb-0.7.1-py38hd99a6a2_0.conda#6d8db32de87a2734fb666c0dcfed6125\n+https://conda.anaconda.org/conda-forge/win-64/snowflake-connector-python-3.0.2-py38h24e69a6_0.conda#04b51d8605b54f19f7fad569275f3afb\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n", "win-64-3.9.lock": "@@ -1,6 +1,6 @@\n # Generated by conda-lock.\n # platform: win-64\n-# input_hash: a47f04c127d70b01fce4ce8db355731eb3c45226b73cf9c5e3617ec296625ea0\n+# input_hash: f9c4b49012841ef1b3dfea897ff8f2d42d53d984b1a62d1b02e411a45901a908\n @EXPLICIT\n https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2022.12.7-h5b45459_0.conda#31de4d9887dc8eaed9e6230a5dfbb9d6\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45\n@@ -9,11 +9,11 @@ https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77\n https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5\n https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.0.0-h57928b3_25922.conda#8ecf3a448f5a35bd30cb39ddc2a19058\n https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2#b0309b72560df66f71a9d5e34a5efdfa\n-https://conda.anaconda.org/conda-forge/win-64/pandoc-2.19.2-h57928b3_1.tar.bz2#94bac372f90d1402ddd1df0f4cf67656\n+https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.1-h57928b3_0.conda#71f11eb19ae575ee0b52d0d58fb018f3\n https://conda.anaconda.org/conda-forge/win-64/perl-5.32.1.1-2_h57928b3_strawberry.tar.bz2#c2f85039cbc767518ff2f701638e37c4\n https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592\n https://conda.anaconda.org/conda-forge/win-64/python_abi-3.9-3_cp39.conda#c7f654abbee61f9a03f54e9064e79e89\n-https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda#51fc4fcfb19f5d95ffc8c339db5068e8\n+https://conda.anaconda.org/conda-forge/noarch/tzdata-2023b-h71feb2d_0.conda#6c80c63151d7f493dab457a0ba6c2523\n https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2#72608f6cd3e5898229c3ea16deb1ac43\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2#53a1c73e1e3d185516d7e3af177596d9\n@@ -22,7 +22,7 @@ https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-h4c5c07\n https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2#4289d80fb4d272f1f3b56cfe87ac90bd\n https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb6edc58_10.conda#52d246d8d14b83c516229be5bb03a163\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.6.2-h8ffe710_0.tar.bz2#7eb3e6859d0da38fe0bff50391e7f9dc\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.8.14-hcfcfb64_0.conda#6bc5797d31bbbd38b993a5c8356cbb87\n https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2#7c03c66026944073040cb19a4f3ec3c9\n https://conda.anaconda.org/conda-forge/win-64/c-ares-1.18.1-h8ffe710_0.tar.bz2#6aa55bbdfe054ea36c1c99d3adace8d9\n https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h1537add_0.tar.bz2#6b20c31bd735d2dd5c79ddb5b3524619\n@@ -34,7 +34,7 @@ https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-1000.tar.bz2#8fc0\n https://conda.anaconda.org/conda-forge/win-64/icu-70.1-h0e60522_0.tar.bz2#64073396a905b6df895ab2489fae3847\n https://conda.anaconda.org/conda-forge/win-64/jpeg-9e-hcfcfb64_3.conda#824f1e030d224e9e376a4655032fdbc7\n https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2#1900cb3cab5055833cfddb0ba233b074\n-https://conda.anaconda.org/conda-forge/win-64/libabseil-20220623.0-cxx17_h1a56200_6.conda#5a3b4c52be0bd9dd8718c560e38db140\n+https://conda.anaconda.org/conda-forge/win-64/libabseil-20230125.0-cxx17_h63175ca_1.conda#768d0974049a1146ff45579a05b112ca\n https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda#f98474a8245f55f4a273889dbe7bf193\n https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.0.9-hcfcfb64_8.tar.bz2#e8078e37208cd7d3e1eb5053f370ded8\n https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2#cd4cc2d0c610c8cb5419ccc979f2d6ce\n@@ -45,52 +45,53 @@ https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz\n https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h39d44d4_4.tar.bz2#51c172496e828258d04eba9971f2af1a\n https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.40.0-hcfcfb64_0.tar.bz2#5e5a97795de72f8cc3baf3d9ea6327a2\n https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2#076894846fe9f068f91c57d158c90cba\n-https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.2.4-h8ffe710_0.tar.bz2#0a09bd195ebeaff5711ccae93ac132ad\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda#381a3645c51cbf478872899b16490318\n https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_4.tar.bz2#0cc5c5cc64ee1637f37f8540a175854c\n https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda#e34720eb20a33fc3bfb8451dd837ab7a\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2#066552ac6b907ec6d72c0ddab29050dc\n-https://conda.anaconda.org/conda-forge/win-64/openssl-1.1.1t-hcfcfb64_0.conda#f47342fb350e6d2a233304f750c3502d\n+https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.0-hcfcfb64_0.conda#4245a25fae1aaf85bc3fbf6fc29c2d5d\n https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2#32b45d3fcffddc84cc1a014a0b5f0d58\n https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2#e2da8758d7d51ff6aa78a14dfb9dbed4\n-https://conda.anaconda.org/conda-forge/win-64/re2-2022.06.01-h0e60522_1.conda#dcff2309ccfcec47248ebb6f502c35ff\n-https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.9-hfb803bf_2.tar.bz2#073b08c65807f205d990ace14ccacdb2\n+https://conda.anaconda.org/conda-forge/win-64/re2-2023.02.02-h63175ca_0.conda#586130698a48cd88f76e3fba5f091243\n+https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda#cff1df79c9cff719460eb2dd172568de\n https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2#c69a5047cc9291ae40afd4a1ad6f0c0f\n-https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_1.tar.bz2#b026982f81a6aba1e8ce2525ba640632\n+https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_2.conda#8ba57760b15d0c2493192908317bdf5e\n https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2#515d77642eaa3639413c6b1bc3f94219\n https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2#adbfb9f45d1004a26763652246a33764\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.5.11-he19cf47_0.tar.bz2#c8b314ff705e4de32640c748e5b9c8d2\n-https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.11-h1e232aa_7.tar.bz2#c9fde0c43dce1a8eecbef5368396742c\n-https://conda.anaconda.org/conda-forge/win-64/freetds-1.3.16-pl5321hfe0aba9_0.conda#40463ad15ddabdd29c419a5eeb92b10b\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.5.21-h7cda486_2.conda#049fc3fb095e7838621382a696abcfda\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.16-h8a79959_5.conda#0a790b22ec9cf8aff76fdd3150d784aa\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.8-h8a79959_0.conda#2bf14b763bda622122577f11b03579d5\n+https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.14-h8a79959_5.conda#427baa843cb7d3bbac662efb193d27ed\n+https://conda.anaconda.org/conda-forge/win-64/freetds-1.3.16-pl5321hf43717d_0.conda#ca29852204cf1fb50fbc56c9f0a8681a\n https://conda.anaconda.org/conda-forge/win-64/freexl-1.0.6-h67ca5e6_1.tar.bz2#7ddb6e879c46e78eec37f956b3ffe743\n https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2#299d4fd6798a45337042ff5a48219e5f\n https://conda.anaconda.org/conda-forge/win-64/glog-0.6.0-h4797de2_0.tar.bz2#fdc11ab9a621f009995e89f52bea3004\n-https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-h6609f42_0.conda#a962b5937824124553d53bd9f535cc71\n+https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda#a07b05ee8f451ab15698397185efe989\n https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.0.9-hcfcfb64_8.tar.bz2#99839d9d81f33afa173c0fa82a702038\n https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.0.9-hcfcfb64_8.tar.bz2#88e62627120c20289bf8982b15e0a6a1\n https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda#ab6febdb2dbd9c00803609079db4de71\n-https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.20.2-h12be248_0.tar.bz2#672e32cebe446a63a26b9eb36c58422f\n+https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.21.12-h12be248_0.conda#065644957b64030c520c732a0b7eb43d\n https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-he22b5cd_12.tar.bz2#115a51fda72ff01d7b7eb275183d6c72\n-https://conda.anaconda.org/conda-forge/win-64/libssh2-1.10.0-h680486a_3.tar.bz2#3b2aa0d4ede640c471bd0e8f122fcbd5\n-https://conda.anaconda.org/conda-forge/win-64/libthrift-0.16.0-h9f558f2_2.tar.bz2#0b49bcb47e1a3c55a098cc3e78f3ee8f\n-https://conda.anaconda.org/conda-forge/win-64/libwebp-1.2.4-hcfcfb64_1.conda#ccde94ca6504af175b76f654bcad6e9f\n-https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.3-hc3477c8_0.tar.bz2#6dcf17bf780618ddb559d992ea3b6961\n-https://conda.anaconda.org/conda-forge/win-64/libzip-1.9.2-hfed4ece_1.tar.bz2#1964ebe1dd5f092b9512aaa41f5f2a8b\n+https://conda.anaconda.org/conda-forge/win-64/libssh2-1.10.0-h9a1e1f7_3.tar.bz2#c2b344e960a173c777bb3ed172c38cd8\n+https://conda.anaconda.org/conda-forge/win-64/libthrift-0.18.1-h9ce19ad_0.conda#c6b9481c37361790ff1b0d16899d2142\n+https://conda.anaconda.org/conda-forge/win-64/libwebp-1.3.0-hcfcfb64_0.conda#0c1f2c4b45406631c600ec22ca9523fc\n+https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.3-hc3477c8_6.conda#a56f8a52bc13d7eee23457f0e253e055\n+https://conda.anaconda.org/conda-forge/win-64/libzip-1.9.2-h519de47_1.tar.bz2#9c3138e53e36c0c161a23d20db91297b\n https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2#fe759119b8b3bfa720b8762c6fdc35de\n https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2#2519de0d9620dc2bc7e19caf6867136d\n-https://conda.anaconda.org/conda-forge/win-64/python-3.9.15-h0269646_0_cpython.conda#d8fe5fbfa7ddebd3a1690b84194dba59\n+https://conda.anaconda.org/conda-forge/win-64/python-3.9.16-h4de0772_0_cpython.conda#83b66ea4ff5c437502a06cd2de8cd681\n https://conda.anaconda.org/conda-forge/win-64/sqlite-3.40.0-hcfcfb64_0.tar.bz2#c71d4be22d8402e7e17386aeb18b930e\n https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.4-h0e60522_1.tar.bz2#e1aff0583dda5fb917eb3d2c1025aa80\n https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_4.tar.bz2#eed9fec3e6d2e8865135b09d24ca040c\n https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda#62826565682d013b3e2346aaf7bded0e\n-https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b\n https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2#f3f2ab3ce28979a24d1a988ba211eb9b\n https://conda.anaconda.org/conda-forge/noarch/atpublic-3.0.1-pyhd8ed1ab_0.tar.bz2#39904aaf8de88f03fe9c27286dc35681\n https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda#8b76db7818a4e401ed4486c4c1635cd9\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.10.5-h2fe331c_0.tar.bz2#d38ee034f93fb73f3f222d1be1e9c3a3\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.19-h0d2781e_3.conda#075e2d0fc0b2ca759d61ceddfaeae87d\n https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213\n https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02\n https://conda.anaconda.org/conda-forge/win-64/backports.zoneinfo-0.2.1-py39hcbf5309_7.tar.bz2#a92d68f8824381b3f8ea4d367ae66720\n-https://conda.anaconda.org/conda-forge/win-64/bitarray-2.7.2-py39ha55989b_0.conda#d46f92620b97e5aa963baa395dd8a03e\n+https://conda.anaconda.org/conda-forge/win-64/bitarray-2.7.3-py39ha55989b_0.conda#2445eecbaf41da32cfe96388aaec57a9\n https://conda.anaconda.org/conda-forge/noarch/blinker-1.5-pyhd8ed1ab_0.tar.bz2#f473c4e32d8180733ba5594d122cb637\n https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.3-hdccc3a2_0.conda#b3fe9abd77808553a7d0a0cbf73b6ec9\n https://conda.anaconda.org/conda-forge/win-64/boost-cpp-1.78.0-h9f4b32c_1.tar.bz2#11a4273e974d63a99da36b89d6f918a9\n@@ -98,6 +99,7 @@ https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.0.9-hcfcfb64_8.tar.bz\n https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a\n https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.0-pyhd8ed1ab_0.conda#fd006afc4115740d8d52887ee813f262\n https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda#fb9addc3db06e56abe03e0e9f21a63e6\n+https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c\n https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2#c1d5b294fbf9a795dec349a6f4d8be8e\n https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda#b325bfc4cff7d7f8a868f1f7ecc4ed16\n https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99\n@@ -105,27 +107,29 @@ https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2\n https://conda.anaconda.org/conda-forge/win-64/debugpy-1.6.6-py39h99910a6_0.conda#77c24634d38bfe0d5d7d802390c7b979\n https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364\n https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2\n+https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.6-pyhd8ed1ab_0.tar.bz2#b65b4d50dbd2d50fa0aeac367ec9eed7\n https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d\n-https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda#a385c3e8968b4cf8fbc426ace915fd1a\n+https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda#7312299d7a0ea4993159229b7d2dceb2\n https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2#0e521f7a5e60d508b121d38b04874fb2\n https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50\n-https://conda.anaconda.org/conda-forge/noarch/filelock-3.9.0-pyhd8ed1ab_0.conda#1addc115923d646ca19ed90edc413506\n+https://conda.anaconda.org/conda-forge/noarch/filelock-3.10.7-pyhd8ed1ab_0.conda#6a0601f92717ce555d79d83d693b6fa3\n https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda#1b513009cd012591f3fdc9e03a74ec0a\n https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.3.3-py39ha55989b_0.tar.bz2#b8762916559d3e14831d6e10caad214b\n-https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda#44f6828b8f7cc3433d68d1d1c0e9add2\n+https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.3.0-pyhd8ed1ab_1.conda#0db48a2f5a68e28e5af8d3df276f2255\n https://conda.anaconda.org/conda-forge/noarch/gprof2dot-2019.11.30-py_0.tar.bz2#9000d491cc90b7020b6422660d23cbe0\n https://conda.anaconda.org/conda-forge/win-64/greenlet-2.0.2-py39h99910a6_0.conda#d3521625b406aa27d94a0000ec5d7c1c\n-https://conda.anaconda.org/conda-forge/win-64/grpc-cpp-1.46.4-hcb02dd0_7.tar.bz2#22d5b60176875da20518c4ea94a77037\n https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h1b1b6ef_5.tar.bz2#bfb6a2d82ef9a30455cc0900d89eed20\n https://conda.anaconda.org/conda-forge/noarch/heapdict-1.0.1-py_0.tar.bz2#77242bfb1e74a627fb06319b5a2d3b95\n https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed\n https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5\n-https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.5-pyhd8ed1ab_0.conda#953a312b272f37d39fe9d09f46734622\n+https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287\n+https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.6-pyhd8ed1ab_0.conda#67e397a2877c4cb83144fcf823b1f479\n https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.4-py39h1f6ef14_1.tar.bz2#de04861ceb137d2952d3f2d0a13e9d46\n-https://conda.anaconda.org/conda-forge/win-64/libcurl-7.88.1-h68f0423_0.conda#382f59d4d1e98d89b32402c07e7c5017\n+https://conda.anaconda.org/conda-forge/win-64/libcurl-7.88.1-h68f0423_1.conda#e73c24dd32b88acab08e46ddeb173fee\n https://conda.anaconda.org/conda-forge/win-64/libglib-2.74.1-he8f3873_1.tar.bz2#09e1cbabfd9d733729843c3b35cb0b6d\n-https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.8.0-h039e092_1.tar.bz2#e84839b06cdd039130a1d1aa875146d3\n-https://conda.anaconda.org/conda-forge/win-64/libpq-15.1-he840576_3.conda#26b3842062eca8f6a95cb9065d92841c\n+https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.52.1-h32da247_1.conda#3c9082d6dda43261e0e0cb49c362fca8\n+https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.0-h51c2c0f_0.conda#6cbde93c514acb846762631c15c5d3c2\n+https://conda.anaconda.org/conda-forge/win-64/libpq-15.2-ha9684e8_0.conda#dd4e0f2881b08f08b76c2c4d1763b38a\n https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.0-hf8721a0_2.conda#2e003e276cc1375192569c96afd3d984\n https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4\n https://conda.anaconda.org/conda-forge/win-64/lz4-4.3.2-py39hf617134_0.conda#6102f85df33cac99d21853bc21563150\n@@ -134,17 +138,18 @@ https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f\n https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2\n https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda#61a07195cfc935f1c1901d8ecf4af441\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.1.1-pyhd8ed1ab_0.conda#f94b8726e7c9ec2b4aabae2af77d7fe3\n-https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.4-py39h1f6ef14_1.tar.bz2#9afe90a33529768bb9854058398d620c\n+https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.5-py39h1f6ef14_0.conda#b5e111aee8fac27f002b1d71b75da941\n https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.4-py39ha55989b_0.conda#1af5a2528e09d6b6f78deaced0ccaa5e\n https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19\n https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3\n https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2#7b868f21adde0d9b8b38f9c16836589b\n https://conda.anaconda.org/conda-forge/noarch/networkx-3.0-pyhd8ed1ab_0.conda#88e40007414ea9a13f8df20fcffa87e2\n+https://conda.anaconda.org/conda-forge/win-64/orc-1.8.3-hada7b9e_0.conda#d2c4ea49865e0838df46e74545fb8414\n https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda#1ff2e3ca41f0ce16afec7190db28288b\n https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9\n https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094\n-https://conda.anaconda.org/conda-forge/noarch/parsy-2.0-pyhd8ed1ab_0.conda#ae56c17f98be29fec311a2fc36608685\n-https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.0-pyhd8ed1ab_0.conda#641ebf6fbbb8d5576c5280ba23ceaf76\n+https://conda.anaconda.org/conda-forge/noarch/parsy-2.1-pyhd8ed1ab_0.conda#0423aa726dfb35b9a236ea3d572b8b74\n+https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.1-pyhd8ed1ab_0.conda#dbb80d1e8dc2dba5c8b106dc0768ad45\n https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761\n https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2#89e3c7cdde7d3aaa2aee933b604dd07f\n https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2#7d301a0d25f424d96175f810935f0da9\n@@ -159,27 +164,25 @@ https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.4.8-py_0.tar.bz2#06d04c9f\n https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff\n https://conda.anaconda.org/conda-forge/win-64/pycryptodomex-3.16.0-py39ha55989b_0.conda#23c3d7a270918e02a4d053a59472cb60\n https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.6.0-pyhd8ed1ab_0.tar.bz2#56d08bbebf5b3719ca2b1688fcfd98a4\n-https://conda.anaconda.org/conda-forge/noarch/pympler-1.0.1-pyhd8ed1ab_0.tar.bz2#e6932cc2794f4a961c3d6c14022e55d0\n https://conda.anaconda.org/conda-forge/win-64/pymssql-2.2.7-py39h99910a6_0.conda#541f23a61edc1eb267df5977416e90a0\n https://conda.anaconda.org/conda-forge/noarch/pymysql-1.0.2-pyhd8ed1ab_0.tar.bz2#6b3c16769e390b5b60729d2eb46b8144\n https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2#e8fbc1b54b25f4b08281467bc13b70cc\n https://conda.anaconda.org/conda-forge/win-64/pyrsistent-0.19.3-py39ha55989b_0.conda#3c40136690d8023e73c5dcfe38e03f95\n-https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.2-pyhd8ed1ab_0.tar.bz2#5fe4b6002f505336734ce92961b3e6a0\n-https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2022.7-pyhd8ed1ab_0.conda#b8afba5fbf891019eae564c3edb28b9e\n-https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda#f59d49a7b464901cf714b9e7984d01a2\n+https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.16.3-pyhd8ed1ab_0.conda#7aa330a4d88b7ab891a42c39d5d2e742\n+https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.2-pyhd8ed1ab_0.conda#de631f19ba156d224d80241e3fc7d32f\n+https://conda.anaconda.org/conda-forge/noarch/pytz-2023.2-pyhd8ed1ab_0.conda#d74d285d6628e55752df22fc84910279\n https://conda.anaconda.org/conda-forge/win-64/pywin32-304-py39h99910a6_2.tar.bz2#4cb6e4e7a9a0c2889967a4f436e589bc\n https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0-py39ha55989b_5.tar.bz2#03968ff66723b72b793e94033d0fbb2f\n-https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.0.0-py39hea35a22_0.conda#a423a0cc38b23afcd0dd1b7ca9ca0c24\n-https://conda.anaconda.org/conda-forge/win-64/regex-2022.10.31-py39ha55989b_0.tar.bz2#516e31913d21c6eb6e2df66fd85616ab\n+https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.0.2-py39hea35a22_0.conda#54d2590519d9044bddebac0c459302f2\n+https://conda.anaconda.org/conda-forge/win-64/regex-2023.3.23-py39ha55989b_0.conda#a057ddce3a7dcae4b2272de2d5338128\n https://conda.anaconda.org/conda-forge/win-64/rtree-1.0.1-py39h09fdee3_1.tar.bz2#84a721accc992a5462483e4512efe4a7\n-https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.249-py39h756cfbc_0.conda#2540015044592feb08d85a4091c9b054\n-https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2#2cab9f3a9683cb40a2176ccaf76e66c6\n-https://conda.anaconda.org/conda-forge/noarch/setuptools-67.3.2-pyhd8ed1ab_0.conda#543af74c4042aee5702a033e03a216d0\n+https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.259-py39h756cfbc_0.conda#bb11e0a60e11d2311cdd102b86009a2d\n+https://conda.anaconda.org/conda-forge/noarch/setuptools-67.6.0-pyhd8ed1ab_0.conda#e18ed61c37145bb9b48d1d98801960f7\n https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2\n https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2#3a8dc70789709aa315325d5df06fb7e4\n https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2#6d6552722448103793743dabfbda532d\n https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2#146f4541d643d48fc8a75cacf69f03ae\n-https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.2.0-pyhd8ed1ab_0.conda#cc77ca257e506b36a14e1878c79d2693\n+https://conda.anaconda.org/conda-forge/noarch/sqlglot-11.4.3-pyhd8ed1ab_0.conda#e4b8587a8411653dd4fb30056b71b675\n https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2#3d4afc31302aa7be471feb6be048ed76\n https://conda.anaconda.org/conda-forge/noarch/termcolor-2.2.0-pyhd8ed1ab_0.conda#778f524c3d149577a6e873264d85ec68\n https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2#a2995ee828f65687ac5b1e71a2ab1e0c\n@@ -189,95 +192,98 @@ https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#\n https://conda.anaconda.org/conda-forge/win-64/tornado-6.2-py39ha55989b_1.tar.bz2#702e8f5ca3fde634b435132e13de7c15\n https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda#d0b4f5c87cd35ac3fb3d47b223263a64\n https://conda.anaconda.org/conda-forge/noarch/typing-3.10.0.0-pyhd8ed1ab_0.tar.bz2#e6573ac68718f17b9d4f5c8eda3190f2\n-https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2#2d93b130d148d7fc77e583677792fc6a\n+https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.5.0-pyha770c72_0.conda#43e7d9e50261fb11deb76e17d8431aac\n https://conda.anaconda.org/conda-forge/win-64/unicodedata2-15.0.0-py39ha55989b_0.tar.bz2#3be582ed58b3e289836a1fdc4e41d0b8\n https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2#3563be4c5611a44210d9ba0c16113136\n-https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2#c829cfb8cb826acb9de0ac1a2df0a940\n-https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.5-pyhd8ed1ab_0.conda#2af53b3894fb9bdbb3679c0d31028b1b\n+https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda#49bb0d9e60ce1db25e151780331bb5f3\n+https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.6-pyhd8ed1ab_0.conda#35aff5e9b804e17cceb9f99a59349b3b\n https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2#30878ecc4bd36e8deeea1e3c151b2e0b\n https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2#8d11c1dac4756ca57e78c1bfe173bba4\n https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.0.10-hcd874cb_0.tar.bz2#8f45beee385cb67e42d6732bdb1b6a40\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.9-hcd874cb_0.tar.bz2#9cef622e75683c17d05ae62d66e69e6c\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2#46878ebb6b9cbd8afcf8088d7ef00ece\n-https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1002.tar.bz2#4e2fb1b05e6f44190127b600b8f01645\n+https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda#6e6c2639620e436bddb7c040cd4f3adb\n https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2#88f3c65d2ad13826a9e0b162063be023\n https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.2.0-pyhd8ed1ab_0.conda#df61644536ee98e50e1e022489588b32\n-https://conda.anaconda.org/conda-forge/noarch/zipp-3.14.0-pyhd8ed1ab_0.conda#01ea04980fa39d7b6dbdd6c67016d177\n+https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda#13018819ca8f5b7cc675a8faf1f5fedf\n https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156\n https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda#bf7f54dd0f25c3f06ecb82a07341841a\n-https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.2.7-h70e1b0c_13.tar.bz2#c5946a20e3d686659e2173f4921160a7\n-https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2#2ea70fde8d581ba9425a761609eed6ba\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.2.20-h5f78564_4.conda#427ca70288aa9baf7514ee02c800f87c\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.6-h2545be9_0.conda#e0cb706b5e7856ebf28d3228e008d5c3\n+https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda#ac432e732804a81ddcf29c92ead57cde\n https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2#c5b3edc62d6309088f4970b3eaaa65a6\n-https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda#88b59f6989f0ed5ab3433af0b82555e1\n+https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.0-pyha770c72_0.conda#84f54c3bd1a542c8fe696bc8947b040b\n+https://conda.anaconda.org/conda-forge/noarch/bidict-0.22.1-pyhd8ed1ab_0.conda#2b69d5cbd3d301c9ceee2cfbf9fc87b7\n https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda#d48b143d01385872a88ef8417e96c30e\n https://conda.anaconda.org/conda-forge/win-64/brotli-1.0.9-hcfcfb64_8.tar.bz2#2e661f21e1741c11506bdc7226e6b0bc\n https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551\n https://conda.anaconda.org/conda-forge/win-64/cffi-1.15.1-py39h68f70e3_3.conda#5e7cb1054cd6f3036a4bdbfe6e23fdfd\n https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.2.0-h9ebe7e4_0.conda#cccd314cbeea4f2f70f73c763d9660e8\n https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-win_pyhd8ed1ab_2.tar.bz2#6b58680207b526c42dcff68b543803dd\n-https://conda.anaconda.org/conda-forge/noarch/comm-0.1.2-pyhd8ed1ab_0.conda#3c78af4752bb1600ebe5e83ef4588eaa\n-https://conda.anaconda.org/conda-forge/win-64/coverage-7.1.0-py39ha55989b_0.conda#db58b8e4e6ed3347ca2272cbf9d77aff\n-https://conda.anaconda.org/conda-forge/win-64/curl-7.88.1-h68f0423_0.conda#692a21a3ee4119c67f6e99f2c903d50b\n+https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda#168ae0f82cdf7505048e81054c7354e4\n+https://conda.anaconda.org/conda-forge/win-64/coverage-7.2.2-py39ha55989b_0.conda#2c8ec2398966d1ab15b8eefd4f3cc01b\n+https://conda.anaconda.org/conda-forge/win-64/curl-7.88.1-h68f0423_1.conda#61bac43f1aad61a834f9eb718421a87c\n https://conda.anaconda.org/conda-forge/win-64/cytoolz-0.12.0-py39ha55989b_1.tar.bz2#1bf852998240d1c7c9c26516c7c1323d\n-https://conda.anaconda.org/conda-forge/win-64/fastavro-1.7.1-py39ha55989b_0.conda#41d29735eb76a7e6fcf5642854bb8834\n+https://conda.anaconda.org/conda-forge/win-64/fastavro-1.7.3-py39ha55989b_0.conda#4b4ebac214cfd7dc263cf2437d360271\n https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda#08767992f1a4f1336a257af1241034bd\n https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda#3706d2f3d7cb5dae600c833345a76132\n-https://conda.anaconda.org/conda-forge/win-64/grpcio-1.46.4-py39hf834a4b_7.tar.bz2#44929d881c2d8737d7a939332f4358b8\n+https://conda.anaconda.org/conda-forge/win-64/grpcio-1.52.1-py39hd0003e1_1.conda#c83b44cba62a4e1bf5edd52357807d35\n https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h7c369d9_2.tar.bz2#509e4ea898407220d7bdbc6f8a02fe63\n-https://conda.anaconda.org/conda-forge/win-64/hdf5-1.12.2-nompi_h2a0e4a3_101.conda#fc009523b37055956ca02475539e144c\n-https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda#691644becbcdca9f73243450b1c63e62\n+https://conda.anaconda.org/conda-forge/win-64/hdf5-1.12.2-nompi_h57737ce_101.conda#3e2b84f2f7bcf6915d1baa21e5b1a862\n+https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.1.0-pyha770c72_0.conda#30b3127c385ca2ed5ef87f3d53d466bc\n https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda#e5fd2260a231ee63b6969f4801082f2b\n https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda#b5e695ef9c3f0d27d6cd96bf5adc9e07\n https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37\n https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2#7583652522d71ad78ba536bba06940eb\n-https://conda.anaconda.org/conda-forge/win-64/lcms2-2.14-ha5c8aab_1.conda#135bd65be6768b2bc84e864e7141ab77\n-https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.1.0-h1006c2c_1.tar.bz2#0e19cfef9029c1a74d70b82d1f8a827e\n+https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-ha5c8aab_0.conda#5ebe92728f44a8b2461410ffb3628c18\n+https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.8.0-hf2ff781_1.conda#97fc6c786071aea9d5d7d439e5f26635\n https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-hf2ab4e4_1015.tar.bz2#1f50b25e87cefda820cb71fb643bc021\n https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-hcd874cb_1004.tar.bz2#a6d7fd030532378ecb6ba435cd9f8234\n-https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.1.0-pyhd8ed1ab_0.tar.bz2#d821ebc1ebe21d4cac2555278c2cd970\n+https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda#b2928a6c6d52d7e3562b4a59c3214e3a\n https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de\n https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2#1073dc92c8f247d94ac14dd79ca0bbec\n https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2#31d9e9be500e25ff0050bc9f57a6bcd7\n+https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.7.0-pyhd8ed1ab_0.tar.bz2#fbe1182f650c04513046d6894046cd6c\n https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-ha2aaf27_2.conda#db0490689232e8e38c312281df6f31a2\n https://conda.anaconda.org/conda-forge/noarch/oscrypto-1.2.1-pyhd3deb0d_0.tar.bz2#a717f22c057a91fc7b4517f94dc5240e\n https://conda.anaconda.org/conda-forge/noarch/partd-1.3.0-pyhd8ed1ab_0.tar.bz2#af8c82d121e63082926062d61d9abb54\n https://conda.anaconda.org/conda-forge/noarch/pip-23.0.1-pyhd8ed1ab_0.conda#8025ca83b8ba5430b640b83917c2a6f7\n-https://conda.anaconda.org/conda-forge/win-64/postgresql-15.1-h09b8c1b_3.conda#50e0acf0eaf90abff3f96a5895e2b582\n+https://conda.anaconda.org/conda-forge/win-64/postgresql-15.2-hd87cd2b_0.conda#9148e8b6b7ec9e7dedf9bf9987f606cd\n https://conda.anaconda.org/conda-forge/win-64/proj-9.1.1-heca977f_2.conda#eb88b5bc4d13493971408c3131022aec\n-https://conda.anaconda.org/conda-forge/win-64/protobuf-3.20.2-py39hcbf5309_1.conda#5e3097553fd5730ac7bf4cb63ec6893d\n-https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.3-py39hc7c70e1_2.conda#7fecb8cf7f340e9324e9e11ffbcc07db\n+https://conda.anaconda.org/conda-forge/win-64/protobuf-4.21.12-py39h99910a6_0.conda#5336f718b1bd02058a244f59f4e85dd5\n+https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.3-py39h0213f17_2.conda#c964f0d4c06f9482100843540d25a680\n https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.2.7-py_0.tar.bz2#ad1e886d09700b2304975335f714bd9c\n https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda#c78cd16b11cd6a295484bd6c8f24bea1\n https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2#56cd9fe388baac0e90c7149cfac95b60\n-https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda#f0be05afc9c9ab45e273c088e00c258b\n+https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.2-pyhd8ed1ab_0.conda#60958b19354e0ec295b43f6ab5cfab86\n https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984\n https://conda.anaconda.org/conda-forge/win-64/pytz-deprecation-shim-0.1.0.post0-py39hcbf5309_3.tar.bz2#91bfbc68f3f26da3a4b99738c8d7191a\n https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb\n https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2#626ed9060ddeb681ddc42bcad89156ab\n https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436\n https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-1.4.46-py39ha55989b_0.conda#3cf0b27784f5bff072c178c805ec7491\n-https://conda.anaconda.org/conda-forge/win-64/tbb-2021.7.0-h91493d7_1.conda#39365b918d4f04909485f3055b131c86\n+https://conda.anaconda.org/conda-forge/win-64/tbb-2021.8.0-h91493d7_0.conda#e155410da447d8e37302a561b911dcb8\n https://conda.anaconda.org/conda-forge/win-64/thrift-0.16.0-py39h99910a6_2.tar.bz2#3cd38b0a50335abea8c3f5749cdb1fe6\n https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48\n-https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.6-pyha770c72_0.tar.bz2#471bf9e605820b59988e830382b8d654\n-https://conda.anaconda.org/conda-forge/noarch/tqdm-4.64.1-pyhd8ed1ab_0.tar.bz2#5526ff3f88f9db87bb0924b9ce575345\n-https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2#be969210b61b897775a0de63cd9e9026\n-https://conda.anaconda.org/conda-forge/noarch/validators-0.20.0-pyhd8ed1ab_0.conda#7788d86bd60f6b6f7662609fc8a6c324\n-https://conda.anaconda.org/conda-forge/win-64/watchdog-2.2.1-py39hcbf5309_0.conda#4b560f27fa4bc16bc784a982e5c40639\n+https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.11.7-pyha770c72_0.conda#547d15e217a398578900787bf39ef01d\n+https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda#ed792aff3acb977d09c7013358097f83\n+https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.5.0-hd8ed1ab_0.conda#b3c594fde1a80a1fc3eb9cc4a5dfe392\n+https://conda.anaconda.org/conda-forge/win-64/watchdog-3.0.0-py39hcbf5309_0.conda#0b899317556b1ba289448e7362c7abde\n+https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.2.3-pyhd8ed1ab_0.conda#94dea682ba9d8e091e1f46872886fb1f\n https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.3-hcd874cb_1000.tar.bz2#76a765e735668a9922da3d58e746a7a6\n https://conda.anaconda.org/conda-forge/win-64/yarl-1.8.2-py39ha55989b_0.conda#e62d2a54b20aeeb2f4f6c85056fccb88\n https://conda.anaconda.org/conda-forge/noarch/zict-2.2.0-pyhd8ed1ab_0.tar.bz2#cd563d01df94e51f968645dbf3b310b0\n https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2#25e79f9a1133556671becbd65a170c78\n-https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.8.186-h93d3aa3_4.tar.bz2#b67b8f43c04fac75e8932d6023b22ef2\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.6.26-h1262f0c_1.conda#2090318f4a24eec3680efbd0395b1697\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.8.6-hd211e0c_12.conda#6eadc1f9b2b273f574cc24227a3390c6\n https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b\n https://conda.anaconda.org/conda-forge/win-64/brotlipy-0.7.0-py39ha55989b_1005.tar.bz2#5ffea1498e831c783af65e274d6c58f5\n https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hd694305_1014.tar.bz2#91f08ed9ff25a969ddd06237454dae0d\n https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f\n https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734\n-https://conda.anaconda.org/conda-forge/win-64/cryptography-38.0.4-py39h58e9bdb_0.conda#5bb18b28a87f948a58da5562835822e1\n-https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.2.0-pyhd8ed1ab_0.conda#156fb994a4e07091c4fad2c148589eb2\n+https://conda.anaconda.org/conda-forge/win-64/cryptography-38.0.4-py39hb6bd5e6_0.conda#b578d1ccc2d34452cced2bbf5c4bbe38\n https://conda.anaconda.org/conda-forge/noarch/dunamai-1.16.0-pyhd8ed1ab_0.conda#110d09bb5b0a0cfeebd384ad34758f54\n-https://conda.anaconda.org/conda-forge/win-64/fonttools-4.38.0-py39ha55989b_1.tar.bz2#391cedb9f2da5280ea060097d3c8652d\n+https://conda.anaconda.org/conda-forge/win-64/fonttools-4.39.2-py39ha55989b_0.conda#364c83a8b134b43a425779cc1285216f\n https://conda.anaconda.org/conda-forge/noarch/geoalchemy2-0.13.1-pyhd8ed1ab_0.conda#960bfe729d9e0453b415b08492235d89\n https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-hc256dc0_6.conda#d147f5504f1b29faa112aa72e9c59599\n https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2#6d8d61116031a3f5b1f32e7899785866\n@@ -285,124 +291,133 @@ https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.31-pyhd8ed1ab_0.cond\n https://conda.anaconda.org/conda-forge/win-64/google-crc32c-1.1.2-py39h0def995_4.tar.bz2#29dbf781cbc0dc87c188001163cf8391\n https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.57.1-pyhd8ed1ab_0.conda#cbf8b4569c1d2a0a6077d34a2d38333e\n https://conda.anaconda.org/conda-forge/noarch/griffe-0.25.5-pyhd8ed1ab_0.conda#bae2e1b21d42d8578b56d4a9f1f354fb\n-https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.2-pyha770c72_0.conda#987bfe1fc5c1eb5bf616eccae0c3b71d\n+https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.70.0-pyha770c72_0.conda#a1e728a4049af44ab9ae8fc641e79ae0\n https://conda.anaconda.org/conda-forge/noarch/importlib-resources-5.12.0-pyhd8ed1ab_0.conda#3544c818f0720c89eb16ae6940ab440b\n-https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.0.0-hd8ed1ab_0.conda#a67d43e1527a37199dd8db913366f68e\n+https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.1.0-hd8ed1ab_0.conda#90bab1d97fdb6bb40c8e00207bf222dc\n https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda#723268a468177cd44568eb8f794e0d80\n https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40\n https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.0-h61be68b_0.conda#59e439387b2ca19699b8ce1f077ebe0a\n-https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.8.1-nompi_h8c042bf_106.tar.bz2#90515eee0f7575b5fd296b6ba8d91dae\n+https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.1-nompi_hc41bf00_101.conda#cc79e202db8167cfc78ce4edfcf43c17\n https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.0.1-hfdcade0_23.conda#7661a11b21d23f6f21648a787045b825\n https://conda.anaconda.org/conda-forge/noarch/markdown-3.3.7-pyhd8ed1ab_0.tar.bz2#0a0bed31742342688a8570b3b8a50f36\n-https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.3-pyhd8ed1ab_0.conda#7a69c057183706bc7ba6ac7c9130566a\n+https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda#9eeb66a24c8f6d950eb55a9f1128da20\n https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2#2ff89a7337a9636029b4db9466e9f8e3\n https://conda.anaconda.org/conda-forge/win-64/pillow-9.4.0-py39hcebd2be_1.conda#7cf5bb13bc3823aa5159e00c7d1cb18f\n-https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.0.0-pyhd8ed1ab_0.conda#c34694044915d7f291ef257029f2e2af\n+https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.2.0-pyhd8ed1ab_0.conda#f10c2cf447ca96f12a326b83c75b8e33\n https://conda.anaconda.org/conda-forge/noarch/proto-plus-1.22.2-pyhd8ed1ab_0.conda#66f3f2b12d75e745fecf163d41bf3220\n https://conda.anaconda.org/conda-forge/win-64/pyproj-3.4.1-py39hc799f2e_1.conda#b4a6e56b9ba3cc0c0ccac4b8f8e33c2a\n https://conda.anaconda.org/conda-forge/noarch/pytest-benchmark-4.0.0-pyhd8ed1ab_0.tar.bz2#8c3168375e2ac100c17b133f4e2eb536\n https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2#c9e3f8bfdb9bfc34aa1836a6ed4b25d7\n+https://conda.anaconda.org/conda-forge/noarch/pytest-httpserver-1.0.5-pyhd8ed1ab_0.tar.bz2#e627fb0e11e55afe5ed444e81a778bea\n https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.10.0-pyhd8ed1ab_0.tar.bz2#db93caa9fe182f0cd20291aeb22f57ac\n https://conda.anaconda.org/conda-forge/noarch/pytest-profiling-1.7.0-py_1.tar.bz2#4dc5c2917451a73cc7532fc893e2daea\n https://conda.anaconda.org/conda-forge/noarch/pytest-randomly-3.12.0-pyhd8ed1ab_0.tar.bz2#c428aad352580a0d3264740a4dd5aeae\n https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.1-pyhd8ed1ab_0.tar.bz2#654827090748fa1cf4a375df7d99fcaf\n https://conda.anaconda.org/conda-forge/noarch/pytest-snapshot-0.9.0-pyhd8ed1ab_0.conda#fe1008ddb91eed708d93ac866ef80a7c\n-https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda#70ab87b96126f35d1e68de2ad9fb6423\n-https://conda.anaconda.org/conda-forge/noarch/rich-13.3.1-pyhd8ed1ab_1.conda#7f6cbdc439f3fe4c7a65fbeb4edad507\n-https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.1-pyhd8ed1ab_0.conda#cf622f971962bc7bc45b7da01eb41d55\n+https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.1-pyhd8ed1ab_0.conda#6fe4c2689d1b10fec1ee65819f0c4fd5\n+https://conda.anaconda.org/conda-forge/noarch/rich-13.3.3-pyhd8ed1ab_0.conda#f4ea5e85c4cdf52fe83f7d33526c70d2\n+https://conda.anaconda.org/conda-forge/noarch/sqlalchemy-views-0.3.2-pyhd8ed1ab_0.conda#8a0884a535e9ef935bbd977e575e8115\n https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af\n https://conda.anaconda.org/conda-forge/noarch/thrift_sasl-0.4.3-pyhd8ed1ab_2.tar.bz2#0340a97c4990a5bb5ecf1a27fef9f9c3\n-https://conda.anaconda.org/conda-forge/win-64/tiledb-2.13.2-h5689973_0.conda#931a7aedaa3ae50e4fca6982e3dda4ba\n-https://conda.anaconda.org/conda-forge/win-64/tzlocal-4.2-py39hcbf5309_2.tar.bz2#64067862b4171504c87309a285ab02c1\n+https://conda.anaconda.org/conda-forge/win-64/tiledb-2.13.2-h3132609_0.conda#07426c5e1301448738f66686548d41ff\n+https://conda.anaconda.org/conda-forge/win-64/tzlocal-4.3-py39hcbf5309_0.conda#de99cc0e710f804585b67d22f3b6bdf3\n+https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py39h1f6ef14_3.tar.bz2#56f8cce1c3df2ae1a861b0f12245c46f\n https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda#078979d33523cb477bd1916ce41aacc9\n-https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.7.2-hcd874cb_0.tar.bz2#fc83d322fcfa4ca466b8529c4a2d259c\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.4-hcd874cb_0.conda#ebdb02b455647e13fa697da89d9bdf84\n https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.8.4-py39ha55989b_0.conda#19de97190004a407011b98bdd9752b26\n+https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.2.7-h8113e7b_1.conda#4f322af22c19df5e1d2c4d77dd68fa7c\n https://conda.anaconda.org/conda-forge/win-64/black-23.1.0-py39hcbf5309_0.conda#9d6fe0ed7d1ebdba10acfadcffc3c388\n+https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.3.2-pyhd8ed1ab_0.conda#a3552db3a43810551cc93f9a4272380e\n https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.4.1-pyhd8ed1ab_0.conda#a0d4c902824b3188a61df18c1e8bbf5e\n-https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.46.3-pyhd8ed1ab_0.tar.bz2#296839af9c3367492bed586613ea9aa6\n+https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.52.0-pyhd8ed1ab_0.conda#e927804a2875873aa5673b47bd67606c\n https://conda.anaconda.org/conda-forge/win-64/harfbuzz-6.0.0-he256f1b_0.conda#15422d4ff786ed835173cfb8e6735679\n+https://conda.anaconda.org/conda-forge/noarch/identify-2.5.22-pyhd8ed1ab_0.conda#b8d16e273396a0115199a83769a39246\n https://conda.anaconda.org/conda-forge/noarch/impyla-0.18.0-pyhd8ed1ab_0.tar.bz2#851fd5b28a65b6be38db252706f43d6b\n-https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.2.0-py39hcbf5309_0.conda#1bf82794b668b8818ba7a96d46d948e9\n+https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.3.0-py39hcbf5309_0.conda#314e017a3e027d822d6fb34e1c3998b0\n https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-16_win64_mkl.tar.bz2#d2e6f4e86cee2b4e8c27ff6884ccdc61\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.4.2-pyhd8ed1ab_0.tar.bz2#521b5c1a67f0f35b11a981299b9e4b9b\n https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868\n https://conda.anaconda.org/conda-forge/noarch/poetry-dynamic-versioning-0.21.4-pyhd8ed1ab_0.conda#193b33386a14f40addd3ea12b7714548\n-https://conda.anaconda.org/conda-forge/win-64/poppler-23.01.0-h183ae7b_0.conda#e783b13dd5053ac11ecb77b0edc8eafc\n-https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda#4d79ec192e0bfd530a254006d123b9a6\n-https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.9.2-pyhd8ed1ab_0.conda#2af5fe494e07ea7d54e3c00e89df6ea8\n+https://conda.anaconda.org/conda-forge/win-64/poppler-23.03.0-h183ae7b_0.conda#0908fe0f0432ac13c3411822c68da81d\n+https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda#59ba1bf8ea558751a0d391249a248765\n+https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-9.10-pyhd8ed1ab_0.conda#45cb8e1efb6441b16ee3c0d19533a910\n https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2#fbfa0a180d48c800f922a10a114a8632\n https://conda.anaconda.org/conda-forge/noarch/pytest-clarity-1.0.1-pyhd8ed1ab_0.tar.bz2#76a7925032ca23744cf6c7a9fc0ef243\n-https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_1.tar.bz2#237e70b849a9440c2fce725b74412cd6\n+https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.21.0-pyhd8ed1ab_0.conda#cb9a711f7c9f3074fe522e5a34481e60\n+https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda#2aa695ac3c56193fd8d526e3b511e021\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.2.1-hcd874cb_2.tar.bz2#75788d7a4edf041cdd0a830f9bcaa3fb\n-https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh08f2357_0.conda#ad7524fdf746f7141b6c3dbffc2a9548\n-https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.0.3-pyhd8ed1ab_0.conda#c279256b9f2195976b0168585a5adc79\n+https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.19.8-he6d3b81_12.conda#10db42f355afa5c3c552391d1037a979\n+https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.1.0-pyhd8ed1ab_0.conda#ad497b55d36d20d4bbc6f95d8fb6eb6d\n https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-16_win64_mkl.tar.bz2#14c2fb03b2bb14dfa3806186ca91d557\n-https://conda.anaconda.org/conda-forge/win-64/libgdal-3.6.2-hb852d34_5.conda#86b77837f2f7ce8f5d63f9f071d520d5\n+https://conda.anaconda.org/conda-forge/win-64/libgdal-3.6.2-h221c0cb_9.conda#88c3283cd62901b1d33e51a15f8e981d\n https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-16_win64_mkl.tar.bz2#be2f9d5712a5bb05cd900005ee752a05\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-autorefs-0.4.1-pyhd8ed1ab_1.tar.bz2#49e4c30dd48438c2c71a71d40ecb384d\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-exclude-1.0.2-pyhd8ed1ab_0.tar.bz2#4a0af4399e9b3e4142f3dcabd35b7553\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-gen-files-0.4.0-pyhd8ed1ab_0.tar.bz2#ea350040131e9a179817f620a704411a\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.1.0-pyhd8ed1ab_0.tar.bz2#8a4d2c572d7d862a74f1083ae723ce98\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.0-pyhd8ed1ab_0.conda#bb62770212e6547d281ba03d03048a38\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-literate-nav-0.4.1-pyhd8ed1ab_0.tar.bz2#93e0ddb91f9fb615fa3f9cda31434447\n-https://conda.anaconda.org/conda-forge/noarch/nbformat-5.7.3-pyhd8ed1ab_0.conda#9714111cb6c7dbbc9a9f34de205c2f29\n-https://conda.anaconda.org/conda-forge/win-64/pango-1.50.13-hdffb7b3_0.conda#a2db50ec796a95c44f6fae10eb7ae39e\n-https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda#01f33ad2e0aaf6b5ba4add50dad5ad29\n+https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda#1ca43103a08456b19222d93fd9d119ac\n+https://conda.anaconda.org/conda-forge/win-64/pango-1.50.14-hdffb7b3_0.conda#a613f324e0f213238baec720d5c4ed00\n+https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.2.0-pyha770c72_0.conda#9a160452d1d88a9f10c373888f93586b\n+https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda#45b74f64d8808eda7e6f6e6b1d641fd2\n+https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.15-pyhd8ed1ab_0.conda#27db656619a55d727eaf5a6ece3d2fd6\n https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.13-hcd874cb_0.tar.bz2#4b31b88585f696327ba79fea3b41f973\n-https://conda.anaconda.org/conda-forge/noarch/distributed-2023.2.0-pyhd8ed1ab_0.conda#908e176bdb542b900f1c044bac70683b\n-https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.21.2-pyh025b116_0.conda#2f0ef6a37b24f898508d7a5026e32c02\n-https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.4-pyhcff175f_0.conda#bd45bc0e2e0af96e2a18dba3f70c71f3\n+https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.10.57-h64004b3_8.conda#1c1266961221f698336f672757c27ff2\n+https://conda.anaconda.org/conda-forge/noarch/distributed-2023.3.2-pyhd8ed1ab_0.conda#972a8221136c71c6954cf900ce020ed5\n+https://conda.anaconda.org/conda-forge/noarch/ipython-8.11.0-pyh08f2357_0.conda#260ed8a8cbb42c30f8b17a9daeb78353\n+https://conda.anaconda.org/conda-forge/noarch/jupytext-1.14.5-pyhcff175f_0.conda#b65bbb7f428ab4de2227827672ee9ba4\n https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-hf5a96e7_4.conda#07f0bd616b51dbd898cabf14646cdf5d\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-0.20.0-pyhd8ed1ab_0.conda#d83092b104a5879e97f9e4b6fa910564\n https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.2-pyhd8ed1ab_0.conda#6c7b0d75b66a220274bb5a28c23197f2\n https://conda.anaconda.org/conda-forge/win-64/numpy-1.24.2-py39h16ffa76_0.conda#22f75ab631b8da1b0e8224f0106f6e59\n https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda#11d178fc55199482ee48d6812ea83983\n-https://conda.anaconda.org/conda-forge/win-64/arrow-cpp-8.0.1-py39h4f3435e_2_cpu.tar.bz2#62c112f93455fcfbd16071d4caf2b2e2\n https://conda.anaconda.org/conda-forge/noarch/bokeh-2.4.3-pyhd8ed1ab_3.tar.bz2#e4c6e6d99add99cede5328d811cacb21\n https://conda.anaconda.org/conda-forge/win-64/contourpy-1.0.7-py39h1f6ef14_0.conda#a9349020a5d31dc6eed3580e35f5f45a\n https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0\n-https://conda.anaconda.org/conda-forge/win-64/gdal-3.6.2-py39h34c8707_5.conda#0b5a2cb8987d055dfb4299dc1335bf92\n-https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.1-pyh1a96a4e_0.conda#77235e975f133a69c63068c4b42478f2\n+https://conda.anaconda.org/conda-forge/win-64/gdal-3.6.2-py39h3be0312_9.conda#4d2688361e1a4b5a04162a1610efd2a9\n+https://conda.anaconda.org/conda-forge/noarch/google-auth-2.16.3-pyh1a96a4e_0.conda#98fe53dfc39c4f76cbf5e46737b68572\n https://conda.anaconda.org/conda-forge/win-64/graphviz-7.1.0-h51cb2cd_0.conda#2ab84ffaa7b47e0118c10e9e5d29bd37\n-https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.4-pyhd8ed1ab_0.conda#9dea5ab3cc33084f7a3680a98859731e\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.0.1-pyhd8ed1ab_0.conda#eb6166c4ba7da4250e7063753f01af43\n+https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.22.0-pyh025b116_0.conda#4d594953555f43826532ab5c5f7754f5\n+https://conda.anaconda.org/conda-forge/win-64/libarrow-11.0.0-h04c43f8_13_cpu.conda#0872ce0cc56d710e1467c996b3142cb4\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.1.4-pyhd8ed1ab_0.conda#c8676c031d982201c0ea7625a97132b2\n https://conda.anaconda.org/conda-forge/noarch/mkdocstrings-python-0.8.3-pyhd8ed1ab_0.conda#d7596b7fe476b9c66ef8d00e3505ab83\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.2.9-pyhd8ed1ab_0.conda#a9e1826152e79416db71c51b0d3af28c\n https://conda.anaconda.org/conda-forge/win-64/pandas-1.5.3-py39h2ba5b7c_0.conda#4af5e951fc5ffdf2da95e27a9685321b\n-https://conda.anaconda.org/conda-forge/win-64/polars-0.16.6-py39hf21820d_0.conda#b5d73f59f0171371725f63599484faf8\n-https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2#6429e1d1091c51f626b5dcfdd38bf429\n+https://conda.anaconda.org/conda-forge/win-64/polars-0.16.14-py39hf21820d_0.conda#8109e2e1acb4d6a25a26ea796f144b41\n+https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda#5936894aade8240c867d292aa0d980c6\n https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04\n https://conda.anaconda.org/conda-forge/win-64/shapely-1.8.5-py39h7c5f289_2.tar.bz2#4930a48fe26c07b57f04706b89182337\n-https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.321.0-pyhd8ed1ab_0.conda#d8343ded2050d4e799f73f9e6a46cf6a\n-https://conda.anaconda.org/conda-forge/noarch/altair-4.2.2-pyhd8ed1ab_0.conda#afca9c6a93335c55bbc84072011e86dc\n-https://conda.anaconda.org/conda-forge/noarch/dask-2023.2.0-pyhd8ed1ab_0.conda#c64c58bf99a686d8bdff8f9c4d33d615\n+https://conda.anaconda.org/conda-forge/noarch/trino-python-client-0.322.0-pyhd8ed1ab_0.conda#35b63aad915833b902a40050d6f800df\n+https://conda.anaconda.org/conda-forge/win-64/arrow-cpp-11.0.0-h57928b3_13_cpu.conda#7d096783fc97ffadf0961772786a67a3\n https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.1-py39hb5a1417_0.conda#03d2272a7863e8bba56765dc566b93c6\n https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.2-pyha770c72_0.conda#cf04d066b97dfe698f0d01ebf4af6163\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.11.0-pyhd8ed1ab_0.conda#72f60923cfbd91eec24e59c41454cecd\n https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.0.0-pyhd8ed1ab_0.conda#5ba9d95acb9add67f468ecdee6595c0f\n-https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.0-py39haf65ace_0.conda#f0b61601593071a404737549e29f6821\n+https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.0.0-pyhd8ed1ab_0.tar.bz2#325b4a93cf9567876d4b43d8fe18b2d0\n+https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.1-py39haf65ace_0.conda#67eab77ac976416272dd5c588815a878\n https://conda.anaconda.org/conda-forge/noarch/mkdocs-macros-plugin-0.7.0-pyhd8ed1ab_0.tar.bz2#bead57f41507066a63cb9cb62c837e9e\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.2.9-pyhd8ed1ab_0.conda#4a8dc94c7c2f3736dc4b91ec345d5b4b\n-https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n-https://conda.anaconda.org/conda-forge/noarch/pydeck-0.8.0-pyhd8ed1ab_0.tar.bz2#176b16002a5423169bf0f4b4c0ebecaf\n https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.1-pyh22cad53_0.tar.bz2#196447bc6fd769c3eb2d51de1aa866a5\n-https://conda.anaconda.org/conda-forge/win-64/scipy-1.10.0-py39hfbf2dce_2.conda#ac8c281db29912690f85f253b4b067fa\n+https://conda.anaconda.org/conda-forge/win-64/scipy-1.10.1-py39hfbf2dce_0.conda#d0a7cf42190668a87c931af32ffc37c2\n https://conda.anaconda.org/conda-forge/noarch/google-api-core-grpc-2.11.0-hd8ed1ab_0.conda#d6ee05e028217ccd803fd9e96e47ceae\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.2-pyhd8ed1ab_0.tar.bz2#7a590deea6b9b082c6a24e18c3c83dc9\n https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.2.9-pyhd8ed1ab_0.conda#523aaa3affb003ab0e68dbc24c9027f4\n-https://conda.anaconda.org/conda-forge/win-64/pyarrow-8.0.1-py39h59190f8_2_cpu.tar.bz2#d99242eafb42e644930aae8f6029ed16\n+https://conda.anaconda.org/conda-forge/noarch/parquet-cpp-1.5.1-2.tar.bz2#79a5f78c42817594ae016a7896521a97\n https://conda.anaconda.org/conda-forge/noarch/pydata-google-auth-1.7.0-pyhd8ed1ab_0.conda#c28635a73fe7088b263847cf9b6cb157\n-https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.2.1-py39h6fe01c0_0.conda#1968d249f89c219646d40274aa84ba58\n-https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n+https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.2.2-py39hb6325b5_1.conda#7d66569c2ece33d90fcb1a467e62a75e\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.7.0-pyhd8ed1ab_0.conda#35f5073d527a0633b4c1a6c5100a0f73\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-core-2.18.0-pyh1a96a4e_0.conda#25536317a3f02fde94312b4a759a9a1a\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.7.0-pyh1a96a4e_0.conda#b6073f255f6fb03c9248fef84715a74e\n https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda#db1aeaff6e248db425e049feffded7a9\n-https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.22.0-pyhd8ed1ab_0.tar.bz2#925b01483f102a0a1aefb74108ed97ca\n-https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n-https://conda.anaconda.org/conda-forge/win-64/python-duckdb-0.7.0-py39ha6ea889_1.conda#126d575f4fa7b7315df3e1b4af4faa0c\n-https://conda.anaconda.org/conda-forge/win-64/snowflake-connector-python-2.8.3-py39h52e2d10_0.conda#0c06cfdec5bbbbdc89ea58634bca0145\n-https://conda.anaconda.org/conda-forge/noarch/streamlit-1.18.1-pyhd8ed1ab_0.conda#a5a0237df302137e15fe7eb184515cf9\n-https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.6.8-pyhd8ed1ab_0.conda#945a4bd3cf6a97bbbc80a55c79895e64\n+https://conda.anaconda.org/conda-forge/noarch/mkdocs-jupyter-0.24.1-pyhd8ed1ab_0.conda#9329bf1412d932d3ed8adec2d512f47c\n+https://conda.anaconda.org/conda-forge/win-64/pyarrow-11.0.0-py39hdb2b141_13_cpu.conda#59c50a1353fa95d7763dda8b42834afe\n+https://conda.anaconda.org/conda-forge/noarch/dask-2023.3.2-pyhd8ed1ab_0.conda#f4560f760cb67f9a58aa5b595c08e431\n+https://conda.anaconda.org/conda-forge/noarch/db-dtypes-1.0.5-pyhd8ed1ab_1.conda#94d2fbc8ca24af42f13cb9adf8e8cc25\n https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.2-pyhd8ed1ab_0.conda#ee3b330f13297f5839d46e1ca3e57d56\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-core-3.1.0-pyhd8ed1ab_0.tar.bz2#b0816cdad1ed5f376831b1c36a74106b\n https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-storage-2.18.0-pyh1a96a4e_0.conda#1dd182ddd36fabde67c01459f60f2267\n-https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.6-pyhd8ed1ab_0.conda#d828af2140f74d780c0d6a5ee827295e\n-https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.1.0-pyhd8ed1ab_0.tar.bz2#1d66863d0c73e517fbcfd859e89d3b4d\n+https://conda.anaconda.org/conda-forge/noarch/pyspark-3.3.2-pyhd8ed1ab_0.conda#bc18e02597c140d3944b0d1908b34792\n+https://conda.anaconda.org/conda-forge/win-64/python-duckdb-0.7.1-py39ha6ea889_0.conda#0978014f3c2fc6b725698b482d45c1a1\n+https://conda.anaconda.org/conda-forge/win-64/snowflake-connector-python-3.0.2-py39h44145e9_0.conda#5a8468972a3b48434aebd076a7eef6e3\n+https://conda.anaconda.org/conda-forge/noarch/duckdb-engine-0.7.0-pyhd8ed1ab_0.conda#1355c16d9fbdf2b4af9f087b28c46966\n+https://conda.anaconda.org/conda-forge/noarch/google-cloud-bigquery-3.7.0-pyhd8ed1ab_0.conda#38d8e2d223209a47eff8f06da52fe01d\n+https://conda.anaconda.org/conda-forge/noarch/snowflake-sqlalchemy-1.4.7-pyhd8ed1ab_0.conda#79664774190bb9e59979443e6bdef509\n"}
test: avoid memtable in set ops testing to prevent unreliable snowflake random string generation
0a4cb1a48ef413b94e144ceb7b210b9f33723fc0
test
https://github.com/rohankumardubey/ibis/commit/0a4cb1a48ef413b94e144ceb7b210b9f33723fc0
avoid memtable in set ops testing to prevent unreliable snowflake random string generation
{"test_set_ops.py": "@@ -145,14 +145,14 @@ def test_empty_set_op(alltypes, method):\n \n \n @pytest.mark.parametrize(\"distinct\", [True, False])\[email protected]([\"dask\", \"pandas\"], raises=com.UnboundExpressionError)\n @pytest.mark.notimpl([\"datafusion\", \"polars\"], raises=com.OperationNotDefinedError)\n-def test_top_level_union(backend, con, distinct):\n- t1 = ibis.memtable(dict(a=[1]), name=\"t1\")\n- t2 = ibis.memtable(dict(a=[2]), name=\"t2\")\[email protected]([\"dask\"], raises=AssertionError, reason=\"results are incorrect\")\n+def test_top_level_union(backend, con, alltypes, distinct):\n+ t1 = alltypes.select(a=\"bigint_col\").filter(lambda t: t.a == 10).distinct()\n+ t2 = alltypes.select(a=\"bigint_col\").filter(lambda t: t.a == 20).distinct()\n expr = t1.union(t2, distinct=distinct).limit(2)\n result = con.execute(expr)\n- expected = pd.DataFrame({\"a\": [1, 2]})\n+ expected = pd.DataFrame({\"a\": [10, 20]})\n backend.assert_frame_equal(result.sort_values(\"a\").reset_index(drop=True), expected)\n \n \n@@ -162,21 +162,35 @@ def test_top_level_union(backend, con, distinct):\n True,\n param(\n False,\n- marks=pytest.mark.notimpl([\"bigquery\", \"mssql\", \"snowflake\", \"sqlite\"]),\n+ marks=pytest.mark.notimpl(\n+ [\"bigquery\", \"dask\", \"mssql\", \"pandas\", \"snowflake\", \"sqlite\"]\n+ ),\n ),\n ],\n )\n @pytest.mark.parametrize(\n (\"opname\", \"expected\"),\n- [(\"intersect\", pd.DataFrame({\"a\": [2]})), (\"difference\", pd.DataFrame({\"a\": [1]}))],\n+ [\n+ (\"intersect\", pd.DataFrame({\"a\": [20]})),\n+ (\"difference\", pd.DataFrame({\"a\": [10]})),\n+ ],\n ids=[\"intersect\", \"difference\"],\n )\[email protected]([\"dask\", \"pandas\"], raises=com.UnboundExpressionError)\n @pytest.mark.notimpl([\"datafusion\", \"polars\"], raises=com.OperationNotDefinedError)\n @pytest.mark.notyet([\"impala\"], reason=\"doesn't support intersection or difference\")\n-def test_top_level_intersect_difference(backend, con, distinct, opname, expected):\n- t1 = ibis.memtable(dict(a=[1, 2]), name=\"t1\")\n- t2 = ibis.memtable(dict(a=[2, 3]), name=\"t2\")\n+def test_top_level_intersect_difference(\n+ backend, con, alltypes, distinct, opname, expected\n+):\n+ t1 = (\n+ alltypes.select(a=\"bigint_col\")\n+ .filter(lambda t: (t.a == 10) | (t.a == 20))\n+ .distinct()\n+ )\n+ t2 = (\n+ alltypes.select(a=\"bigint_col\")\n+ .filter(lambda t: (t.a == 20) | (t.a == 30))\n+ .distinct()\n+ )\n op = getattr(t1, opname)\n expr = op(t2, distinct=distinct).limit(2)\n result = con.execute(expr)\n"}
feat(duckdb): support 0.8.0
ae9ae7d07deb3f8e5802365fedfc54c56d04af2e
feat
https://github.com/ibis-project/ibis/commit/ae9ae7d07deb3f8e5802365fedfc54c56d04af2e
support 0.8.0
{"__init__.py": "@@ -14,6 +14,7 @@ import duckdb\n import pyarrow as pa\n import sqlalchemy as sa\n import toolz\n+from packaging.version import parse as vparse\n \n import ibis.common.exceptions as exc\n import ibis.expr.datatypes as dt\n@@ -168,8 +169,10 @@ class Backend(BaseAlchemyBackend):\n @sa.event.listens_for(engine, \"connect\")\n def configure_connection(dbapi_connection, connection_record):\n dbapi_connection.execute(\"SET TimeZone = 'UTC'\")\n- # the progress bar causes kernel crashes in jupyterlab \u00af\\_(\u30c4)_/\u00af\n- dbapi_connection.execute(\"SET enable_progress_bar = false\")\n+ # the progress bar in duckdb <0.8.0 causes kernel crashes in\n+ # jupyterlab, fixed in https://github.com/duckdb/duckdb/pull/6831\n+ if vparse(duckdb.__version__) < vparse(\"0.8.0\"):\n+ dbapi_connection.execute(\"SET enable_progress_bar = false\")\n \n self._record_batch_readers_consumed = {}\n super().do_connect(engine)\n@@ -297,8 +300,6 @@ class Backend(BaseAlchemyBackend):\n Table\n An ibis table expression\n \"\"\"\n- from packaging.version import parse as vparse\n-\n if (version := vparse(self.version)) < vparse(\"0.7.0\"):\n raise exc.IbisError(\n f\"`read_json` requires duckdb >= 0.7.0, duckdb {version} is installed\"\n@@ -639,9 +640,16 @@ class Backend(BaseAlchemyBackend):\n query_ast = self.compiler.to_ast_ensure_limit(expr, limit, params=params)\n sql = query_ast.compile()\n \n+ # handle the argument name change in duckdb 0.8.0\n+ fetch_record_batch = (\n+ (lambda cur: cur.fetch_record_batch(rows_per_batch=chunk_size))\n+ if vparse(duckdb.__version__) >= vparse(\"0.8.0\")\n+ else (lambda cur: cur.fetch_record_batch(chunk_size=chunk_size))\n+ )\n+\n def batch_producer(con):\n with con.begin() as c, contextlib.closing(c.execute(sql)) as cur:\n- yield from cur.cursor.fetch_record_batch(chunk_size=chunk_size)\n+ yield from fetch_record_batch(cur.cursor)\n \n # batch_producer keeps the `self.con` member alive long enough to\n # exhaust the record batch reader, even if the backend or connection\n", "test_export.py": "@@ -1,6 +1,7 @@\n import pandas as pd\n import pytest\n import sqlalchemy as sa\n+from packaging.version import parse as vparse\n from pytest import param\n \n import ibis\n@@ -110,10 +111,26 @@ def test_scalar_to_pyarrow_scalar(limit, awards_players):\n \n \n @pytest.mark.notimpl([\"dask\", \"impala\", \"pyspark\", \"druid\"])\n-def test_table_to_pyarrow_table_schema(awards_players):\n+def test_table_to_pyarrow_table_schema(con, awards_players):\n table = awards_players.to_pyarrow()\n assert isinstance(table, pa.Table)\n- assert table.schema == awards_players.schema().to_pyarrow()\n+\n+ string = (\n+ pa.large_string()\n+ if con.name == \"duckdb\" and vparse(con.version) >= vparse(\"0.8.0\")\n+ else pa.string()\n+ )\n+ expected_schema = pa.schema(\n+ [\n+ pa.field(\"playerID\", string),\n+ pa.field(\"awardID\", string),\n+ pa.field(\"yearID\", pa.int64()),\n+ pa.field(\"lgID\", string),\n+ pa.field(\"tie\", string),\n+ pa.field(\"notes\", string),\n+ ]\n+ )\n+ assert table.schema == expected_schema\n \n \n @pytest.mark.notimpl([\"dask\", \"impala\", \"pyspark\"])\n@@ -121,7 +138,7 @@ def test_column_to_pyarrow_table_schema(awards_players):\n expr = awards_players.awardID\n array = expr.to_pyarrow()\n assert isinstance(array, (pa.ChunkedArray, pa.Array))\n- assert array.type == expr.type().to_pyarrow()\n+ assert array.type == pa.string() or array.type == pa.large_string()\n \n \n @pytest.mark.notimpl([\"pandas\", \"dask\", \"impala\", \"pyspark\", \"datafusion\", \"druid\"])\n@@ -234,7 +251,8 @@ def test_roundtrip_partitioned_parquet(tmp_path, con, backend, awards_players):\n # Reingest and compare schema\n reingest = con.read_parquet(outparquet / \"*\" / \"*\")\n \n- assert reingest.schema() == awards_players.schema()\n+ # avoid type comparison to appease duckdb: as of 0.8.0 it returns large_string\n+ assert reingest.schema().names == awards_players.schema().names\n \n backend.assert_frame_equal(awards_players.execute(), awards_players.execute())\n \n", "test_temporal.py": "@@ -916,6 +916,11 @@ timestamp_value = pd.Timestamp('2018-01-01 18:18:18')\n raises=TypeError,\n reason=\"unsupported operand type(s) for -: 'StringColumn' and 'TimestampScalar'\",\n ),\n+ pytest.mark.xfail_version(\n+ duckdb=[\"duckdb>=0.8.0\"],\n+ raises=AssertionError,\n+ reason=\"duckdb 0.8.0 returns DateOffset columns\",\n+ ),\n ],\n ),\n param(\n@@ -2073,6 +2078,11 @@ INTERVAL_BACKEND_TYPES = {\n reason=\"Driver doesn't know how to handle intervals\",\n raises=ClickhouseOperationalError,\n )\[email protected]_version(\n+ duckdb=[\"duckdb>=0.8.0\"],\n+ raises=AssertionError,\n+ reason=\"duckdb 0.8.0 returns DateOffset columns\",\n+)\n def test_interval_literal(con, backend):\n expr = ibis.interval(1, unit=\"s\")\n result = con.execute(expr)\n", "api.py": "@@ -913,7 +913,7 @@ def read_json(sources: str | Path | Sequence[str | Path], **kwargs: Any) -> ir.T\n \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n \u2503 a \u2503 b \u2503\n \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n- \u2502 int32 \u2502 string \u2502\n+ \u2502 int64 \u2502 string \u2502\n \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n \u2502 1 \u2502 d \u2502\n \u2502 2 \u2502 NULL \u2502\n", "generic.py": "@@ -1018,8 +1018,8 @@ class Column(Value, _FixedTextJupyterMixin):\n >>> t = ibis.examples.penguins.fetch()\n >>> t.body_mass_g.mode()\n 3800\n- >>> t.body_mass_g.mode(where=t.species == \"Gentoo\")\n- 5000\n+ >>> t.body_mass_g.mode(where=(t.species == \"Gentoo\") & (t.sex == \"male\"))\n+ 5550\n \"\"\"\n return ops.Mode(self, where).to_expr()\n \n", "pandas.py": "@@ -98,7 +98,12 @@ def convert_datetimetz_to_timestamp(_, out_dtype, column):\n \n @sch.convert.register(np.dtype, dt.Interval, pd.Series)\n def convert_any_to_interval(_, out_dtype, column):\n- return column.values.astype(out_dtype.to_pandas())\n+ values = column.values\n+ pandas_dtype = out_dtype.to_pandas()\n+ try:\n+ return values.astype(pandas_dtype)\n+ except ValueError: # can happen when `column` is DateOffsets\n+ return column\n \n \n @sch.convert.register(np.dtype, dt.String, pd.Series)\n", "poetry.lock": "@@ -901,59 +901,59 @@ files = [\n \n [[package]]\n name = \"duckdb\"\n-version = \"0.7.1\"\n+version = \"0.8.0\"\n description = \"DuckDB embedded database\"\n category = \"main\"\n optional = true\n python-versions = \"*\"\n files = [\n- {file = \"duckdb-0.7.1-cp310-cp310-macosx_10_9_universal2.whl\", hash = \"sha256:3e0170be6cc315c179169dfa3e06485ef7009ef8ce399cd2908f29105ef2c67b\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-macosx_10_9_x86_64.whl\", hash = \"sha256:6360d41023e726646507d5479ba60960989a09f04527b36abeef3643c61d8c48\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-macosx_11_0_arm64.whl\", hash = \"sha256:578c269d7aa27184e8d45421694f89deda3f41fe6bd2a8ce48b262b9fc975326\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:36aae9a923c9f78da1cf3fcf75873f62d32ea017d4cef7c706d16d3eca527ca2\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:630e0122a02f19bb1fafae00786350b2c31ae8422fce97c827bd3686e7c386af\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-musllinux_1_1_i686.whl\", hash = \"sha256:9b9ca2d294725e523ce207bc37f28787478ae6f7a223e2cf3a213a2d498596c3\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl\", hash = \"sha256:0bd89f388205b6c99b62650169efe9a02933555ee1d46ddf79fbd0fb9e62652b\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-win32.whl\", hash = \"sha256:a9e987565a268fd8da9f65e54621d28f39c13105b8aee34c96643074babe6d9c\"},\n- {file = \"duckdb-0.7.1-cp310-cp310-win_amd64.whl\", hash = \"sha256:5d986b5ad1307b069309f9707c0c5051323e29865aefa059eb6c3b22dc9751b6\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-macosx_10_9_universal2.whl\", hash = \"sha256:54606dfd24d7181d3098030ca6858f6be52f3ccbf42fff05f7587f2d9cdf4343\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-macosx_10_9_x86_64.whl\", hash = \"sha256:bd9367ae650b6605ffe00412183cf0edb688a5fc9fbb03ed757e8310e7ec3b6c\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-macosx_11_0_arm64.whl\", hash = \"sha256:aaf33aeb543c7816bd915cd10141866d54f92f698e1b5712de9d8b7076da19df\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:2e56b0329c38c0356b40449917bab6fce6ac27d356257b9a9da613d2a0f064e0\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:604b8b476d6cc6bf91625d8c2722ef9c50c402b3d64bc518c838d6c279e6d93b\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-musllinux_1_1_i686.whl\", hash = \"sha256:32a268508c6d7fdc99d5442736051de74c28a5166c4cc3dcbbf35d383299b941\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl\", hash = \"sha256:90794406fa2111414877ee9db154fef940911f3920c312c1cf69947621737c8d\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-win32.whl\", hash = \"sha256:bf20c5ee62cbbf10b39ebdfd70d454ce914e70545c7cb6cb78cb5befef96328a\"},\n- {file = \"duckdb-0.7.1-cp311-cp311-win_amd64.whl\", hash = \"sha256:bb2700785cab37cd1e7a76c4547a5ab0f8a7c28ad3f3e4d02a8fae52be223090\"},\n- {file = \"duckdb-0.7.1-cp36-cp36m-macosx_10_9_x86_64.whl\", hash = \"sha256:b09741cfa31388b8f9cdf5c5200e0995d55a5b54d2d1a75b54784e2f5c042f7f\"},\n- {file = \"duckdb-0.7.1-cp36-cp36m-win32.whl\", hash = \"sha256:766e6390f7ace7f1e322085c2ca5d0ad94767bde78a38d168253d2b0b4d5cd5c\"},\n- {file = \"duckdb-0.7.1-cp36-cp36m-win_amd64.whl\", hash = \"sha256:6a3f3315e2b553db3463f07324f62dfebaf3b97656a87558e59e2f1f816eaf15\"},\n- {file = \"duckdb-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl\", hash = \"sha256:278edb8c912d836b3b77fd1695887e1dbd736137c3912478af3608c9d7307bb0\"},\n- {file = \"duckdb-0.7.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:e189b558d10b58fe6ed85ce79f728e143eb4115db1e63147a44db613cd4dd0d9\"},\n- {file = \"duckdb-0.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:6b91ec3544ee4dc9e6abbdf2669475d5adedaaea51987c67acf161673e6b7443\"},\n- {file = \"duckdb-0.7.1-cp37-cp37m-musllinux_1_1_i686.whl\", hash = \"sha256:3fe3f3dbd62b76a773144eef31aa29794578c359da932e77fef04516535318ca\"},\n- {file = \"duckdb-0.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl\", hash = \"sha256:1e78c7f59325e99f0b3d9fe7c2bad4aaadf42d2c7711925cc26331d7647a91b2\"},\n- {file = \"duckdb-0.7.1-cp37-cp37m-win32.whl\", hash = \"sha256:bc2a12d9f4fc8ef2fd1022d610287c9fc9972ea06b7510fc87387f1fa256a390\"},\n- {file = \"duckdb-0.7.1-cp37-cp37m-win_amd64.whl\", hash = \"sha256:53e3db1bc0f445ee48b23cde47bfba08c7fa5a69976c740ec8cdf89543d2405d\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-macosx_10_9_universal2.whl\", hash = \"sha256:1247cc11bac17f2585d11681329806c86295e32242f84a10a604665e697d5c81\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl\", hash = \"sha256:5feaff16a012075b49dfa09d4cb24455938d6b0e06b08e1404ec00089119dba2\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-macosx_11_0_arm64.whl\", hash = \"sha256:b411a0c361eab9b26dcd0d0c7a0d1bc0ad6b214068555de7e946fbdd2619961a\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:c7c76d8694ecdb579241ecfeaf03c51d640b984dbbe8e1d9f919089ebf3cdea6\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:193b896eed44d8751a755ccf002a137630020af0bc3505affa21bf19fdc90df3\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-musllinux_1_1_i686.whl\", hash = \"sha256:7da132ee452c80a3784b8daffd86429fa698e1b0e3ecb84660db96d36c27ad55\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl\", hash = \"sha256:5fd08c97c3e8cb5bec3822cf78b966b489213dcaab24b25c05a99f7caf8db467\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-win32.whl\", hash = \"sha256:9cb956f94fa55c4782352dac7cc7572a58312bd7ce97332bb14591d6059f0ea4\"},\n- {file = \"duckdb-0.7.1-cp38-cp38-win_amd64.whl\", hash = \"sha256:289a5f65213e66d320ebcd51a94787e7097b9d1c3492d01a121a2c809812bf19\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-macosx_10_9_universal2.whl\", hash = \"sha256:8085ad58c9b5854ee3820804fa1797e6b3134429c1506c3faab3cb96e71b07e9\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-macosx_10_9_x86_64.whl\", hash = \"sha256:b47c19d1f2f662a5951fc6c5f6939d0d3b96689604b529cdcffd9afdcc95bff2\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-macosx_11_0_arm64.whl\", hash = \"sha256:6a611f598226fd634b7190f509cc6dd668132ffe436b0a6b43847b4b32b99e4a\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:6730f03b5b78f3943b752c90bdf37b62ae3ac52302282a942cc675825b4a8dc9\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:fe23e938d29cd8ea6953d77dc828b7f5b95a4dbc7cd7fe5bcc3531da8cec3dba\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-musllinux_1_1_i686.whl\", hash = \"sha256:feffe503c2e2a99480e1e5e15176f37796b3675e4dadad446fe7c2cc672aed3c\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl\", hash = \"sha256:72fceb06f5bf24ad6bb5974c60d397a7a7e61b3d847507a22276de076f3392e2\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-win32.whl\", hash = \"sha256:c4d5217437d20d05fe23317bbc161befa1f9363f3622887cd1d2f4719b407936\"},\n- {file = \"duckdb-0.7.1-cp39-cp39-win_amd64.whl\", hash = \"sha256:066885e1883464ce3b7d1fd844f9431227dcffe1ee39bfd2a05cd6d53f304557\"},\n- {file = \"duckdb-0.7.1.tar.gz\", hash = \"sha256:a7db6da0366b239ea1e4541fcc19556b286872f5015c9a54c2e347146e25a2ad\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-macosx_10_9_universal2.whl\", hash = \"sha256:6455aee00af30770c20f4a8c5e4347918cf59b578f49ee996a13807b12911871\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl\", hash = \"sha256:b8cf0622ae7f86d4ce72791f8928af4357a46824aadf1b6879c7936b3db65344\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-macosx_11_0_arm64.whl\", hash = \"sha256:6132e8183ca3ae08a593e43c97cb189794077dedd48546e27ce43bd6a51a9c33\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:fe29e5343fa2a95f2cde4519a4f4533f4fd551a48d2d9a8ab5220d40ebf53610\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:945165987ca87c097dc0e578dcf47a100cad77e1c29f5dd8443d53ce159dc22e\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-musllinux_1_1_i686.whl\", hash = \"sha256:673c60daf7ada1d9a8518286a6893ec45efabb64602954af5f3d98f42912fda6\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-musllinux_1_1_x86_64.whl\", hash = \"sha256:d5075fe1ff97ae62331ca5c61e3597e6e9f7682a6fdd418c23ba5c4873ed5cd1\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-win32.whl\", hash = \"sha256:001f5102f45d3d67f389fa8520046c8f55a99e2c6d43b8e68b38ea93261c5395\"},\n+ {file = \"duckdb-0.8.0-cp310-cp310-win_amd64.whl\", hash = \"sha256:cb00800f2e1e865584b13221e0121fce9341bb3a39a93e569d563eaed281f528\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-macosx_10_9_universal2.whl\", hash = \"sha256:b2707096d6df4321044fcde2c9f04da632d11a8be60957fd09d49a42fae71a29\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl\", hash = \"sha256:b27df1b70ae74d2c88efb5ffca8490954fdc678099509a9c4404ca30acc53426\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-macosx_11_0_arm64.whl\", hash = \"sha256:75a97c800271b52dd0f37696d074c50576dcb4b2750b6115932a98696a268070\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:804cac261a5e016506a6d67838a65d19b06a237f7949f1704f0e800eb708286a\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:c6b9abca7fa6713e1d031c18485343b4de99742c7e1b85c10718aa2f31a4e2c6\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-musllinux_1_1_i686.whl\", hash = \"sha256:51aa6d606d49072abcfeb3be209eb559ac94c1b5e70f58ac3adbb94aca9cd69f\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-musllinux_1_1_x86_64.whl\", hash = \"sha256:7c8dc769aaf2be0a1c57995ca657e5b92c1c56fc8437edb720ca6cab571adf14\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-win32.whl\", hash = \"sha256:c4207d18b42387c4a035846d8878eb967070198be8ac26fd77797ce320d1a400\"},\n+ {file = \"duckdb-0.8.0-cp311-cp311-win_amd64.whl\", hash = \"sha256:0c392257547c20794c3072fcbca99a49ef0a49974005d755e93893e2b4875267\"},\n+ {file = \"duckdb-0.8.0-cp36-cp36m-macosx_10_9_x86_64.whl\", hash = \"sha256:2832379e122020814dbe869af7b9ddf3c9f21474cf345531145b099c63ffe17e\"},\n+ {file = \"duckdb-0.8.0-cp36-cp36m-win32.whl\", hash = \"sha256:914896526f7caba86b170f2c4f17f11fd06540325deeb0000cb4fb24ec732966\"},\n+ {file = \"duckdb-0.8.0-cp36-cp36m-win_amd64.whl\", hash = \"sha256:022ebda86d0e3204cdc206e4af45aa9f0ae0668b34c2c68cf88e08355af4a372\"},\n+ {file = \"duckdb-0.8.0-cp37-cp37m-macosx_10_9_x86_64.whl\", hash = \"sha256:96a31c0f3f4ccbf0f5b18f94319f37691205d82f80aae48c6fe04860d743eb2c\"},\n+ {file = \"duckdb-0.8.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:a07c73c6e6a8cf4ce1a634625e0d1b17e5b817242a8a530d26ed84508dfbdc26\"},\n+ {file = \"duckdb-0.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:424acbd6e857531b06448d757d7c2557938dbddbff0632092090efbf413b4699\"},\n+ {file = \"duckdb-0.8.0-cp37-cp37m-musllinux_1_1_i686.whl\", hash = \"sha256:c83cfd2a868f1acb0692b9c3fd5ef1d7da8faa1348c6eabf421fbf5d8c2f3eb8\"},\n+ {file = \"duckdb-0.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl\", hash = \"sha256:5c6f6b2d8db56936f662c649539df81856b5a8cb769a31f9544edf18af2a11ff\"},\n+ {file = \"duckdb-0.8.0-cp37-cp37m-win32.whl\", hash = \"sha256:0bd6376b40a512172eaf4aa816813b1b9d68994292ca436ce626ccd5f77f8184\"},\n+ {file = \"duckdb-0.8.0-cp37-cp37m-win_amd64.whl\", hash = \"sha256:931221885bcf1e7dfce2400f11fd048a7beef566b775f1453bb1db89b828e810\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-macosx_10_9_universal2.whl\", hash = \"sha256:42e7853d963d68e72403ea208bcf806b0f28c7b44db0aa85ce49bb124d56c133\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl\", hash = \"sha256:fcc338399175be3d43366576600aef7d72e82114d415992a7a95aded98a0f3fd\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-macosx_11_0_arm64.whl\", hash = \"sha256:03dd08a4624d6b581a59f9f9dbfd34902416398d16795ad19f92361cf21fd9b5\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:0c7c24ea0c9d8563dbd5ad49ccb54b7a9a3c7b8c2833d35e5d32a08549cacea5\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:cb58f6505cc0f34b4e976154302d26563d2e5d16b206758daaa04b65e55d9dd8\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-musllinux_1_1_i686.whl\", hash = \"sha256:ef37ac7880100c4b3f913c8483a29a13f8289313b9a07df019fadfa8e7427544\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-musllinux_1_1_x86_64.whl\", hash = \"sha256:c2a4f5ee913ca8a6a069c78f8944b9934ffdbc71fd935f9576fdcea2a6f476f1\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-win32.whl\", hash = \"sha256:73831c6d7aefcb5f4072cd677b9efebecbf6c578946d21710791e10a1fc41b9a\"},\n+ {file = \"duckdb-0.8.0-cp38-cp38-win_amd64.whl\", hash = \"sha256:faa36d2854734364d234f37d7ef4f3d763b73cd6b0f799cbc2a0e3b7e2575450\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-macosx_10_9_universal2.whl\", hash = \"sha256:50a31ec237ed619e50f9ab79eb0ec5111eb9697d4475da6e0ab22c08495ce26b\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl\", hash = \"sha256:351abb4cc2d229d043920c4bc2a4c29ca31a79fef7d7ef8f6011cf4331f297bf\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-macosx_11_0_arm64.whl\", hash = \"sha256:568550a163aca6a787bef8313e358590254de3f4019025a8d68c3a61253fedc1\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:2b82617f0e7f9fc080eda217090d82b42d4fad083bc9f6d58dfda9cecb7e3b29\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:d01c9be34d272532b75e8faedda0ff77fa76d1034cde60b8f5768ae85680d6d3\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-musllinux_1_1_i686.whl\", hash = \"sha256:8549d6a6bf5f00c012b6916f605416226507e733a3ffc57451682afd6e674d1b\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-musllinux_1_1_x86_64.whl\", hash = \"sha256:8d145c6d51e55743c3ed1a74cffa109d9e72f82b07e203b436cfa453c925313a\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-win32.whl\", hash = \"sha256:f8610dfd21e90d7b04e8598b244bf3ad68599fd6ba0daad3428c03cbfd74dced\"},\n+ {file = \"duckdb-0.8.0-cp39-cp39-win_amd64.whl\", hash = \"sha256:d0f0f104d30418808bafbe9bccdcd238588a07bd246b3cff13842d60bfd8e8ba\"},\n+ {file = \"duckdb-0.8.0.tar.gz\", hash = \"sha256:c68da35bab5072a64ada2646a5b343da620ddc75a7a6e84aa4a1e0628a7ec18f\"},\n ]\n \n [[package]]\n", "requirements.txt": "@@ -34,7 +34,7 @@ defusedxml==0.7.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\n distlib==0.3.6 ; python_version >= \"3.8\" and python_version < \"4.0\"\n docutils==0.20.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\n duckdb-engine==0.7.2 ; python_version >= \"3.8\" and python_version < \"4.0\"\n-duckdb==0.7.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\n+duckdb==0.8.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\n dunamai==1.16.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\n exceptiongroup==1.1.1 ; python_version >= \"3.8\" and python_version < \"3.11\"\n execnet==1.9.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\n"}
feat(core): ensure database exists automatically (#3830)
f92da01101fbb212dec5d8648a51068da7122ea8
feat
https://github.com/mikro-orm/mikro-orm/commit/f92da01101fbb212dec5d8648a51068da7122ea8
ensure database exists automatically (#3830)
{"MikroORM.ts": "@@ -98,6 +98,11 @@ export class MikroORM<D extends IDatabaseDriver = IDatabaseDriver> {\n \n if (await this.isConnected()) {\n this.logger.log('info', `MikroORM successfully connected to database ${colors.green(db)}`);\n+\n+ if (this.config.get('ensureDatabase')) {\n+ await this.schema.ensureDatabase();\n+ }\n+\n await this.driver.init();\n } else {\n this.logger.error('info', `MikroORM failed to connect to database ${db}`);\n", "DatabaseDriver.ts": "@@ -95,7 +95,10 @@ export abstract class DatabaseDriver<C extends Connection> implements IDatabaseD\n \n async reconnect(): Promise<C> {\n await this.close(true);\n- return this.connect();\n+ await this.connect();\n+ await this.init();\n+\n+ return this.connection;\n }\n \n getConnection(type: ConnectionType = 'write'): C {\n", "IDatabaseDriver.ts": "@@ -18,7 +18,7 @@ export interface IDatabaseDriver<C extends Connection = Connection> {\n [EntityManagerType]: EntityManager<this>;\n readonly config: Configuration;\n \n- init(): void | Promise<void>;\n+ init(): Promise<void>;\n \n createEntityManager<D extends IDatabaseDriver = IDatabaseDriver>(useContext?: boolean): D[typeof EntityManagerType];\n \n", "Configuration.ts": "@@ -79,6 +79,7 @@ export class Configuration<D extends IDatabaseDriver = IDatabaseDriver> {\n forceEntityConstructor: false,\n forceUndefined: false,\n forceUtcTimezone: false,\n+ ensureDatabase: true,\n ensureIndexes: false,\n batchSize: 300,\n debug: false,\n@@ -515,6 +516,7 @@ export interface MikroORMOptions<D extends IDatabaseDriver = IDatabaseDriver> ex\n forceUndefined: boolean;\n forceUtcTimezone: boolean;\n timezone?: string;\n+ ensureDatabase: boolean;\n ensureIndexes: boolean;\n useBatchInserts?: boolean;\n useBatchUpdates?: boolean;\n", "MariaDbDriver.ts": "@@ -13,7 +13,9 @@ export class MariaDbDriver extends AbstractSqlDriver<MariaDbConnection, MariaDbP\n \n async init(): Promise<void> {\n await super.init();\n- this.autoIncrementIncrement = await this.platform.getAutoIncrementIncrement(this.connection);\n+ // the increment step may differ when running a cluster, see https://github.com/mikro-orm/mikro-orm/issues/3828\n+ const res = await this.connection.execute(`show variables like 'auto_increment_increment'`);\n+ this.autoIncrementIncrement = res[0]?.auto_increment_increment ? +res[0]?.auto_increment_increment : 1;\n }\n \n async nativeInsertMany<T extends object>(entityName: string, data: EntityDictionary<T>[], options: NativeInsertUpdateManyOptions<T> = {}): Promise<QueryResult<T>> {\n", "MariaDbPlatform.ts": "@@ -1,4 +1,3 @@\n-import type { AbstractSqlConnection } from '@mikro-orm/knex';\n import { AbstractSqlPlatform } from '@mikro-orm/knex';\n import { MariaDbSchemaHelper } from './MariaDbSchemaHelper';\n import { MariaDbExceptionConverter } from './MariaDbExceptionConverter';\n@@ -10,15 +9,6 @@ export class MariaDbPlatform extends AbstractSqlPlatform {\n protected readonly schemaHelper: MariaDbSchemaHelper = new MariaDbSchemaHelper(this);\n protected readonly exceptionConverter = new MariaDbExceptionConverter();\n \n- /**\n- * the increment may differ when running a cluster, see https://github.com/mikro-orm/mikro-orm/issues/3828\n- * @internal\n- */\n- async getAutoIncrementIncrement(con: AbstractSqlConnection) {\n- const res = await con.execute(`show variables like 'auto_increment_increment'`);\n- return res[0]?.auto_increment_increment ? +res[0]?.auto_increment_increment : 1;\n- }\n-\n getDefaultCharset(): string {\n return 'utf8mb4';\n }\n", "MySqlDriver.ts": "@@ -13,7 +13,9 @@ export class MySqlDriver extends AbstractSqlDriver<MySqlConnection, MySqlPlatfor\n \n async init(): Promise<void> {\n await super.init();\n- this.autoIncrementIncrement = await this.platform.getAutoIncrementIncrement(this.connection);\n+ // the increment step may differ when running a cluster, see https://github.com/mikro-orm/mikro-orm/issues/3828\n+ const res = await this.connection.execute(`show variables like 'auto_increment_increment'`);\n+ this.autoIncrementIncrement = res[0]?.auto_increment_increment ? +res[0]?.auto_increment_increment : 1;\n }\n \n async nativeInsertMany<T extends object>(entityName: string, data: EntityDictionary<T>[], options: NativeInsertUpdateManyOptions<T> = {}): Promise<QueryResult<T>> {\n", "MySqlPlatform.ts": "@@ -1,4 +1,3 @@\n-import type { AbstractSqlConnection } from '@mikro-orm/knex';\n import { AbstractSqlPlatform } from '@mikro-orm/knex';\n import { MySqlSchemaHelper } from './MySqlSchemaHelper';\n import { MySqlExceptionConverter } from './MySqlExceptionConverter';\n@@ -10,15 +9,6 @@ export class MySqlPlatform extends AbstractSqlPlatform {\n protected readonly schemaHelper: MySqlSchemaHelper = new MySqlSchemaHelper(this);\n protected readonly exceptionConverter = new MySqlExceptionConverter();\n \n- /**\n- * the increment may differ when running a cluster, see https://github.com/mikro-orm/mikro-orm/issues/3828\n- * @internal\n- */\n- async getAutoIncrementIncrement(con: AbstractSqlConnection): Promise<number> {\n- const res = await con.execute(`show variables like 'auto_increment_increment'`);\n- return res[0]?.auto_increment_increment ? +res[0]?.auto_increment_increment : 1;\n- }\n-\n getDefaultCharset(): string {\n return 'utf8mb4';\n }\n", "MikroORM.test.ts": "@@ -143,6 +143,7 @@ describe('MikroORM', () => {\n entities: [Test],\n driver: PostgreSqlDriver,\n dbName: 'mikro-orm-test',\n+ ensureDatabase: false,\n };\n \n await MikroORM.init({\n", "GH2930.test.ts": "@@ -84,6 +84,7 @@ describe('GH issue 2930', () => {\n entities: [A],\n dbName: 'mikro_orm_test_gh2930',\n driver: MySqlDriver,\n+ port: 3308,\n namingStrategy: class extends UnderscoreNamingStrategy {\n \n indexName(tableName: string, columns: string[], type: 'primary' | 'foreign' | 'unique' | 'index' | 'sequence' | 'check'): string {\n"}
ci: cancel in-progress dep update jobs when a new one arrives [skip ci]
c2300c94c6b7d1599387272b616e1d79e93723c7
ci
https://github.com/rohankumardubey/ibis/commit/c2300c94c6b7d1599387272b616e1d79e93723c7
cancel in-progress dep update jobs when a new one arrives [skip ci]
{"update-deps.yml": "@@ -4,6 +4,11 @@ on:\n # run every 24 hours at midnight\n - cron: \"0 */24 * * *\"\n workflow_dispatch:\n+\n+concurrency:\n+ group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}\n+ cancel-in-progress: true\n+\n jobs:\n generate_updates:\n runs-on: ubuntu-latest\n"}
docs: use png for OG image
9257beb646c9e433448e59f616a31456c678fae1
docs
https://github.com/mikro-orm/mikro-orm/commit/9257beb646c9e433448e59f616a31456c678fae1
use png for OG image
{"docusaurus.config.js": "@@ -95,7 +95,7 @@ module.exports = {\n },\n ],\n },\n- image: 'img/mikro-orm-og.svg',\n+ image: 'img/mikro-orm-og.png',\n footer: {\n style: 'dark',\n links: [\n", "mikro-orm-og.png": "Binary files /dev/null and b/docs/static/img/mikro-orm-og.png differ\n"}
fix(core): do not propagate removal to FK as PK Closes #2723
a0a19c22604586c1f3256aba7759c3204e1f02b0
fix
https://github.com/mikro-orm/mikro-orm/commit/a0a19c22604586c1f3256aba7759c3204e1f02b0
do not propagate removal to FK as PK Closes #2723
{"UnitOfWork.ts": "@@ -263,12 +263,13 @@ export class UnitOfWork {\n this.queuedActions.add(entity.__meta!.className);\n this.persistStack.delete(entity);\n \n- // remove from referencing relations\n+ // remove from referencing relations (but don't remove FKs as PKs)\n for (const prop of entity.__meta!.bidirectionalRelations) {\n const inverseProp = prop.mappedBy || prop.inversedBy;\n const relation = Reference.unwrapReference(entity[prop.name]);\n+ const prop2 = prop.targetMeta!.properties[inverseProp];\n \n- if (prop.reference === ReferenceType.ONE_TO_MANY && Utils.isCollection<AnyEntity>(relation)) {\n+ if (prop.reference === ReferenceType.ONE_TO_MANY && !prop2.primary && Utils.isCollection<AnyEntity>(relation)) {\n relation.getItems(false).forEach(item => delete item[inverseProp]);\n continue;\n }\n", "GH2723.test.ts": "@@ -0,0 +1,57 @@\n+import { Collection, Entity, IdentifiedReference, ManyToOne, MikroORM, OneToMany, PrimaryKey, PrimaryKeyType } from '@mikro-orm/core';\n+\n+@Entity()\n+export class Cat {\n+\n+ [PrimaryKeyType]: [string, string];\n+\n+ @PrimaryKey()\n+ name!: string;\n+\n+ // eslint-disable-next-line @typescript-eslint/no-use-before-define\n+ @ManyToOne(() => User, { primary: true, onDelete: 'CASCADE', wrappedReference: true })\n+ user!: IdentifiedReference<User>;\n+\n+}\n+\n+@Entity()\n+export class User {\n+\n+ @PrimaryKey()\n+ id!: string;\n+\n+ @OneToMany(() => Cat, c => c.user, { eager: true, orphanRemoval: true })\n+ cats = new Collection<Cat>(this);\n+\n+}\n+\n+describe('GH 2723', () => {\n+\n+ let orm: MikroORM;\n+\n+ beforeAll(async () => {\n+ orm = await MikroORM.init({\n+ dbName: ':memory:',\n+ type: 'sqlite',\n+ entities: [Cat, User],\n+ });\n+ await orm.getSchemaGenerator().createSchema();\n+ });\n+\n+ afterAll(() => orm.close(true));\n+\n+ test('FK as PK and orphan removal/cascading', async () => {\n+ const user = orm.em.create(User, { id: 'TestUser' }, { persist: true });\n+ orm.em.create(Cat, { name: 'TestCat', user }, { persist: true });\n+ await orm.em.flush();\n+ orm.em.clear();\n+\n+ const u = await orm.em.findOneOrFail(User, { id: 'TestUser' });\n+ orm.em.remove(u).flush();\n+\n+ const users = await orm.em.count(User, {});\n+ const cats = await orm.em.count(User, {});\n+ expect(users + cats).toBe(0);\n+ });\n+\n+});\n"}
feat(trino): support years and months in datetime arithmetic
1133973eef4192e18e52371e806fb1c6079347c9
feat
https://github.com/ibis-project/ibis/commit/1133973eef4192e18e52371e806fb1c6079347c9
support years and months in datetime arithmetic
{"trino.py": "@@ -442,17 +442,20 @@ class TrinoCompiler(SQLGlotCompiler):\n \n def _make_interval(self, arg, unit):\n short = unit.short\n- if short in (\"Y\", \"Q\", \"M\", \"W\"):\n+ if short in (\"Q\", \"W\"):\n raise com.UnsupportedOperationError(f\"Interval unit {unit!r} not supported\")\n+\n+ if isinstance(arg, sge.Literal):\n+ # force strings in interval literals because trino requires it\n+ arg.args[\"is_string\"] = True\n+ return super()._make_interval(arg, unit)\n+\n+ elif short in (\"Y\", \"M\"):\n+ return arg * super()._make_interval(sge.convert(\"1\"), unit)\n elif short in (\"D\", \"h\", \"m\", \"s\", \"ms\", \"us\"):\n- if isinstance(arg, sge.Literal):\n- # force strings in interval literals because trino requires it\n- arg.args[\"is_string\"] = True\n- return super()._make_interval(arg, unit)\n- else:\n- return self.f.parse_duration(\n- self.f.concat(self.cast(arg, dt.string), short.lower())\n- )\n+ return self.f.parse_duration(\n+ self.f.concat(self.cast(arg, dt.string), short.lower())\n+ )\n else:\n raise com.UnsupportedOperationError(\n f\"Interval unit {unit.name!r} not supported\"\n", "test_temporal.py": "@@ -504,11 +504,6 @@ def test_date_truncate(backend, alltypes, df, unit):\n raises=TypeError,\n reason=\"duration() got an unexpected keyword argument 'months'\",\n ),\n- pytest.mark.notyet(\n- [\"trino\"],\n- raises=com.UnsupportedOperationError,\n- reason=\"month not implemented\",\n- ),\n pytest.mark.notyet(\n [\"oracle\"],\n raises=OracleInterfaceError,\n@@ -624,7 +619,6 @@ def test_integer_to_interval_timestamp(\n param(\n \"Y\",\n marks=[\n- pytest.mark.notyet([\"trino\"], raises=com.UnsupportedOperationError),\n pytest.mark.notyet(\n [\"polars\"], raises=TypeError, reason=\"not supported by polars\"\n ),\n@@ -635,7 +629,6 @@ def test_integer_to_interval_timestamp(\n param(\n \"M\",\n marks=[\n- pytest.mark.notyet([\"trino\"], raises=com.UnsupportedOperationError),\n pytest.mark.notyet(\n [\"polars\"], raises=TypeError, reason=\"not supported by polars\"\n ),\n"}
fix: allow mailmaps to change the email by name and email (#1417)
ca054713f5aed6c66d55d612a58786eb0b439fb4
fix
https://github.com/Byron/gitoxide/commit/ca054713f5aed6c66d55d612a58786eb0b439fb4
allow mailmaps to change the email by name and email (#1417)
{"entry.rs": "@@ -25,8 +25,8 @@ impl<'a> Entry<'a> {\n /// Constructors indicating what kind of mapping is created.\n ///\n /// Only these combinations of values are valid.\n-#[allow(missing_docs)]\n impl<'a> Entry<'a> {\n+ /// An entry that changes the name by an email.\n pub fn change_name_by_email(proper_name: impl Into<&'a BStr>, commit_email: impl Into<&'a BStr>) -> Self {\n Entry {\n new_name: Some(proper_name.into()),\n@@ -34,6 +34,7 @@ impl<'a> Entry<'a> {\n ..Default::default()\n }\n }\n+ /// An entry that changes the email by an email.\n pub fn change_email_by_email(proper_email: impl Into<&'a BStr>, commit_email: impl Into<&'a BStr>) -> Self {\n Entry {\n new_email: Some(proper_email.into()),\n@@ -41,6 +42,7 @@ impl<'a> Entry<'a> {\n ..Default::default()\n }\n }\n+ /// An entry that changes the email by a name and email.\n pub fn change_email_by_name_and_email(\n proper_email: impl Into<&'a BStr>,\n commit_name: impl Into<&'a BStr>,\n@@ -53,6 +55,7 @@ impl<'a> Entry<'a> {\n ..Default::default()\n }\n }\n+ /// An entry that changes a name and the email by an email.\n pub fn change_name_and_email_by_email(\n proper_name: impl Into<&'a BStr>,\n proper_email: impl Into<&'a BStr>,\n@@ -65,7 +68,7 @@ impl<'a> Entry<'a> {\n ..Default::default()\n }\n }\n-\n+ /// An entry that changes a name and email by a name and email.\n pub fn change_name_and_email_by_name_and_email(\n proper_name: impl Into<&'a BStr>,\n proper_email: impl Into<&'a BStr>,\n", "parse.rs": "@@ -77,6 +77,9 @@ fn parse_line(line: &BStr, line_number: usize) -> Result<Entry<'_>, Error> {\n (Some(proper_name), Some(proper_email), Some(commit_name), Some(commit_email)) => {\n Entry::change_name_and_email_by_name_and_email(proper_name, proper_email, commit_name, commit_email)\n }\n+ (None, Some(proper_email), Some(commit_name), Some(commit_email)) => {\n+ Entry::change_email_by_name_and_email(proper_email, commit_name, commit_email)\n+ }\n _ => {\n return Err(Error::Malformed {\n line_number,\n"}
feat: add `external` (type decls dir)
88ccfb90783c9c21f3639e719f19451331f178f3
feat
https://github.com/erg-lang/erg/commit/88ccfb90783c9c21f3639e719f19451331f178f3
add `external` (type decls dir)
{"__init__.d.er": "@@ -0,0 +1 @@\n+.setup!: (*Obj,) => NoneType\n", "develop.d.er": "@@ -0,0 +1,3 @@\n+.Develop = 'develop': ClassType\n+.Develop.\n+ run!: (self: .Develop) => NoneType\n", "install.d.er": "@@ -0,0 +1,3 @@\n+.Install = 'install': ClassType\n+.Install.\n+ run!: (self: .Install) => NoneType\n"}
refactor(timestamps): remove `timezone` argument to `to_timestamp` API This argument was only supported in the BigQuery backend, whose functionality can be acheived by appending a `%Z` to the format string and appending the desired timezone to the column being parsed. BREAKING CHANGE: The `timezone` argument to `to_timestamp` is gone. This was only supported in the BigQuery backend. Append `%Z` to the format string and the desired time zone to the input column if necessary.
eb4762edc50a0df6718d6281f85fd0cc48107cbb
refactor
https://github.com/rohankumardubey/ibis/commit/eb4762edc50a0df6718d6281f85fd0cc48107cbb
remove `timezone` argument to `to_timestamp` API This argument was only supported in the BigQuery backend, whose functionality can be acheived by appending a `%Z` to the format string and appending the desired timezone to the column being parsed. BREAKING CHANGE: The `timezone` argument to `to_timestamp` is gone. This was only supported in the BigQuery backend. Append `%Z` to the format string and the desired time zone to the input column if necessary.
{".commitlintrc.json": "@@ -1,9 +1,9 @@\n {\n \"rules\": {\n \"body-leading-blank\": [1, \"always\"],\n- \"body-max-line-length\": [2, \"always\", 200],\n+ \"body-max-line-length\": [2, \"always\", 250],\n \"footer-leading-blank\": [1, \"always\"],\n- \"footer-max-line-length\": [2, \"always\", 200],\n+ \"footer-max-line-length\": [2, \"always\", 250],\n \"header-max-length\": [2, \"always\", 100],\n \"subject-case\": [\n 2,\n", "registry.py": "@@ -113,11 +113,6 @@ def _timestamp_diff(t, op):\n def _string_to_timestamp(t, op):\n sa_arg = t.translate(op.arg)\n sa_format_str = t.translate(op.format_str)\n- if (op.timezone is not None) and op.timezone.value != \"UTC\":\n- raise com.UnsupportedArgumentError(\n- 'MySQL backend only supports timezone UTC for converting'\n- 'string to timestamp.'\n- )\n return sa.func.str_to_date(sa_arg, sa_format_str)\n \n \n", "test_client.py": "@@ -308,7 +308,7 @@ def test_string_to_timestamp(client):\n datetime.datetime(year=2017, month=2, day=6, hour=5),\n tz=pytz.timezone(\"UTC\"),\n )\n- expr_tz = ibis.literal(\"2017-02-06\").to_timestamp(\"%F\", \"America/New_York\")\n+ expr_tz = ibis.literal(\"2017-02-06 America/New_York\").to_timestamp(\"%F %Z\")\n result_tz = client.execute(expr_tz)\n assert result_tz == timestamp_tz\n \n", "out.sql": "@@ -0,0 +1,2 @@\n+SELECT PARSE_TIMESTAMP('%F %Z', CONCAT(`date_string_col`, ' America/New_York')) AS `tmp`\n+FROM functional_alltypes\n\\ No newline at end of file\n", "test_compiler.py": "@@ -408,9 +408,13 @@ def test_identical_to(alltypes, snapshot):\n snapshot.assert_match(to_sql(expr), \"out.sql\")\n \n \[email protected](\"timezone\", [None, \"America/New_York\"])\n-def test_to_timestamp(alltypes, timezone, snapshot):\n- expr = alltypes.date_string_col.to_timestamp(\"%F\", timezone)\n+def test_to_timestamp_no_timezone(alltypes, snapshot):\n+ expr = alltypes.date_string_col.to_timestamp(\"%F\")\n+ snapshot.assert_match(to_sql(expr), \"out.sql\")\n+\n+\n+def test_to_timestamp_timezone(alltypes, snapshot):\n+ expr = (alltypes.date_string_col + \" America/New_York\").to_timestamp(\"%F %Z\")\n snapshot.assert_match(to_sql(expr), \"out.sql\")\n \n \n", "compiler.py": "@@ -1387,13 +1387,6 @@ def compile_timestamp_now(t, op, **kwargs):\n def compile_string_to_timestamp(t, op, **kwargs):\n src_column = t.translate(op.arg, **kwargs)\n fmt = op.format_str.value\n-\n- if op.timezone is not None and op.timezone.value != \"UTC\":\n- raise com.UnsupportedArgumentError(\n- 'PySpark backend only supports timezone UTC for converting string '\n- 'to timestamp.'\n- )\n-\n return F.to_timestamp(src_column, fmt)\n \n \n", "test_temporal.py": "@@ -10,7 +10,6 @@ import pytest\n from pytest import param\n \n import ibis\n-import ibis.common.exceptions as com\n import ibis.expr.datatypes as dt\n from ibis.backends.pandas.execution.temporal import day_name\n \n@@ -594,12 +593,11 @@ def test_integer_to_timestamp(backend, con, unit):\n \n \n @pytest.mark.parametrize(\n- 'fmt, timezone',\n+ \"fmt\",\n [\n # \"11/01/10\" - \"month/day/year\"\n param(\n '%m/%d/%y',\n- \"UTC\",\n id=\"mysql_format\",\n marks=pytest.mark.never(\n [\"pyspark\"], reason=\"datetime formatting style not supported\"\n@@ -607,10 +605,9 @@ def test_integer_to_timestamp(backend, con, unit):\n ),\n param(\n 'MM/dd/yy',\n- \"UTC\",\n id=\"pyspark_format\",\n marks=pytest.mark.never(\n- [\"bigquery\", \"mysql\", \"polars\"],\n+ [\"bigquery\", \"mysql\", \"polars\", \"duckdb\"],\n reason=\"datetime formatting style not supported\",\n ),\n ),\n@@ -621,7 +618,6 @@ def test_integer_to_timestamp(backend, con, unit):\n 'dask',\n 'pandas',\n 'postgres',\n- 'duckdb',\n 'clickhouse',\n 'sqlite',\n 'impala',\n@@ -631,11 +627,9 @@ def test_integer_to_timestamp(backend, con, unit):\n 'trino',\n ]\n )\n-def test_string_to_timestamp(alltypes, fmt, timezone):\n+def test_string_to_timestamp(alltypes, fmt):\n table = alltypes\n- result = table.mutate(\n- date=table.date_string_col.to_timestamp(fmt, timezone)\n- ).execute()\n+ result = table.mutate(date=table.date_string_col.to_timestamp(fmt)).execute()\n \n # TEST: do we get the same date out, that we put in?\n # format string assumes that we are using pandas' strftime\n@@ -643,32 +637,6 @@ def test_string_to_timestamp(alltypes, fmt, timezone):\n assert val.strftime(\"%m/%d/%y\") == result[\"date_string_col\"][i]\n \n \[email protected](\n- [\n- 'bigquery',\n- 'dask',\n- 'pandas',\n- 'postgres',\n- 'duckdb',\n- 'clickhouse',\n- 'sqlite',\n- 'impala',\n- 'datafusion',\n- 'snowflake',\n- 'polars',\n- 'mssql',\n- 'trino',\n- ]\n-)\n-def test_string_to_timestamp_tz_error(alltypes):\n- table = alltypes\n-\n- with pytest.raises(com.UnsupportedArgumentError):\n- table.mutate(\n- date=table.date_string_col.to_timestamp(\"%m/%d/%y\", 'non-utc-timezone')\n- ).compile()\n-\n-\n @pytest.mark.parametrize(\n ('date', 'expected_index', 'expected_day'),\n [\n", "temporal.py": "@@ -116,7 +116,6 @@ class Strftime(Value):\n class StringToTimestamp(Value):\n arg = rlz.string\n format_str = rlz.string\n- timezone = rlz.optional(rlz.string)\n \n output_shape = rlz.shape_like(\"arg\")\n output_dtype = dt.Timestamp(timezone='UTC')\n", "strings.py": "@@ -614,17 +614,13 @@ class StringValue(Value):\n \"\"\"\n return ops.StringReplace(self, pattern, replacement).to_expr()\n \n- def to_timestamp(\n- self, format_str: str, timezone: str | None = None\n- ) -> ir.TimestampValue:\n+ def to_timestamp(self, format_str: str) -> ir.TimestampValue:\n \"\"\"Parse a string and return a timestamp.\n \n Parameters\n ----------\n format_str\n Format string in `strptime` format\n- timezone\n- A string indicating the timezone. For example `'America/New_York'`\n \n Examples\n --------\n@@ -637,7 +633,7 @@ class StringValue(Value):\n TimestampValue\n Parsed timestamp value\n \"\"\"\n- return ops.StringToTimestamp(self, format_str, timezone).to_expr()\n+ return ops.StringToTimestamp(self, format_str).to_expr()\n \n def parse_url(\n self,\n"}
docs: fix inconsistent sidebar link height
aca50886bf831ef1daccb718ddd3365496feae80
docs
https://github.com/wzhiqing/cube/commit/aca50886bf831ef1daccb718ddd3365496feae80
fix inconsistent sidebar link height
{"_layout.scss": "@@ -477,6 +477,7 @@ span.group-header {\n font-size: 15px;\n line-height: 1.5rem;\n min-height: 1.25rem;\n+ height: auto;\n \n &:first-child {\n margin-top: 6px !important;\n"}
feat(duckdb): implement `RegexSplit`
229a1f4e5d5153dea95375c22fadf339cba3f8c6
feat
https://github.com/rohankumardubey/ibis/commit/229a1f4e5d5153dea95375c22fadf339cba3f8c6
implement `RegexSplit`
{"registry.py": "@@ -562,6 +562,7 @@ operation_registry.update(\n ops.GeoConvert: _geo_convert,\n # other ops\n ops.TimestampRange: fixed_arity(sa.func.range, 3),\n+ ops.RegexSplit: fixed_arity(sa.func.str_split_regex, 2),\n }\n )\n \n"}
build: preparing for next branch
58cb789d3505312e243ee4acff9e04708f7189d1
build
https://github.com/tsparticles/tsparticles/commit/58cb789d3505312e243ee4acff9e04708f7189d1
preparing for next branch
{"dependabot.yml": "@@ -1,7 +1,7 @@\n version: 2\n updates:\n - package-ecosystem: \"npm\"\n- target-branch: \"v1\"\n+ target-branch: \"next\"\n directory: \"/\" # Location of package manifests\n schedule:\n interval: \"daily\"\n", "nodejs.yml": "@@ -5,9 +5,9 @@ name: Node.js CI\n \n on:\n push:\n- branches: [ main, staging, dev, v1 ]\n+ branches: [ main, staging, dev, v1, next ]\n pull_request:\n- branches: [ main, staging, dev, v1 ]\n+ branches: [ main, staging, dev, v1, next ]\n \n jobs:\n build:\n", "renovate.json": "@@ -1,7 +1,8 @@\n {\n \"baseBranches\": [\n \"dev\",\n- \"v1\"\n+ \"v1\",\n+ \"next\"\n ],\n \"extends\": [\n \"config:base\",\n"}
docs(duckdb): add docstring for do_connect and backend markdown
ff3aa75d89c8045e84bd813001b609fc1de3cc4b
docs
https://github.com/ibis-project/ibis/commit/ff3aa75d89c8045e84bd813001b609fc1de3cc4b
add docstring for do_connect and backend markdown
{"DuckDB.md": "@@ -0,0 +1,19 @@\n+---\n+backend_name: DuckDB\n+backend_url: https://duckdb.org/\n+backend_module: duckdb\n+backend_param_style: a path to a DuckDB database\n+backend_connection_example: ibis.duckdb.connect(\"path/to/my.duckdb\")\n+development_only: true\n+---\n+\n+{% include 'backends/template.md' %}\n+\n+## API\n+\n+<!-- prettier-ignore-start -->\n+::: ibis.backends.duckdb.Backend\n+ rendering:\n+ heading_level: 3\n+\n+<!-- prettier-ignore-end -->\n", "template.md": "@@ -9,6 +9,8 @@\n \n {% if intro %}{{ intro }}{% endif %}\n \n+{% if not development_only %}\n+\n ## Install\n \n Install dependencies for the {{ backend_name }} backend:\n@@ -28,6 +30,13 @@ Install dependencies for the {{ backend_name }} backend:\n \n {% endfor %}\n \n+{% else %}\n+!!! info \"The {{ backend_name }} backend isn't released yet!\"\n+\n+ [Set up a development environment](/contribute/01_environment) to use this backend.\n+\n+{% endif %}\n+\n ## Connect\n \n <!-- prettier-ignore-start -->\n", "__init__.py": "@@ -35,7 +35,15 @@ class Backend(BaseAlchemyBackend):\n path: str | Path = \":memory:\",\n read_only: bool = False,\n ) -> None:\n- \"\"\"Create an Ibis client connected to a DuckDB database.\"\"\"\n+ \"\"\"Create an Ibis client connected to a DuckDB database.\n+\n+ Parameters\n+ ----------\n+ path\n+ Path to a duckdb database\n+ read_only\n+ Whether the database is read-only\n+ \"\"\"\n if path != \":memory:\":\n path = Path(path).absolute()\n super().do_connect(\n"}
fix: fixes #2329
1982442b6084f15ce40559c9391f097563728ff2
fix
https://github.com/tsparticles/tsparticles/commit/1982442b6084f15ce40559c9391f097563728ff2
fixes #2329
{"plugin.ts": "@@ -46,7 +46,11 @@ class Plugin implements IPlugin {\n \n export async function loadPolygonMaskPlugin(tsParticles: Main): Promise<void> {\n if (!isSsr() && !window.SVGPathSeg) {\n- await import(\"./pathseg\");\n+ await import(\n+ /* webpackChunkName: \"tsparticles-pathseg\" */\n+ /* webpackMode: \"lazy\" */\n+ \"./pathseg\"\n+ );\n }\n \n const plugin = new Plugin();\n", "tsconfig.browser.json": "@@ -2,6 +2,7 @@\n \"extends\": \"./tsconfig.base.json\",\n \"compilerOptions\": {\n \"module\": \"esnext\",\n- \"outDir\": \"./dist/browser\"\n+ \"outDir\": \"./dist/browser\",\n+ \"removeComments\": false\n }\n }\n", "webpack.config.js": "@@ -23,11 +23,6 @@ const getConfig = (entry) => {\n path: path.resolve(__dirname, \"dist\"),\n filename: \"[name].js\",\n libraryTarget: \"umd\",\n- /*library: {\n- root: \"tsparticles\",\n- commonjs: \"tsparticles\",\n- amd: \"tsparticles\",\n- },*/\n globalObject: \"this\"\n },\n resolve: {\n@@ -70,6 +65,22 @@ const getConfig = (entry) => {\n }\n },\n extractComments: false\n+ }),\n+ new TerserPlugin({\n+ exclude: /\\.min\\.js$/,\n+ terserOptions: {\n+ compress: false,\n+ format: {\n+ beautify: true,\n+ indent_level: 2,\n+ semicolons: false,\n+ comments: banner\n+ },\n+ mangle: false,\n+ keep_classnames: true,\n+ keep_fnames: true,\n+ },\n+ extractComments: false\n })\n ]\n }\n"}
fix(schema): improve diffing of default values for strings and dates Closes #2385
d4ac6385aa84208732f144e6bd9f68e8cf5c6697
fix
https://github.com/mikro-orm/mikro-orm/commit/d4ac6385aa84208732f144e6bd9f68e8cf5c6697
improve diffing of default values for strings and dates Closes #2385
{"DateTimeType.ts": "@@ -5,7 +5,7 @@ import type { EntityProperty } from '../typings';\n export class DateTimeType extends Type<Date, string> {\n \n getColumnType(prop: EntityProperty, platform: Platform): string {\n- return platform.getDateTimeTypeDeclarationSQL({ length: prop.length });\n+ return platform.getDateTimeTypeDeclarationSQL({ length: prop.length ?? 0 });\n }\n \n compareAsType(): string {\n", "SchemaComparator.ts": "@@ -1,5 +1,5 @@\n import type { Dictionary, EntityProperty } from '@mikro-orm/core';\n-import { BooleanType } from '@mikro-orm/core';\n+import { BooleanType, DateTimeType } from '@mikro-orm/core';\n import type { Column, ForeignKey, Index, SchemaDifference, TableDifference } from '../typings';\n import type { DatabaseSchema } from './DatabaseSchema';\n import type { DatabaseTable } from './DatabaseTable';\n@@ -440,6 +440,14 @@ export class SchemaComparator {\n return defaultValueFrom === defaultValueTo;\n }\n \n+ if (to.mappedType instanceof DateTimeType && from.default && to.default) {\n+ // normalize now/current_timestamp defaults, also remove `()` from the end of default expression\n+ const defaultValueFrom = from.default.toLowerCase().replace('current_timestamp', 'now').replace(/\\(\\)$/, '');\n+ const defaultValueTo = to.default.toLowerCase().replace('current_timestamp', 'now').replace(/\\(\\)$/, '');\n+\n+ return defaultValueFrom === defaultValueTo;\n+ }\n+\n if (from.default && to.default) {\n return from.default.toString().toLowerCase() === to.default.toString().toLowerCase();\n }\n", "MariaDbDriver.ts": "@@ -1,11 +1,12 @@\n-import type { AnyEntity, Configuration, EntityDictionary, NativeInsertUpdateManyOptions, QueryResult, Transaction } from '@mikro-orm/core';\n-import { AbstractSqlDriver, MySqlPlatform } from '@mikro-orm/mysql-base';\n+import type { AnyEntity, Configuration, EntityDictionary, NativeInsertUpdateManyOptions, QueryResult } from '@mikro-orm/core';\n+import { AbstractSqlDriver } from '@mikro-orm/mysql-base';\n import { MariaDbConnection } from './MariaDbConnection';\n+import { MariaDbPlatform } from './MariaDbPlatform';\n \n export class MariaDbDriver extends AbstractSqlDriver<MariaDbConnection> {\n \n constructor(config: Configuration) {\n- super(config, new MySqlPlatform(), MariaDbConnection, ['knex', 'mariadb']);\n+ super(config, new MariaDbPlatform(), MariaDbConnection, ['knex', 'mariadb']);\n }\n \n async nativeInsertMany<T extends AnyEntity<T>>(entityName: string, data: EntityDictionary<T>[], options: NativeInsertUpdateManyOptions<T> = {}): Promise<QueryResult<T>> {\n", "MariaDbPlatform.ts": "@@ -0,0 +1,8 @@\n+import { MySqlPlatform } from '@mikro-orm/mysql-base';\n+import { MariaDbSchemaHelper } from './MariaDbSchemaHelper';\n+\n+export class MariaDbPlatform extends MySqlPlatform {\n+\n+ protected readonly schemaHelper: MariaDbSchemaHelper = new MariaDbSchemaHelper(this);\n+\n+}\n", "MariaDbSchemaHelper.ts": "@@ -0,0 +1,10 @@\n+import type { Type } from '@mikro-orm/core';\n+import { MySqlSchemaHelper } from '@mikro-orm/mysql-base';\n+\n+export class MariaDbSchemaHelper extends MySqlSchemaHelper {\n+\n+ protected wrap(val: string | undefined, _type: Type<unknown>): string | undefined {\n+ return val;\n+ }\n+\n+}\n", "index.ts": "@@ -1,3 +1,5 @@\n export * from '@mikro-orm/mysql-base';\n export * from './MariaDbConnection';\n+export * from './MariaDbSchemaHelper';\n+export * from './MariaDbPlatform';\n export * from './MariaDbDriver';\n", "MySqlSchemaHelper.ts": "@@ -1,6 +1,7 @@\n import type { AbstractSqlConnection, Column, Index, Knex, TableDifference } from '@mikro-orm/knex';\n import { SchemaHelper } from '@mikro-orm/knex';\n-import type { Dictionary } from '@mikro-orm/core';\n+import type { Dictionary , Type } from '@mikro-orm/core';\n+import { StringType, TextType } from '@mikro-orm/core';\n \n export class MySqlSchemaHelper extends SchemaHelper {\n \n@@ -115,17 +116,19 @@ export class MySqlSchemaHelper extends SchemaHelper {\n ifnull(datetime_precision, character_maximum_length) length\n from information_schema.columns where table_schema = database() and table_name = '${tableName}'`;\n const columns = await connection.execute<any[]>(sql);\n+ const str = (val: string | number | undefined) => val != null ? '' + val : val;\n \n return columns.map(col => {\n const platform = connection.getPlatform();\n const mappedType = platform.getMappedType(col.column_type);\n+ const defaultValue = str(this.normalizeDefaultValue(col.column_default, col.length));\n return ({\n name: col.column_name,\n type: platform.isNumericColumn(mappedType) ? col.column_type.replace(/ unsigned$/, '').replace(/\\(\\d+\\)$/, '') : col.column_type,\n mappedType,\n unsigned: col.column_type.endsWith(' unsigned'),\n length: col.length,\n- default: col.column_default,\n+ default: this.wrap(defaultValue, mappedType),\n nullable: col.is_nullable === 'YES',\n primary: col.column_key === 'PRI',\n unique: col.column_key === 'UNI',\n@@ -153,4 +156,8 @@ export class MySqlSchemaHelper extends SchemaHelper {\n return super.normalizeDefaultValue(defaultValue, length, MySqlSchemaHelper.DEFAULT_VALUES);\n }\n \n+ protected wrap(val: string | undefined, type: Type<unknown>): string | undefined {\n+ return typeof val === 'string' && val.length > 0 && (type instanceof StringType || type instanceof TextType) ? this.platform.quoteValue(val) : val;\n+ }\n+\n }\n", "PostgreSqlPlatform.ts": "@@ -31,8 +31,8 @@ export class PostgreSqlPlatform extends AbstractSqlPlatform {\n return `current_timestamp(${length})`;\n }\n \n- getDateTimeTypeDeclarationSQL(column: { length?: number }): string {\n- return 'timestamptz' + (column.length != null ? `(${column.length})` : '');\n+ getDateTimeTypeDeclarationSQL(column: { length: number }): string {\n+ return `timestamptz(${column.length})`;\n }\n \n getTimeTypeDeclarationSQL(): string {\n", "SqlitePlatform.ts": "@@ -19,8 +19,8 @@ export class SqlitePlatform extends AbstractSqlPlatform {\n return super.getCurrentTimestampSQL(0);\n }\n \n- getDateTimeTypeDeclarationSQL(column: { length?: number }): string {\n- return super.getDateTimeTypeDeclarationSQL({ length: 0 });\n+ getDateTimeTypeDeclarationSQL(column: { length: number }): string {\n+ return 'datetime';\n }\n \n getEnumTypeDeclarationSQL(column: { items?: unknown[]; fieldNames: string[]; length?: number; unsigned?: boolean; autoincrement?: boolean }): string {\n", "EntityGenerator.test.ts.snap": "@@ -168,7 +168,7 @@ export class Book2 {\n @ManyToOne({ entity: () => Publisher2, onUpdateIntegrity: 'cascade', onDelete: 'cascade', nullable: true })\n publisher?: Publisher2;\n \n- @Property({ length: 255, nullable: true, defaultRaw: \\`lol\\` })\n+ @Property({ length: 255, nullable: true, default: 'lol' })\n foo?: string;\n \n }\n", "Migrator.test.ts.snap": "@@ -372,7 +372,7 @@ class Migration20191013214813 extends Migration {\n }\n \n async down() {\n- this.addSql('alter table \\`book2\\` add \\`foo\\` varchar(255) null default lol;');\n+ this.addSql('alter table \\`book2\\` add \\`foo\\` varchar(255) null default \\\\\\\\'lol\\\\\\\\';');\n \n this.addSql('alter table \\`test2\\` add \\`foo___bar\\` int unsigned null, add \\`foo___baz\\` int unsigned null;');\n this.addSql('alter table \\`test2\\` add constraint \\`test2_foo___bar_foreign\\` foreign key (\\`foo___bar\\`) references \\`foo_bar2\\` (\\`id\\`) on update cascade on delete set null;');\n@@ -385,7 +385,7 @@ exports.Migration20191013214813 = Migration20191013214813;\n \",\n \"diff\": Object {\n \"down\": Array [\n- \"alter table \\`book2\\` add \\`foo\\` varchar(255) null default lol;\",\n+ \"alter table \\`book2\\` add \\`foo\\` varchar(255) null default 'lol';\",\n \"\",\n \"alter table \\`test2\\` add \\`foo___bar\\` int unsigned null, add \\`foo___baz\\` int unsigned null;\",\n \"alter table \\`test2\\` add constraint \\`test2_foo___bar_foreign\\` foreign key (\\`foo___bar\\`) references \\`foo_bar2\\` (\\`id\\`) on update cascade on delete set null;\",\n@@ -425,7 +425,7 @@ export class Migration20191013214813 extends Migration {\n }\n \n async down(): Promise<void> {\n- this.addSql('alter table \\`book2\\` add \\`foo\\` varchar(255) null default lol;');\n+ this.addSql('alter table \\`book2\\` add \\`foo\\` varchar(255) null default \\\\\\\\'lol\\\\\\\\';');\n \n this.addSql('alter table \\`test2\\` add \\`foo___bar\\` int unsigned null, add \\`foo___baz\\` int unsigned null;');\n this.addSql('alter table \\`test2\\` add constraint \\`test2_foo___bar_foreign\\` foreign key (\\`foo___bar\\`) references \\`foo_bar2\\` (\\`id\\`) on update cascade on delete set null;');\n@@ -437,7 +437,7 @@ export class Migration20191013214813 extends Migration {\n \",\n \"diff\": Object {\n \"down\": Array [\n- \"alter table \\`book2\\` add \\`foo\\` varchar(255) null default lol;\",\n+ \"alter table \\`book2\\` add \\`foo\\` varchar(255) null default 'lol';\",\n \"\",\n \"alter table \\`test2\\` add \\`foo___bar\\` int unsigned null, add \\`foo___baz\\` int unsigned null;\",\n \"alter table \\`test2\\` add constraint \\`test2_foo___bar_foreign\\` foreign key (\\`foo___bar\\`) references \\`foo_bar2\\` (\\`id\\`) on update cascade on delete set null;\",\n@@ -477,7 +477,7 @@ export class Migration20191013214813 extends Migration {\n }\n \n async down(): Promise<void> {\n- this.addSql('alter table \\`book2\\` add \\`foo\\` varchar(255) null default lol;');\n+ this.addSql('alter table \\`book2\\` add \\`foo\\` varchar(255) null default \\\\\\\\'lol\\\\\\\\';');\n \n this.addSql('alter table \\`test2\\` add \\`foo___bar\\` int unsigned null, add \\`foo___baz\\` int unsigned null;');\n this.addSql('alter table \\`test2\\` add constraint \\`test2_foo___bar_foreign\\` foreign key (\\`foo___bar\\`) references \\`foo_bar2\\` (\\`id\\`) on update cascade on delete set null;');\n@@ -489,7 +489,7 @@ export class Migration20191013214813 extends Migration {\n \",\n \"diff\": Object {\n \"down\": Array [\n- \"alter table \\`book2\\` add \\`foo\\` varchar(255) null default lol;\",\n+ \"alter table \\`book2\\` add \\`foo\\` varchar(255) null default 'lol';\",\n \"\",\n \"alter table \\`test2\\` add \\`foo___bar\\` int unsigned null, add \\`foo___baz\\` int unsigned null;\",\n \"alter table \\`test2\\` add constraint \\`test2_foo___bar_foreign\\` foreign key (\\`foo___bar\\`) references \\`foo_bar2\\` (\\`id\\`) on update cascade on delete set null;\",\n", "GH491.test.ts": "", "diffing-default-values.test.ts.snap": "@@ -0,0 +1,40 @@\n+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`diffing default values (GH #2385) string defaults do not produce additional diffs [mariadb] 1`] = `\n+\"set names utf8mb4;\n+set foreign_key_checks = 0;\n+\n+create table \\`foo1\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`bar0\\` varchar(255) not null default 'test', \\`bar1\\` varchar(255) not null default 'test', \\`bar2\\` datetime not null default now(), \\`bar3\\` datetime(6) not null default now(6)) default character set utf8mb4 engine = InnoDB;\n+\n+set foreign_key_checks = 1;\n+\"\n+`;\n+\n+exports[`diffing default values (GH #2385) string defaults do not produce additional diffs [mysql] 1`] = `\n+\"set names utf8mb4;\n+set foreign_key_checks = 0;\n+\n+create table \\`foo1\\` (\\`id\\` int unsigned not null auto_increment primary key, \\`bar0\\` varchar(255) not null default 'test', \\`bar1\\` varchar(255) not null default 'test', \\`bar2\\` datetime not null default now(), \\`bar3\\` datetime(6) not null default now(6)) default character set utf8mb4 engine = InnoDB;\n+\n+set foreign_key_checks = 1;\n+\"\n+`;\n+\n+exports[`diffing default values (GH #2385) string defaults do not produce additional diffs [postgres] 1`] = `\n+\"set names 'utf8';\n+set session_replication_role = 'replica';\n+\n+create table \\\\\"foo2\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"bar0\\\\\" varchar(255) not null default 'test', \\\\\"bar1\\\\\" varchar(255) not null default 'test', \\\\\"bar2\\\\\" timestamptz(0) not null default now(), \\\\\"bar3\\\\\" timestamptz(6) not null default now());\n+\n+set session_replication_role = 'origin';\n+\"\n+`;\n+\n+exports[`diffing default values (GH #2385) string defaults do not produce additional diffs [sqlite] 1`] = `\n+\"pragma foreign_keys = off;\n+\n+create table \\`foo3\\` (\\`id\\` integer not null primary key autoincrement, \\`bar0\\` text not null default 'test', \\`bar1\\` text not null default 'test', \\`bar2\\` datetime not null default now);\n+\n+pragma foreign_keys = on;\n+\"\n+`;\n", "diffing-default-values.test.ts": "@@ -0,0 +1,104 @@\n+import { Entity, MikroORM, PrimaryKey, Property } from '@mikro-orm/core';\n+\n+export class Foo {\n+\n+ @PrimaryKey()\n+ id!: number;\n+\n+ @Property({ defaultRaw: \"'test'\" })\n+ bar0!: string;\n+\n+ @Property({ default: 'test' })\n+ bar1!: string;\n+\n+}\n+\n+@Entity()\n+export class Foo1 extends Foo {\n+\n+ @Property({ defaultRaw: 'now()' })\n+ bar2!: Date;\n+\n+ @Property({ defaultRaw: 'now(6)', length: 6 })\n+ bar3!: Date;\n+\n+}\n+\n+@Entity()\n+export class Foo2 extends Foo {\n+\n+ @Property({ defaultRaw: 'now()' })\n+ bar2!: Date;\n+\n+ @Property({ defaultRaw: 'now()', length: 6 })\n+ bar3!: Date;\n+\n+}\n+\n+@Entity()\n+export class Foo3 extends Foo {\n+\n+ @Property({ defaultRaw: 'now' })\n+ bar2!: Date;\n+\n+}\n+\n+describe('diffing default values (GH #2385)', () => {\n+\n+ test('string defaults do not produce additional diffs [mysql]', async () => {\n+ const orm = await MikroORM.init({\n+ entities: [Foo1],\n+ dbName: 'mikro_orm_test_gh_2385',\n+ type: 'mysql',\n+ port: 3307,\n+ });\n+ await orm.getSchemaGenerator().ensureDatabase();\n+ await orm.getSchemaGenerator().dropSchema();\n+ await orm.getSchemaGenerator().createSchema();\n+ expect(await orm.getSchemaGenerator().getCreateSchemaSQL()).toMatchSnapshot();\n+ await expect(orm.getSchemaGenerator().getUpdateSchemaSQL({ wrap: false })).resolves.toBe('');\n+ await orm.close();\n+ });\n+\n+ test('string defaults do not produce additional diffs [mariadb]', async () => {\n+ const orm = await MikroORM.init({\n+ entities: [Foo1],\n+ dbName: 'mikro_orm_test_gh_2385',\n+ type: 'mariadb',\n+ port: 3309,\n+ });\n+ await orm.getSchemaGenerator().ensureDatabase();\n+ await orm.getSchemaGenerator().dropSchema();\n+ await orm.getSchemaGenerator().createSchema();\n+ expect(await orm.getSchemaGenerator().getCreateSchemaSQL()).toMatchSnapshot();\n+ await expect(orm.getSchemaGenerator().getUpdateSchemaSQL({ wrap: false })).resolves.toBe('');\n+ await orm.close();\n+ });\n+\n+ test('string defaults do not produce additional diffs [postgres]', async () => {\n+ const orm = await MikroORM.init({\n+ entities: [Foo2],\n+ dbName: 'mikro_orm_test_gh_2385',\n+ type: 'postgresql',\n+ });\n+ await orm.getSchemaGenerator().ensureDatabase();\n+ await orm.getSchemaGenerator().dropSchema();\n+ await orm.getSchemaGenerator().createSchema();\n+ expect(await orm.getSchemaGenerator().getCreateSchemaSQL()).toMatchSnapshot();\n+ await expect(orm.getSchemaGenerator().getUpdateSchemaSQL({ wrap: false })).resolves.toBe('');\n+ await orm.close();\n+ });\n+\n+ test('string defaults do not produce additional diffs [sqlite]', async () => {\n+ const orm = await MikroORM.init({\n+ entities: [Foo3],\n+ dbName: ':memory:',\n+ type: 'sqlite',\n+ });\n+ await orm.getSchemaGenerator().createSchema();\n+ expect(await orm.getSchemaGenerator().getCreateSchemaSQL()).toMatchSnapshot();\n+ await expect(orm.getSchemaGenerator().getUpdateSchemaSQL({ wrap: false })).resolves.toBe('');\n+ await orm.close();\n+ });\n+\n+});\n", "GH529.test.ts.snap": "@@ -8,7 +8,7 @@ create table \\\\\"product\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"name\\\\\" varchar(255)\n \n create table \\\\\"customer\\\\\" (\\\\\"id\\\\\" serial primary key);\n \n-create table \\\\\"order\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"customer_id\\\\\" int not null, \\\\\"paid\\\\\" boolean not null, \\\\\"shipped\\\\\" boolean not null, \\\\\"created\\\\\" timestamptz not null);\n+create table \\\\\"order\\\\\" (\\\\\"id\\\\\" serial primary key, \\\\\"customer_id\\\\\" int not null, \\\\\"paid\\\\\" boolean not null, \\\\\"shipped\\\\\" boolean not null, \\\\\"created\\\\\" timestamptz(0) not null);\n \n create table \\\\\"order_item\\\\\" (\\\\\"order_id\\\\\" int not null, \\\\\"product_id\\\\\" int not null, \\\\\"amount\\\\\" int not null, \\\\\"offered_price\\\\\" int not null);\n alter table \\\\\"order_item\\\\\" add constraint \\\\\"order_item_pkey\\\\\" primary key (\\\\\"order_id\\\\\", \\\\\"product_id\\\\\");\n"}
ci: add quarto branch to docs builds
d85f770a86e6598ea3eeca61a466e906bbe94291
ci
https://github.com/rohankumardubey/ibis/commit/d85f770a86e6598ea3eeca61a466e906bbe94291
add quarto branch to docs builds
{"ibis-docs-lint.yml": "@@ -5,10 +5,12 @@ on:\n branches:\n - master\n - \"*.x.x\"\n+ - quarto\n pull_request:\n branches:\n - master\n - \"*.x.x\"\n+ - quarto\n merge_group:\n \n concurrency:\n@@ -184,10 +186,10 @@ jobs:\n runs-on: ubuntu-latest\n if: github.event_name == 'push'\n concurrency: docs-${{ github.repository }}\n- needs:\n- # wait on benchmarks to prevent a race condition when pushing to the\n- # gh-pages branch\n- - benchmarks\n+ # needs:\n+ # # wait on benchmarks to prevent a race condition when pushing to the\n+ # # gh-pages branch\n+ # - benchmarks\n steps:\n - name: install nix\n uses: cachix/install-nix-action@v23\n@@ -202,39 +204,20 @@ jobs:\n authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}\n extraPullNames: nix-community,poetry2nix\n \n- - name: Generate a GitHub token\n- uses: tibdex/github-app-token@v1\n- id: generate_token\n- with:\n- app_id: ${{ secrets.DOCS_BOT_APP_ID }}\n- private_key: ${{ secrets.DOCS_BOT_APP_PRIVATE_KEY }}\n+ # TODO(cpcloud): what to do with this?\n+ # - name: download benchmark data\n+ # uses: actions/download-artifact@v3\n+ # with:\n+ # name: bench\n+ # path: docs/bench\n \n- - name: checkout\n- uses: actions/checkout@v4\n- with:\n- fetch-depth: 0\n- token: ${{ steps.generate_token.outputs.token }}\n-\n- - name: Configure git info\n- run: |\n- set -euo pipefail\n-\n- git config user.name 'ibis-docs-bot[bot]'\n- git config user.email 'ibis-docs-bot[bot]@users.noreply.github.com'\n- git config http.postBuffer 157286400\n- git config http.version 'HTTP/1.1'\n-\n- - name: download benchmark data\n- uses: actions/download-artifact@v3\n- with:\n- name: bench\n- path: docs/bench\n+ - name: build api docs\n+ run: nix develop -c quartodoc build --verbose --config docs/_quarto.yml\n \n - name: build and push quarto docs\n- # TODO(cpcloud): get az working in the environment, right now this assumes it's installed on the runner\n- run: nix develop -c just docs-deploy\n+ run: nix develop --ignore-environment --keep NETLIFY_AUTH_TOKEN -c quarto publish --no-prompt --no-browser netlify\n env:\n- AZURE_STORAGE_SECRET: ${{ secrets.AZURE_STORAGE_SECRET }}\n+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}\n \n simulate_release:\n runs-on: ubuntu-latest\n"}
fix: assure passwords aren't returned in percent-encoded form.
530257f718d8abe0668eeeed072cc4fee9707cbb
fix
https://github.com/Byron/gitoxide/commit/530257f718d8abe0668eeeed072cc4fee9707cbb
assure passwords aren't returned in percent-encoded form.
{"Cargo.lock": "@@ -2792,6 +2792,7 @@ dependencies = [\n \"gix-features 0.39.1\",\n \"gix-path 0.10.13\",\n \"gix-testtools\",\n+ \"percent-encoding\",\n \"serde\",\n \"thiserror 2.0.3\",\n \"url\",\n", "Cargo.toml": "@@ -26,6 +26,7 @@ serde = { version = \"1.0.114\", optional = true, default-features = false, featur\n thiserror = \"2.0.0\"\n url = \"2.5.2\"\n bstr = { version = \"1.3.0\", default-features = false, features = [\"std\"] }\n+percent-encoding = \"2.3.1\"\n \n document-features = { version = \"0.2.0\", optional = true }\n \n", "impls.rs": "@@ -81,7 +81,7 @@ impl std::fmt::Display for Url {\n let mut storage;\n let to_print = if self.password.is_some() {\n storage = self.clone();\n- storage.password = Some(\"<redacted>\".into());\n+ storage.password = Some(\"redacted\".into());\n &storage\n } else {\n self\n", "lib.rs": "@@ -308,6 +308,10 @@ impl Url {\n }\n }\n \n+fn percent_encode(s: &str) -> Cow<'_, str> {\n+ percent_encoding::utf8_percent_encode(s, percent_encoding::NON_ALPHANUMERIC).into()\n+}\n+\n /// Serialization\n impl Url {\n /// Write this URL losslessly to `out`, ready to be parsed again.\n@@ -318,10 +322,10 @@ impl Url {\n }\n match (&self.user, &self.host) {\n (Some(user), Some(host)) => {\n- out.write_all(user.as_bytes())?;\n+ out.write_all(percent_encode(user).as_bytes())?;\n if let Some(password) = &self.password {\n out.write_all(b\":\")?;\n- out.write_all(password.as_bytes())?;\n+ out.write_all(percent_encode(password).as_bytes())?;\n }\n out.write_all(b\"@\")?;\n out.write_all(host.as_bytes())?;\n", "parse.rs": "@@ -1,8 +1,8 @@\n use std::convert::Infallible;\n \n-use bstr::{BStr, BString, ByteSlice};\n-\n use crate::Scheme;\n+use bstr::{BStr, BString, ByteSlice};\n+use percent_encoding::percent_decode_str;\n \n /// The error returned by [parse()](crate::parse()).\n #[derive(Debug, thiserror::Error)]\n@@ -115,13 +115,20 @@ pub(crate) fn url(input: &BStr, protocol_end: usize) -> Result<crate::Url, Error\n serialize_alternative_form: false,\n scheme,\n user: url_user(&url),\n- password: url.password().map(Into::into),\n+ password: url.password().map(percent_decoded_utf8),\n host: url.host_str().map(Into::into),\n port: url.port(),\n path: url.path().into(),\n })\n }\n \n+fn percent_decoded_utf8(s: &str) -> String {\n+ percent_decode_str(s)\n+ .decode_utf8()\n+ .expect(\"it's not possible to sneak illegal UTF8 into a URL\")\n+ .into_owned()\n+}\n+\n pub(crate) fn scp(input: &BStr, colon: usize) -> Result<crate::Url, Error> {\n let input = input_to_utf8(input, UrlKind::Scp)?;\n \n@@ -151,7 +158,7 @@ pub(crate) fn scp(input: &BStr, colon: usize) -> Result<crate::Url, Error> {\n serialize_alternative_form: true,\n scheme: url.scheme().into(),\n user: url_user(&url),\n- password: url.password().map(Into::into),\n+ password: url.password().map(percent_decoded_utf8),\n host: url.host_str().map(Into::into),\n port: url.port(),\n path: path.into(),\n@@ -162,7 +169,7 @@ fn url_user(url: &url::Url) -> Option<String> {\n if url.username().is_empty() && url.password().is_none() {\n None\n } else {\n- Some(url.username().into())\n+ Some(percent_decoded_utf8(url.username()))\n }\n }\n \n", "mod.rs": "@@ -174,7 +174,7 @@ fn display() {\n compare(\"/path/to/repo\", \"/path/to/repo\", \"same goes for simple paths\");\n compare(\n \"https://user:password@host/path\",\n- \"https://user:<redacted>@host/path\",\n- \"it visibly redacts passwords though\",\n+ \"https://user:redacted@host/path\",\n+ \"it visibly redacts passwords though, and it's still a valid URL\",\n );\n }\n", "http.rs": "@@ -39,6 +39,26 @@ fn username_and_password_and_port() -> crate::Result {\n )\n }\n \n+#[test]\n+fn username_and_password_with_spaces_and_port() -> crate::Result {\n+ let expected = gix_url::Url::from_parts(\n+ Scheme::Http,\n+ Some(\"user name\".into()),\n+ Some(\"password secret\".into()),\n+ Some(\"example.com\".into()),\n+ Some(8080),\n+ b\"/~byron/hello\".into(),\n+ false,\n+ )?;\n+ assert_url_roundtrip(\n+ \"http://user%20name:password%[email protected]:8080/~byron/hello\",\n+ expected.clone(),\n+ )?;\n+ assert_eq!(expected.user(), Some(\"user name\"));\n+ assert_eq!(expected.password(), Some(\"password secret\"));\n+ Ok(())\n+}\n+\n #[test]\n fn only_password() -> crate::Result {\n assert_url_roundtrip(\n"}
test(ts): fix useSpring tests
069d01836acb285004e5dc53d25f65cfeadfbf49
test
https://github.com/pmndrs/react-spring/commit/069d01836acb285004e5dc53d25f65cfeadfbf49
fix useSpring tests
{"useSpring.tsx": "@@ -88,7 +88,7 @@ test('imperative mode', () => {\n const [props, update, stop] = useSpring(() => ({\n foo: 0,\n onRest(values) {\n- assert(values, _ as UnknownProps); // FIXME: should be \"UnknownProps & { foo: number }\"\n+ assert(values, _ as Readonly<UnknownProps>); // FIXME: should be \"UnknownProps & { foo: number }\"\n },\n }));\n assert(props, _ as {\n@@ -108,10 +108,10 @@ test('imperative mode', () => {\n // With event listener\n update({\n onRest(values) {\n- assert(values, _ as {\n+ assert(values, _ as Readonly<{\n [key: string]: unknown;\n foo: number;\n- });\n+ }>);\n },\n });\n });\n@@ -143,10 +143,10 @@ test('imperative mode', () => {\n assert(anim, _ as any);\n },\n onFrame(values) {\n- assert(values, _ as UnknownProps); // FIXME: should be \"UnknownProps & { foo: number }\"\n+ assert(values, _ as Readonly<UnknownProps>); // FIXME: should be \"UnknownProps & { foo: number }\"\n },\n onRest(values) {\n- assert(values, _ as UnknownProps); // FIXME: should be \"UnknownProps & { foo: number }\"\n+ assert(values, _ as Readonly<UnknownProps>); // FIXME: should be \"UnknownProps & { foo: number }\"\n },\n }));\n assert(props, _ as {\n@@ -173,10 +173,10 @@ test('basic config', () => {\n assert(animation, _ as any);\n },\n onFrame(values) {\n- assert(values, _ as UnknownProps); // FIXME: should be \"UnknownProps & { width: number }\"\n+ assert(values, _ as Readonly<UnknownProps>); // FIXME: should be \"UnknownProps & { width: number }\"\n },\n onRest(values) {\n- assert(values, _ as UnknownProps); // FIXME: should be \"UnknownProps & { width: number }\"\n+ assert(values, _ as Readonly<UnknownProps>); // FIXME: should be \"UnknownProps & { width: number }\"\n },\n });\n assert(props, _ as {\n@@ -198,7 +198,7 @@ test('function as \"to\" prop', () => {\n delay: 1000,\n config: { duration: 1000 },\n onRest(values) {\n- assert(values, _ as UnknownProps); // FIXME: should be \"UnknownProps & { foo: number }\"\n+ assert(values, _ as Readonly<UnknownProps>); // FIXME: should be \"UnknownProps & { foo: number }\"\n },\n });\n },\n@@ -214,7 +214,7 @@ test('function as \"to\" prop', () => {\n assert(next, _ as SpringUpdateFn); // FIXME: should be \"SpringUpdateFn<{ foo: number }>\"\n await next({\n onRest(values) {\n- assert(values, _ as UnknownProps); // FIXME: should be \"UnknownProps & { foo: number }\"\n+ assert(values, _ as Readonly<UnknownProps>); // FIXME: should be \"UnknownProps & { foo: number }\"\n },\n });\n },\n"}
docs: remove old-style schema construction from examples and docstrings
1b1c33a29a34f83fcce8d87c7ad3fc491e4cdc8d
docs
https://github.com/rohankumardubey/ibis/commit/1b1c33a29a34f83fcce8d87c7ad3fc491e4cdc8d
remove old-style schema construction from examples and docstrings
{"impala.qmd": "@@ -304,9 +304,7 @@ You can use the `create_table` method either on a database or client\n object.\n \n ```python\n-schema = ibis.schema([('foo', 'string'),\n- ('year', 'int32'),\n- ('month', 'int16')])\n+schema = ibis.schema(dict(foo='string', year='int32', month='int16'))\n name = 'new_table'\n db.create_table(name, schema=schema)\n ```\n@@ -316,9 +314,7 @@ You can force a particular path with the `location` option.\n \n ```python\n from getpass import getuser\n-schema = ibis.schema([('foo', 'string'),\n- ('year', 'int32'),\n- ('month', 'int16')])\n+schema = ibis.schema(dict(foo='string', year='int32', month='int16'))\n name = 'new_table'\n location = '/home/{}/new-table-data'.format(getuser())\n db.create_table(name, schema=schema, location=location)\n@@ -353,9 +349,7 @@ To create an empty partitioned table, include a list of columns to be\n used as the partition keys.\n \n ```python\n-schema = ibis.schema([('foo', 'string'),\n- ('year', 'int32'),\n- ('month', 'int16')])\n+schema = ibis.schema(dict(foo='string', year='int32', month='int16'))\n name = 'new_table'\n db.create_table(name, schema=schema, partition=['year', 'month'])\n ```\n@@ -389,9 +383,7 @@ specific, you can either use a dict with the partition key names and\n values, or pass a list of the partition values:\n \n ```python\n-schema = ibis.schema([('foo', 'string'),\n- ('year', 'int32'),\n- ('month', 'int16')])\n+schema = ibis.schema(dict(foo='string', year='int32', month='int16'))\n name = 'new_table'\n db.create_table(name, schema=schema, partition=['year', 'month'])\n \n@@ -1028,12 +1020,8 @@ $ rm -rf csv-files/\n The schema here is pretty simple (see `ibis.schema` for more):\n \n ```python\n->>> schema = ibis.schema([('foo', 'string'),\n-... ('bar', 'double'),\n-... ('baz', 'int32')])\n-\n->>> table = con.delimited_file('/__ibis/ibis-testing-data/csv',\n-... schema)\n+>>> schema = ibis.schema(dict(foo='string', bar='double', baz='int32'))\n+>>> table = con.delimited_file('/__ibis/ibis-testing-data/csv', schema)\n >>> table.limit(10)\n foo bar baz\n 0 63IEbRheTh 0.679389 6\n", "aggcontext.py": "@@ -38,9 +38,7 @@ Ibis\n ::\n \n >>> import ibis\n- >>> schema = [\n- ... ('time', 'timestamp'), ('key', 'string'), ('value', 'double')\n- ... ]\n+ >>> schema = dict(time='timestamp', key='string', value='double')\n >>> t = ibis.table(schema, name='t')\n >>> t[t, t.value.sum().name('sum_value')].sum_value # quartodoc: +SKIP # doctest: +SKIP\n \n@@ -76,9 +74,7 @@ Ibis\n ::\n \n >>> import ibis\n- >>> schema = [\n- ... ('time', 'timestamp'), ('key', 'string'), ('value', 'double')\n- ... ]\n+ >>> schema = dict(time='timestamp', key='string', value='double')\n >>> t = ibis.table(schema, name='t')\n >>> t.value.sum().over(ibis.window(group_by=t.key)) # quartodoc: +SKIP # doctest: +SKIP\n \n@@ -120,9 +116,7 @@ Ibis\n ::\n \n >>> import ibis\n- >>> schema = [\n- ... ('time', 'timestamp'), ('key', 'string'), ('value', 'double')\n- ... ]\n+ >>> schema = dict(time='timestamp', key='string', value='double')\n >>> t = ibis.table(schema, name='t')\n >>> window = ibis.cumulative_window(order_by=t.time)\n >>> t.value.sum().over(window) # quartodoc: +SKIP # doctest: +SKIP\n@@ -160,9 +154,7 @@ Ibis\n ::\n \n >>> import ibis\n- >>> schema = [\n- ... ('time', 'timestamp'), ('key', 'string'), ('value', 'double')\n- ... ]\n+ >>> schema = dict(time='timestamp', key='string', value='double')\n >>> t = ibis.table(schema, name='t')\n >>> window = ibis.trailing_window(3, order_by=t.time)\n >>> t.value.sum().over(window) # quartodoc: +SKIP # doctest: +SKIP\n@@ -206,9 +198,7 @@ Ibis\n ::\n \n >>> import ibis\n- >>> schema = [\n- ... ('time', 'timestamp'), ('key', 'string'), ('value', 'double')\n- ... ]\n+ >>> schema = dict(time='timestamp', key='string', value='double')\n >>> t = ibis.table(schema, name='t')\n >>> window = ibis.trailing_window(2, order_by=t.time, group_by=t.key)\n >>> t.value.sum().over(window) # quartodoc: +SKIP # doctest: +SKIP\n"}
test(bench): add datatype parsing and repr benchmarks
b2ad60a869e11333a17760941cd691396e937fc3
test
https://github.com/ibis-project/ibis/commit/b2ad60a869e11333a17760941cd691396e937fc3
add datatype parsing and repr benchmarks
{"test_benchmarks.py": "@@ -461,3 +461,20 @@ def test_op_args(benchmark):\n t = ibis.table([(\"a\", \"int64\")])\n expr = t[[\"a\"]]\n benchmark(lambda op: op.args, expr.op())\n+\n+\n+def test_complex_datatype_parse(benchmark):\n+ type_str = \"array<struct<a: array<string>, b: map<string, array<int64>>>>\"\n+ benchmark(dt.parse_type, type_str)\n+\n+\[email protected](\"func\", [str, hash])\n+def test_complex_datatype_builtins(benchmark, func):\n+ datatype = dt.Array(\n+ dt.Struct.from_dict(\n+ dict(\n+ a=dt.Array(dt.string), b=dt.Map(dt.string, dt.Array(dt.int64))\n+ )\n+ )\n+ )\n+ benchmark(func, datatype)\n", "pyproject.toml": "@@ -146,7 +146,6 @@ addopts = [\n \"--ignore=dist-packages\",\n \"--strict-markers\",\n \"--benchmark-skip\",\n- \"--benchmark-autosave\",\n ]\n empty_parameter_set_mark = \"fail_at_collect\"\n norecursedirs = [\"site-packages\", \"dist-packages\"]\n"}
test(duckdb): isolate tests with `subprocess`
9f8d48522c8f3d479812a300e8523f969a0a99d2
test
https://github.com/ibis-project/ibis/commit/9f8d48522c8f3d479812a300e8523f969a0a99d2
isolate tests with `subprocess`
{"conftest.py": "@@ -4,7 +4,6 @@ import contextlib\n import importlib\n import importlib.metadata\n import platform\n-import sys\n from functools import lru_cache\n from pathlib import Path\n from typing import Any, TextIO\n@@ -731,13 +730,3 @@ def test_employee_data_2():\n )\n \n return df2\n-\n-\[email protected]\n-def no_duckdb(backend, monkeypatch):\n- monkeypatch.setitem(sys.modules, \"duckdb\", None)\n-\n-\[email protected]\n-def no_pyarrow(backend, monkeypatch):\n- monkeypatch.setitem(sys.modules, \"pyarrow\", None)\n", "test_client.py": "@@ -1,8 +1,9 @@\n-import contextlib\n import os\n import platform\n import re\n import string\n+import subprocess\n+import sys\n \n import numpy as np\n import pandas as pd\n@@ -753,36 +754,50 @@ def test_default_backend_option():\n ibis.options.default_backend = orig\n \n \n-def test_default_backend_no_duckdb(backend):\n- # backend is used to ensure that this test runs in CI in the setting\n- # where only the dependencies for a a given backend are installed\n+# backend is used to ensure that this test runs in CI in the setting\n+# where only the dependencies for a given backend are installed\[email protected](\"backend\")\n+def test_default_backend_no_duckdb():\n+ script = \"\"\"\\\n+import sys\n+sys.modules[\"duckdb\"] = None\n \n- # if duckdb is available then this test won't fail and so we skip it\n- with contextlib.suppress(ImportError):\n- import duckdb # noqa: F401\n+import ibis\n \n- pytest.skip(\"duckdb is installed; it will be used as the default backend\")\n+t = ibis.memtable([{'a': 1}, {'a': 2}, {'a': 3}])\n+t.execute()\"\"\"\n \n- df = pd.DataFrame({'a': [1, 2, 3]})\n- t = ibis.memtable(df)\n- expr = t.a.sum()\n+ args = [sys.executable, \"-c\", script]\n+ with pytest.raises(subprocess.CalledProcessError) as e:\n+ subprocess.check_output(args, stderr=subprocess.STDOUT, universal_newlines=True)\n+ assert (\n+ re.search(\n+ \"You have used a function that relies on the default backend\",\n+ e.value.output,\n+ )\n+ is not None\n+ )\n \n- # run this twice to ensure that we hit the optimizations in\n- # `_default_backend`\n- for _ in range(2):\n- with pytest.raises(\n- com.IbisError,\n- match=\"You have used a function that relies on the default backend\",\n- ):\n- expr.execute()\n-\n-\n-def test_default_backend_no_duckdb_read_parquet(no_duckdb):\n- with pytest.raises(\n- com.IbisError,\n- match=\"You have used a function that relies on the default backend\",\n- ):\n- ibis.read_parquet(\"foo.parquet\")\n+\[email protected](\"backend\")\n+def test_default_backend_no_duckdb_read_parquet():\n+ script = \"\"\"\\\n+import sys\n+sys.modules[\"duckdb\"] = None\n+\n+import ibis\n+ibis.read_parquet(\"foo.parquet\")\"\"\"\n+\n+ args = [sys.executable, \"-c\", script]\n+ with pytest.raises(subprocess.CalledProcessError) as e:\n+ subprocess.check_output(args, stderr=subprocess.STDOUT, universal_newlines=True)\n+ assert (\n+ re.search(\n+ \"You have used a function that relies on the default backend\",\n+ e.value.output,\n+ )\n+ is not None\n+ )\n \n \n @pytest.mark.duckdb\n", "test_export.py": "@@ -1,3 +1,5 @@\n+import sys\n+\n import pytest\n from pytest import param\n \n@@ -150,6 +152,7 @@ def test_to_pyarrow_batches_borked_types(batting):\n assert len(batch) == 42\n \n \n-def test_no_pyarrow_message(awards_players, no_pyarrow):\n+def test_no_pyarrow_message(awards_players, monkeypatch):\n+ monkeypatch.setitem(sys.modules, \"pyarrow\", None)\n with pytest.raises(ModuleNotFoundError, match=\"requires `pyarrow` but\"):\n awards_players.to_pyarrow()\n", "ibis.nix": "@@ -47,7 +47,8 @@ poetry2nix.mkPoetryApplication rec {\n # the sqlite-on-duckdb tests try to download the sqlite_scanner extension\n # but network usage is not allowed in the sandbox\n pytest -m '${markers}' --numprocesses \"$NIX_BUILD_CORES\" --dist loadgroup \\\n- --deselect=ibis/backends/duckdb/tests/test_register.py::test_{read,register}_sqlite \\\n+ --deselect=ibis/backends/duckdb/tests/test_register.py::test_read_sqlite \\\n+ --deselect=ibis/backends/duckdb/tests/test_register.py::test_register_sqlite\n \n runHook postCheck\n '';\n"}
feat(udf): support inputs without type annotations
99e531d677419716d98843e4001a1d25d0578c8d
feat
https://github.com/rohankumardubey/ibis/commit/99e531d677419716d98843e4001a1d25d0578c8d
support inputs without type annotations
{"html.json": "@@ -1,7 +1,7 @@\n {\n- \"hash\": \"00ca1d2fd32eb50acb2ec2e7c7a57931\",\n+ \"hash\": \"be8b66093ec8d56b7575bd43ecdab2e9\",\n \"result\": {\n- \"markdown\": \"---\\nfreeze: auto\\ntitle: Reference built-in functions\\n---\\n\\n\\n\\n\\n\\nFunctions that aren't exposed in ibis directly can be accessed using the\\n`@ibis.udf.scalar.builtin` decorator.\\n\\n::: {.callout-tip}\\n## [Ibis APIs](../../reference/index.qmd) may already exist for your function.\\n\\nBuiltin scalar UDFs are designed to be an escape hatch when Ibis doesn't have\\na defined API for a built-in database function.\\n\\nSee [the reference documentation](../../reference/index.qmd) for existing APIs.\\n:::\\n\\n## DuckDB\\n\\nIbis doesn't directly expose many of the DuckDB [text similarity\\nfunctions](https://duckdb.org/docs/sql/functions/char.html#text-similarity-functions).\\nLet's expose the `mismatches` API.\\n\\n\\n::: {#e0a2087b .cell execution_count=1}\\n``` {.python .cell-code}\\nfrom ibis import udf\\n\\[email protected]\\ndef mismatches(left: str, right: str) -> int:\\n ...\\n```\\n:::\\n\\n\\nThe [`...`](https://docs.python.org/3/library/constants.html#Ellipsis) is\\na visual indicator that the function definition is unknown to Ibis.\\n\\n::: {.callout-note collapse=\\\"true\\\"}\\n## Ibis does not do anything with the function body.\\n\\nIbis will not inspect the function body or otherwise inspect it. Any code you\\nwrite in the function body **will be ignored**.\\n:::\\n\\nWe can now call this function on any ibis expression:\\n\\n::: {#7c520722 .cell execution_count=2}\\n``` {.python .cell-code}\\nimport ibis\\n\\ncon = ibis.duckdb.connect() # <1>\\n```\\n:::\\n\\n\\n1. Connect to an in-memory DuckDB database\\n\\n::: {#ac393010 .cell execution_count=3}\\n``` {.python .cell-code}\\nexpr = mismatches(\\\"duck\\\", \\\"luck\\\")\\ncon.execute(expr)\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=3}\\n```\\n1\\n```\\n:::\\n:::\\n\\n\\nLike any other ibis expression you can inspect the SQL:\\n\\n::: {#bb4d8344 .cell execution_count=4}\\n``` {.python .cell-code}\\nimport ibis\\n\\nibis.to_sql(expr, dialect=\\\"duckdb\\\") # <1>\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=4}\\n```sql\\nSELECT\\n MISMATCHES('duck', 'luck') AS \\\"mismatches('duck', 'luck')\\\"\\n```\\n:::\\n:::\\n\\n\\n1. The `dialect` keyword argument must be passed, because we constructed\\n a literal expression which has no backend attached.\\n\\nBecause built-in UDFs are ultimately Ibis expressions, they compose with the\\nrest of the library:\\n\\n::: {#1b20bc7e .cell execution_count=5}\\n``` {.python .cell-code}\\nibis.options.interactive = True\\n\\[email protected]\\ndef jaro_winkler_similarity(a: str, b: str) -> float:\\n ...\\n\\npkgs = ibis.read_parquet(\\n \\\"https://storage.googleapis.com/ibis-tutorial-data/pypi/packages.parquet\\\"\\n)\\npandas_ish = pkgs[jaro_winkler_similarity(pkgs.name, \\\"pandas\\\") >= 0.9]\\npandas_ish\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=5}\\n```{=html}\\n<pre style=\\\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\\\">\u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\\n\u2503<span style=\\\"font-weight: bold\\\"> name </span>\u2503<span style=\\\"font-weight: bold\\\"> version </span>\u2503<span style=\\\"font-weight: bold\\\"> requires_python </span>\u2503<span style=\\\"font-weight: bold\\\"> yanked </span>\u2503<span style=\\\"font-weight: bold\\\"> has_binary_wheel </span>\u2503<span style=\\\"font-weight: bold\\\"> has_vulnerabilities </span>\u2503<span style=\\\"font-weight: bold\\\"> first_uploaded_at </span>\u2503<span style=\\\"font-weight: bold\\\"> last_uploaded_at </span>\u2503<span style=\\\"font-weight: bold\\\"> recorded_at </span>\u2503<span style=\\\"font-weight: bold\\\"> downloads </span>\u2503<span style=\\\"font-weight: bold\\\"> scorecard_overall </span>\u2503<span style=\\\"font-weight: bold\\\"> in_google_assured_oss </span>\u2503\\n\u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\\n\u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">string</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">string</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">string</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">timestamp</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">timestamp</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">timestamp</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">int32</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">float64</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502\\n\u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">bcpandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">2.4.1 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.8.1 </span> \u2502 True \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 06:14:22</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 06:14:23</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 14:31:41</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">espandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">1.0.4 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2018-12-22 20:52:30</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2018-12-22 20:52:30</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 14:58:47</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">3.6</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">fpandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.5 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2020-03-09 02:35:31</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2020-03-09 02:35:31</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:04:23</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">h3pandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.2.4 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.6 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-03-19 17:58:16</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-03-19 17:58:16</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:10:06</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">ipandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.1 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-29 18:46:12</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-29 18:46:12</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:15:34</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">3.6</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">kpandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.1 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.6,&lt;4.0 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-02 18:00:29</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-02 18:00:31</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:20:21</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">mpandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.2.1 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-07-03 16:21:21</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-07-03 16:21:23</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:30:35</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">mtpandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">1.14.202306141807</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.6 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-06-14 18:08:01</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-06-14 18:08:01</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:31:04</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">4.6</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">mypandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.1.6 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.10 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-10-24 21:01:10</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-10-24 21:01:12</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:32:04</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">paandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.3 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-11-24 06:11:15</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-11-24 06:11:17</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:43:31</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502\\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\\n</pre>\\n```\\n:::\\n:::\\n\\n\\nLet's count the results:\\n\\n::: {#71158865 .cell execution_count=6}\\n``` {.python .cell-code}\\npandas_ish.count()\\n```\\n\\n::: {.cell-output .cell-output-display}\\n```{=html}\\n<pre style=\\\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\\\"></pre>\\n```\\n:::\\n\\n::: {.cell-output .cell-output-display execution_count=6}\\n\\n::: {.ansi-escaped-output}\\n```{=html}\\n<pre><span class=\\\"ansi-cyan-fg ansi-bold\\\">178</span></pre>\\n```\\n:::\\n\\n:::\\n:::\\n\\n\\nThere are a good number of packages that look similar to `pandas`!\\n\\n## Snowflake\\n\\nSimilarly we can expose Snowflake's\\n[`jarowinkler_similarity`](https://docs.snowflake.com/en/sql-reference/functions/jarowinkler_similarity)\\nfunction.\\n\\nLet's alias it to `jw_sim` to illustrate some more of the Ibis `udf` API:\\n\\n::: {#cec67864 .cell execution_count=7}\\n``` {.python .cell-code}\\[email protected](name=\\\"jarowinkler_similarity\\\") # <1>\\ndef jw_sim(left: str, right: str) -> float:\\n ...\\n```\\n:::\\n\\n\\n1. `target` is the name of the function in the backend. This argument is\\n required in this because the function name is different than the name of the\\n function in ibis.\\n\\n\\nNow let's connect to Snowflake and call our `jw_sim` function:\\n\\n::: {#48696c70 .cell execution_count=8}\\n``` {.python .cell-code}\\nimport os\\n\\ncon = ibis.connect(os.environ[\\\"SNOWFLAKE_URL\\\"])\\n```\\n:::\\n\\n\\n::: {#b8951169 .cell execution_count=9}\\n``` {.python .cell-code}\\nexpr = jw_sim(\\\"snow\\\", \\\"shoe\\\")\\ncon.execute(expr)\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=9}\\n```\\n66.0\\n```\\n:::\\n:::\\n\\n\\nAnd let's take a look at the SQL\\n\\n::: {#1073bf2e .cell execution_count=10}\\n``` {.python .cell-code}\\nibis.to_sql(expr, dialect=\\\"snowflake\\\")\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=10}\\n```sql\\nSELECT\\n JAROWINKLER_SIMILARITY('snow', 'shoe') AS \\\"jarowinkler_similarity('snow', 'shoe')\\\"\\n```\\n:::\\n:::\\n\\n\\n\",\n+ \"markdown\": \"---\\nfreeze: auto\\ntitle: Reference built-in functions\\n---\\n\\n\\n\\n\\n\\nFunctions that aren't exposed in ibis directly can be accessed using the\\n`@ibis.udf.scalar.builtin` decorator.\\n\\n::: {.callout-tip}\\n## [Ibis APIs](../../reference/index.qmd) may already exist for your function.\\n\\nBuiltin scalar UDFs are designed to be an escape hatch when Ibis doesn't have\\na defined API for a built-in database function.\\n\\nSee [the reference documentation](../../reference/index.qmd) for existing APIs.\\n:::\\n\\n## DuckDB\\n\\nIbis doesn't directly expose many of the DuckDB [text similarity\\nfunctions](https://duckdb.org/docs/sql/functions/char.html#text-similarity-functions).\\nLet's expose the `mismatches` API.\\n\\n\\n::: {#a0ce6764 .cell execution_count=1}\\n``` {.python .cell-code}\\nfrom ibis import udf\\n\\[email protected]\\ndef mismatches(left: str, right: str) -> int:\\n ...\\n```\\n:::\\n\\n\\nThe [`...`](https://docs.python.org/3/library/constants.html#Ellipsis) is\\na visual indicator that the function definition is unknown to Ibis.\\n\\n::: {.callout-note collapse=\\\"true\\\"}\\n## Ibis does not do anything with the function body.\\n\\nIbis will not inspect the function body or otherwise inspect it. Any code you\\nwrite in the function body **will be ignored**.\\n:::\\n\\nWe can now call this function on any ibis expression:\\n\\n::: {#271b9916 .cell execution_count=2}\\n``` {.python .cell-code}\\nimport ibis\\n\\ncon = ibis.duckdb.connect() # <1>\\n```\\n:::\\n\\n\\n1. Connect to an in-memory DuckDB database\\n\\n::: {#ef527d30 .cell execution_count=3}\\n``` {.python .cell-code}\\nexpr = mismatches(\\\"duck\\\", \\\"luck\\\")\\ncon.execute(expr)\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=17}\\n```\\n1\\n```\\n:::\\n:::\\n\\n\\nLike any other ibis expression you can inspect the SQL:\\n\\n::: {#69b10261 .cell execution_count=4}\\n``` {.python .cell-code}\\nimport ibis\\n\\nibis.to_sql(expr, dialect=\\\"duckdb\\\") # <1>\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=18}\\n```sql\\nSELECT\\n MISMATCHES('duck', 'luck') AS \\\"mismatches('duck', 'luck')\\\"\\n```\\n:::\\n:::\\n\\n\\n1. The `dialect` keyword argument must be passed, because we constructed\\n a literal expression which has no backend attached.\\n\\nBecause built-in UDFs are ultimately Ibis expressions, they compose with the\\nrest of the library:\\n\\n::: {#d44d4edc .cell execution_count=5}\\n``` {.python .cell-code}\\nibis.options.interactive = True\\n\\[email protected]\\ndef jaro_winkler_similarity(a: str, b: str) -> float:\\n ...\\n\\npkgs = ibis.read_parquet(\\n \\\"https://storage.googleapis.com/ibis-tutorial-data/pypi/packages.parquet\\\"\\n)\\npandas_ish = pkgs[jaro_winkler_similarity(pkgs.name, \\\"pandas\\\") >= 0.9]\\npandas_ish\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=19}\\n```{=html}\\n<pre style=\\\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\\\">\u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\\n\u2503<span style=\\\"font-weight: bold\\\"> name </span>\u2503<span style=\\\"font-weight: bold\\\"> version </span>\u2503<span style=\\\"font-weight: bold\\\"> requires_python </span>\u2503<span style=\\\"font-weight: bold\\\"> yanked </span>\u2503<span style=\\\"font-weight: bold\\\"> has_binary_wheel </span>\u2503<span style=\\\"font-weight: bold\\\"> has_vulnerabilities </span>\u2503<span style=\\\"font-weight: bold\\\"> first_uploaded_at </span>\u2503<span style=\\\"font-weight: bold\\\"> last_uploaded_at </span>\u2503<span style=\\\"font-weight: bold\\\"> recorded_at </span>\u2503<span style=\\\"font-weight: bold\\\"> downloads </span>\u2503<span style=\\\"font-weight: bold\\\"> scorecard_overall </span>\u2503<span style=\\\"font-weight: bold\\\"> in_google_assured_oss </span>\u2503\\n\u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\\n\u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">string</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">string</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">string</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">timestamp</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">timestamp</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">timestamp</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">int32</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">float64</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">boolean</span> \u2502\\n\u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">bcpandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">2.4.1 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.8.1 </span> \u2502 True \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 06:14:22</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 06:14:23</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 14:31:41</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">espandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">1.0.4 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2018-12-22 20:52:30</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2018-12-22 20:52:30</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 14:58:47</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">3.6</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">fpandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.5 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2020-03-09 02:35:31</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2020-03-09 02:35:31</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:04:23</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">h3pandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.2.4 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.6 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-03-19 17:58:16</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-03-19 17:58:16</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:10:06</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">ipandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.1 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-29 18:46:12</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-29 18:46:12</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:15:34</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">3.6</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">kpandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.1 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.6,&lt;4.0 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-02 18:00:29</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2019-05-02 18:00:31</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:20:21</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">mpandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.2.1 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-07-03 16:21:21</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-07-03 16:21:23</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:30:35</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">mtpandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">1.14.202306141807</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.6 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-06-14 18:08:01</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-06-14 18:08:01</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:31:04</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">4.6</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">mypandas</span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.1.6 </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">&gt;=3.10 </span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-10-24 21:01:10</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-10-24 21:01:12</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:32:04</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">paandas </span> \u2502 <span style=\\\"color: #008000; text-decoration-color: #008000\\\">0.0.3 </span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">~</span> \u2502 False \u2502 False \u2502 False \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-11-24 06:11:15</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2022-11-24 06:11:17</span> \u2502 <span style=\\\"color: #800080; text-decoration-color: #800080\\\">2023-07-12 15:43:31</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">0</span> \u2502 <span style=\\\"color: #008080; text-decoration-color: #008080; font-weight: bold\\\">nan</span> \u2502 False \u2502\\n\u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502 <span style=\\\"color: #7f7f7f; text-decoration-color: #7f7f7f\\\">\u2026</span> \u2502\\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\\n</pre>\\n```\\n:::\\n:::\\n\\n\\nLet's count the results:\\n\\n::: {#a363610a .cell execution_count=6}\\n``` {.python .cell-code}\\npandas_ish.count()\\n```\\n\\n::: {.cell-output .cell-output-display}\\n```{=html}\\n<pre style=\\\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\\\"></pre>\\n```\\n:::\\n\\n::: {.cell-output .cell-output-display execution_count=20}\\n\\n::: {.ansi-escaped-output}\\n```{=html}\\n<pre><span class=\\\"ansi-cyan-fg ansi-bold\\\">178</span></pre>\\n```\\n:::\\n\\n:::\\n:::\\n\\n\\nThere are a good number of packages that look similar to `pandas`!\\n\\n## Snowflake\\n\\nSimilarly we can expose Snowflake's\\n[`jarowinkler_similarity`](https://docs.snowflake.com/en/sql-reference/functions/jarowinkler_similarity)\\nfunction.\\n\\nLet's alias it to `jw_sim` to illustrate some more of the Ibis `udf` API:\\n\\n::: {#c6b88f1d .cell execution_count=7}\\n``` {.python .cell-code}\\[email protected](name=\\\"jarowinkler_similarity\\\") # <1>\\ndef jw_sim(left: str, right: str) -> float:\\n ...\\n```\\n:::\\n\\n\\n1. `target` is the name of the function in the backend. This argument is\\n required in this because the function name is different than the name of the\\n function in ibis.\\n\\n\\nNow let's connect to Snowflake and call our `jw_sim` function:\\n\\n::: {#4b0eeaa8 .cell execution_count=8}\\n``` {.python .cell-code}\\nimport os\\n\\ncon = ibis.connect(os.environ[\\\"SNOWFLAKE_URL\\\"])\\n```\\n:::\\n\\n\\n::: {#2c651137 .cell execution_count=9}\\n``` {.python .cell-code}\\nexpr = jw_sim(\\\"snow\\\", \\\"shoe\\\")\\ncon.execute(expr)\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=23}\\n```\\n66.0\\n```\\n:::\\n:::\\n\\n\\nAnd let's take a look at the SQL\\n\\n::: {#d2c051e5 .cell execution_count=10}\\n``` {.python .cell-code}\\nibis.to_sql(expr, dialect=\\\"snowflake\\\")\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=24}\\n```sql\\nSELECT\\n JAROWINKLER_SIMILARITY('snow', 'shoe') AS \\\"jarowinkler_similarity('snow', 'shoe')\\\"\\n```\\n:::\\n:::\\n\\n\\n## Input types\\n\\nSometimes the input types of builtin functions are difficult to spell.\\n\\nConsider a function that computes the length of any array: the elements in the\\narray can be floats, integers, strings and even other arrays. Spelling that\\ntype is difficult.\\n\\nFortunately the `udf.scalar.builtin` decorator doesn't require you to specify\\ninput types in these cases:\\n\\n::: {#7f171163 .cell execution_count=11}\\n``` {.python .cell-code}\\[email protected](name=\\\"array_size\\\")\\ndef cardinality(arr) -> int:\\n ...\\n```\\n:::\\n\\n\\n::: {.callout-caution}\\n## The return type annotation **is always required**.\\n:::\\n\\nWe can pass arrays with different element types to our `cardinality` function:\\n\\n::: {#636298ba .cell execution_count=12}\\n``` {.python .cell-code}\\ncon.execute(cardinality([1, 2, 3]))\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=26}\\n```\\n3\\n```\\n:::\\n:::\\n\\n\\n::: {#a15e7c06 .cell execution_count=13}\\n``` {.python .cell-code}\\ncon.execute(cardinality([\\\"a\\\", \\\"b\\\"]))\\n```\\n\\n::: {.cell-output .cell-output-display execution_count=27}\\n```\\n2\\n```\\n:::\\n:::\\n\\n\\nWhen you bypass input types the errors you get back are backend dependent:\\n\\n::: {#6c4d358c .cell execution_count=14}\\n``` {.python .cell-code}\\ncon.execute(cardinality(\\\"foo\\\"))\\n```\\n\\n::: {.cell-output .cell-output-error}\\n```\\nProgrammingError: (snowflake.connector.errors.ProgrammingError) 001044 (42P13): SQL compilation error: error line 1 at position 7\\nInvalid argument types for function 'ARRAY_SIZE': (VARCHAR(3))\\n[SQL: SELECT array_size(%(param_1)s) AS \\\"array_size('foo')\\\"]\\n[parameters: {'param_1': 'foo'}]\\n(Background on this error at: https://sqlalche.me/e/14/f405)\\n```\\n:::\\n:::\\n\\n\\nHere, Snowflake is informing us that the `ARRAY_SIZE` function does not accept\\nstrings as input.\\n\\n\",\n \"supporting\": [\n \"builtin_files\"\n ],\n", "builtin.qmd": "@@ -128,3 +128,44 @@ And let's take a look at the SQL\n ```{python}\n ibis.to_sql(expr, dialect=\"snowflake\")\n ```\n+\n+## Input types\n+\n+Sometimes the input types of builtin functions are difficult to spell.\n+\n+Consider a function that computes the length of any array: the elements in the\n+array can be floats, integers, strings and even other arrays. Spelling that\n+type is difficult.\n+\n+Fortunately the `udf.scalar.builtin` decorator doesn't require you to specify\n+input types in these cases:\n+\n+```{python}\[email protected](name=\"array_size\")\n+def cardinality(arr) -> int:\n+ ...\n+```\n+\n+::: {.callout-caution}\n+## The return type annotation **is always required**.\n+:::\n+\n+We can pass arrays with different element types to our `cardinality` function:\n+\n+```{python}\n+con.execute(cardinality([1, 2, 3]))\n+```\n+\n+```{python}\n+con.execute(cardinality([\"a\", \"b\"]))\n+```\n+\n+When you bypass input types the errors you get back are backend dependent:\n+\n+```{python}\n+#| error: true\n+con.execute(cardinality(\"foo\"))\n+```\n+\n+Here, Snowflake is informing us that the `ARRAY_SIZE` function does not accept\n+strings as input.\n", "test_client.py": "@@ -251,12 +251,24 @@ def array_jaccard_index(a: dt.Array[dt.int64], b: dt.Array[dt.int64]) -> float:\n ...\n \n \[email protected](name=\"arrayJaccardIndex\")\n+def array_jaccard_index_no_input_types(a, b) -> float:\n+ ...\n+\n+\n @udf.scalar.builtin\n def arrayJaccardIndex(a: dt.Array[dt.int64], b: dt.Array[dt.int64]) -> float:\n ...\n \n \[email protected](\"func\", [array_jaccard_index, arrayJaccardIndex])\[email protected](\n+ \"func\",\n+ [\n+ array_jaccard_index,\n+ arrayJaccardIndex,\n+ array_jaccard_index_no_input_types,\n+ ],\n+)\n def test_builtin_udf(con, func):\n expr = func([1, 2], [2, 3])\n result = con.execute(expr)\n", "udf.py": "@@ -298,10 +298,11 @@ class scalar:\n func_name = name or fn.__name__\n \n for arg_name, param in inspect.signature(fn).parameters.items():\n- if (raw_dtype := annotations.get(arg_name)) is None:\n- raise exc.MissingParameterAnnotationError(fn, arg_name)\n-\n- arg = rlz.ValueOf(dt.dtype(raw_dtype))\n+ if (raw_dtype := annotations.get(arg_name)) is not None:\n+ dtype = dt.dtype(raw_dtype)\n+ else:\n+ dtype = raw_dtype\n+ arg = rlz.ValueOf(dtype)\n fields[arg_name] = Argument(pattern=arg, default=param.default)\n \n fields[\"dtype\"] = dt.dtype(return_annotation)\n"}
feat: `gix remote refs` to list all remote references of a suitable remote. (#450) This takes into account either a named remote, or the remote associated with the current branch, or the default remote it could deduce or obtain from the configuration.
5d6d5ca305615568dfedbcc10ea86294c0a0472d
feat
https://github.com/Byron/gitoxide/commit/5d6d5ca305615568dfedbcc10ea86294c0a0472d
`gix remote refs` to list all remote references of a suitable remote. (#450) This takes into account either a named remote, or the remote associated with the current branch, or the default remote it could deduce or obtain from the configuration.
{"Cargo.toml": "@@ -27,7 +27,7 @@ estimate-hours = [\"itertools\", \"rayon\", \"fs-err\"]\n blocking-client = [\"git-repository/blocking-network-client\"]\n ## The client to connect to git servers will be async, while supporting only the 'git' transport itself.\n ## It's the most limited and can be seen as example on how to use custom transports for custom servers.\n-async-client = [\"git-repository/async-network-client\", \"git-transport-configuration-only/async-std\", \"async-trait\", \"futures-io\", \"async-net\", \"async-io\", \"futures-lite\", \"blocking\"]\n+async-client = [\"git-repository/async-network-client-async-std\", \"git-transport-configuration-only/async-std\", \"async-trait\", \"futures-io\", \"async-net\", \"async-io\", \"futures-lite\", \"blocking\"]\n \n #! ### Other\n ## Data structures implement `serde::Serialize` and `serde::Deserialize`.\n", "remote.rs": "@@ -1,17 +1,100 @@\n #[cfg(any(feature = \"blocking-client\", feature = \"async-client\"))]\n mod net {\n use crate::OutputFormat;\n+ use anyhow::Context;\n use git_repository as git;\n+ use git_repository::protocol::fetch;\n \n #[git::protocol::maybe_async::maybe_async]\n pub async fn refs(\n- _repo: git::Repository,\n- _name: &str,\n- _format: OutputFormat,\n- _progress: impl git::Progress,\n- _out: impl std::io::Write,\n+ repo: git::Repository,\n+ name: Option<&str>,\n+ format: OutputFormat,\n+ mut progress: impl git::Progress,\n+ out: impl std::io::Write,\n ) -> anyhow::Result<()> {\n- todo!()\n+ let remote = match name {\n+ Some(name) => repo.find_remote(name)?,\n+ None => repo\n+ .head()?\n+ .into_remote(git::remote::Direction::Fetch)\n+ .context(\"Cannot find a remote for unborn branch\")??,\n+ };\n+ progress.info(format!(\n+ \"Connecting to {:?}\",\n+ remote\n+ .url(git::remote::Direction::Fetch)\n+ .context(\"Remote didn't have a URL to connect to\")?\n+ .to_bstring()\n+ ));\n+ let refs = remote\n+ .connect(git::remote::Direction::Fetch, progress)\n+ .await?\n+ .list_refs()\n+ .await?;\n+\n+ match format {\n+ OutputFormat::Human => drop(print(out, &refs)),\n+ #[cfg(feature = \"serde1\")]\n+ OutputFormat::Json => {\n+ serde_json::to_writer_pretty(out, &refs.into_iter().map(JsonRef::from).collect::<Vec<_>>())?\n+ }\n+ };\n+ Ok(())\n+ }\n+\n+ #[cfg_attr(feature = \"serde1\", derive(serde::Serialize, serde::Deserialize))]\n+ pub enum JsonRef {\n+ Peeled {\n+ path: String,\n+ tag: String,\n+ object: String,\n+ },\n+ Direct {\n+ path: String,\n+ object: String,\n+ },\n+ Symbolic {\n+ path: String,\n+ target: String,\n+ object: String,\n+ },\n+ }\n+\n+ impl From<fetch::Ref> for JsonRef {\n+ fn from(value: fetch::Ref) -> Self {\n+ match value {\n+ fetch::Ref::Direct { path, object } => JsonRef::Direct {\n+ path: path.to_string(),\n+ object: object.to_string(),\n+ },\n+ fetch::Ref::Symbolic { path, target, object } => JsonRef::Symbolic {\n+ path: path.to_string(),\n+ target: target.to_string(),\n+ object: object.to_string(),\n+ },\n+ fetch::Ref::Peeled { path, tag, object } => JsonRef::Peeled {\n+ path: path.to_string(),\n+ tag: tag.to_string(),\n+ object: object.to_string(),\n+ },\n+ }\n+ }\n+ }\n+\n+ pub(crate) fn print(mut out: impl std::io::Write, refs: &[fetch::Ref]) -> std::io::Result<()> {\n+ for r in refs {\n+ match r {\n+ fetch::Ref::Direct { path, object } => writeln!(&mut out, \"{} {}\", object.to_hex(), path),\n+ fetch::Ref::Peeled { path, object, tag } => {\n+ writeln!(&mut out, \"{} {} tag:{}\", object.to_hex(), path, tag)\n+ }\n+ fetch::Ref::Symbolic { path, target, object } => {\n+ writeln!(&mut out, \"{} {} symref-target:{}\", object.to_hex(), path, target)\n+ }\n+ }?;\n+ }\n+ Ok(())\n }\n }\n #[cfg(any(feature = \"blocking-client\", feature = \"async-client\"))]\n", "main.rs": "@@ -98,23 +98,29 @@ pub fn main() -> Result<()> {\n #[cfg(feature = \"gitoxide-core-blocking-client\")]\n {\n prepare_and_run(\n- \"config-list\",\n+ \"remote-refs\",\n verbose,\n progress,\n progress_keep_open,\n None,\n move |progress, out, _err| {\n- core::repository::remote::refs(repository(Mode::Lenient)?, &name, format, progress, out)\n+ core::repository::remote::refs(\n+ repository(Mode::Lenient)?,\n+ name.as_deref(),\n+ format,\n+ progress,\n+ out,\n+ )\n },\n )\n }\n #[cfg(feature = \"gitoxide-core-async-client\")]\n {\n let (_handle, progress) =\n- async_util::prepare(verbose, \"remote-ref-list\", Some(core::remote::refs::PROGRESS_RANGE));\n+ async_util::prepare(verbose, \"remote-refs\", Some(core::remote::refs::PROGRESS_RANGE));\n futures_lite::future::block_on(core::repository::remote::refs(\n repository(Mode::Lenient)?,\n- &name,\n+ name.as_deref(),\n format,\n progress,\n std::io::stdout(),\n", "options.rs": "@@ -100,8 +100,10 @@ pub mod remote {\n #[derive(Debug, clap::Parser)]\n pub struct Platform {\n /// The name of the remote to connect to.\n- #[clap(long, short = 'n', default_value = \"origin\")]\n- pub name: String,\n+ ///\n+ /// If unset, the current branch will determine the remote.\n+ #[clap(long, short = 'n')]\n+ pub name: Option<String>,\n \n /// Subcommands\n #[clap(subcommand)]\n"}
refactor(mysql): reuse alchemy rules
d5fd2153ee16a253ee1d8c061d861c4200c89b56
refactor
https://github.com/ibis-project/ibis/commit/d5fd2153ee16a253ee1d8c061d861c4200c89b56
reuse alchemy rules
{"registry.py": "@@ -9,11 +9,9 @@ import ibis.expr.types as ir\n from ibis.backends.base.sql.alchemy import (\n fixed_arity,\n infix_op,\n- reduction,\n sqlalchemy_operation_registry,\n sqlalchemy_window_functions_registry,\n unary,\n- variance_reduction,\n )\n \n operation_registry = sqlalchemy_operation_registry.copy()\n@@ -262,11 +260,6 @@ operation_registry.update(\n ops.ExtractSecond: _extract('second'),\n ops.ExtractMillisecond: _extract('millisecond'),\n # reductions\n- ops.BitAnd: reduction(sa.func.bit_and),\n- ops.BitOr: reduction(sa.func.bit_or),\n- ops.BitXor: reduction(sa.func.bit_xor),\n- ops.Variance: variance_reduction('var'),\n- ops.StandardDev: variance_reduction('stddev'),\n ops.IdenticalTo: _identical_to,\n ops.TimestampNow: fixed_arity(sa.func.now, 0),\n # others\n"}
test: coverage
01d9e581bdef38c9020563dfd4411080a8cd8a23
test
https://github.com/mikro-orm/mikro-orm/commit/01d9e581bdef38c9020563dfd4411080a8cd8a23
coverage
{"MariaDbQueryBuilder.ts": "@@ -61,6 +61,7 @@ export class MariaDbQueryBuilder<T extends object = AnyEntity> extends QueryBuil\n subQuery.finalized = true;\n const knexQuery = subQuery.as(this.mainAlias.aliasName).clearSelect().select(pks);\n \n+ /* istanbul ignore next */\n if (addToSelect.length > 0) {\n addToSelect.forEach(prop => {\n const field = this._fields!.find(field => {\n@@ -113,6 +114,7 @@ export class MariaDbQueryBuilder<T extends object = AnyEntity> extends QueryBuil\n for (const [key, join] of Object.entries(this._joins)) {\n const path = join.path?.replace(/\\[populate]|\\[pivot]|:ref/g, '').replace(new RegExp(`^${meta.className}.`), '');\n \n+ /* istanbul ignore next */\n if (!populate.has(path ?? '') && !orderByAliases.includes(join.alias)) {\n delete this._joins[key];\n }\n", "GHx6.mariadb.test.ts": "@@ -0,0 +1,167 @@\n+import {\n+ Collection,\n+ Entity,\n+ ManyToMany,\n+ ManyToOne,\n+ MikroORM,\n+ PrimaryKey,\n+ Property,\n+ QueryOrder,\n+ raw,\n+ RawQueryFragment,\n+} from '@mikro-orm/mariadb';\n+import { mockLogger } from '../../helpers';\n+\n+@Entity()\n+class Job {\n+\n+ @PrimaryKey()\n+ id!: number;\n+\n+ @Property({ fieldName: 'DateCompleted', nullable: true })\n+ dateCompleted?: Date | null;\n+\n+}\n+\n+@Entity()\n+class Tag {\n+\n+ @PrimaryKey()\n+ id!: number;\n+\n+ @Property()\n+ name!: string;\n+\n+ @Property({ nullable: true })\n+ created?: Date | null;\n+\n+ @ManyToOne(() => Job, { name: 'custom_name' })\n+ job!: Job;\n+\n+ @ManyToMany(() => Job)\n+ jobs = new Collection<Job>(this);\n+\n+}\n+\n+let orm: MikroORM;\n+\n+beforeAll(async () => {\n+ orm = MikroORM.initSync({\n+ entities: [Job, Tag],\n+ dbName: `raw-queries`,\n+ port: 3309,\n+ });\n+\n+ await orm.schema.refreshDatabase();\n+});\n+\n+afterAll(async () => {\n+ await orm.close(true);\n+});\n+\n+test('raw fragments with findAndCount', async () => {\n+ await orm.em.findAndCount(Job, {\n+ dateCompleted: { $ne: null },\n+ [raw(alias => `${alias}.DateCompleted`)]: '2023-07-24',\n+ });\n+ expect(RawQueryFragment.checkCacheSize()).toBe(0);\n+});\n+\n+test('raw fragments with orderBy', async () => {\n+ const mock = mockLogger(orm);\n+ await orm.em.findAll(Job, {\n+ orderBy: {\n+ [raw(alias => `${alias}.DateCompleted`)]: 'desc',\n+ },\n+ });\n+ expect(mock.mock.calls[0][0]).toMatch('select `j0`.* from `job` as `j0` order by j0.DateCompleted desc');\n+ expect(RawQueryFragment.checkCacheSize()).toBe(0);\n+});\n+\n+test('raw fragments with orderBy on relation', async () => {\n+ const mock = mockLogger(orm);\n+ await orm.em.findAll(Tag, {\n+ populate: ['job'],\n+ orderBy: {\n+ job: {\n+ [raw(alias => `${alias}.DateCompleted`)]: 'desc',\n+ },\n+ },\n+ });\n+ expect(mock.mock.calls[0][0]).toMatch('select `t0`.*, `j1`.`id` as `j1__id`, `j1`.`DateCompleted` as `j1__DateCompleted` ' +\n+ 'from `tag` as `t0` ' +\n+ 'left join `job` as `j1` on `t0`.`custom_name` = `j1`.`id` ' +\n+ 'order by j1.DateCompleted desc');\n+ expect(RawQueryFragment.checkCacheSize()).toBe(0);\n+});\n+\n+test('raw fragments with populateOrderBy on relation', async () => {\n+ const mock = mockLogger(orm);\n+ await orm.em.findAll(Tag, {\n+ populate: ['job'],\n+ populateOrderBy: {\n+ [raw(alias => `${alias}.created`)]: 'desc',\n+ job: {\n+ [raw(alias => `${alias}.DateCompleted`)]: 'desc',\n+ },\n+ },\n+ });\n+ expect(mock.mock.calls[0][0]).toMatch('select `t0`.*, `j1`.`id` as `j1__id`, `j1`.`DateCompleted` as `j1__DateCompleted` ' +\n+ 'from `tag` as `t0` ' +\n+ 'left join `job` as `j1` on `t0`.`custom_name` = `j1`.`id` ' +\n+ 'order by t0.created desc, j1.DateCompleted desc');\n+ expect(RawQueryFragment.checkCacheSize()).toBe(0);\n+});\n+\n+test('raw fragments with multiple items in filter', async () => {\n+ const mock = mockLogger(orm);\n+ await orm.em.findAll(Tag, {\n+ where: {\n+ [raw('id')]: { $gte: 10, $lte: 50 },\n+ },\n+ });\n+ expect(mock.mock.calls[0][0]).toMatch('select `t0`.* from `tag` as `t0` where id >= 10 and id <= 50');\n+ expect(RawQueryFragment.checkCacheSize()).toBe(0);\n+});\n+\n+test('qb.joinAndSelect', async () => {\n+ const query = orm.em.qb(Tag, 'u')\n+ .select('*')\n+ .leftJoinAndSelect('jobs', 'a')\n+ .where({\n+ [raw('coalesce(`u`.`name`, ?)', ['abc'])]: { $gte: 0.3 },\n+ })\n+ .orderBy({\n+ [raw('coalesce(`u`.`name`, ?)', ['def'])]: QueryOrder.DESC,\n+ })\n+ .limit(100)\n+ .offset(0);\n+ expect(query.getKnexQuery().toSQL().sql).toMatch('select `u`.*, `a`.`id` as `a__id`, `a`.`DateCompleted` as `a__DateCompleted` ' +\n+ 'from `tag` as `u` ' +\n+ 'left join `tag_jobs` as `t1` on `u`.`id` = `t1`.`tag_id` ' +\n+ 'left join `job` as `a` on `t1`.`job_id` = `a`.`id` ' +\n+ 'where (json_contains((select json_arrayagg(`u`.`id`) from (select `u`.`id` from `tag` as `u` left join `tag_jobs` as `t1` on `u`.`id` = `t1`.`tag_id` left join `job` as `a` on `t1`.`job_id` = `a`.`id` where coalesce(`u`.`name`, \\'abc\\') >= 0.3 group by `u`.`id` order by coalesce(`u`.`name`, \\'def\\') desc limit 100) as `u`), `u`.`id`)) ' +\n+ 'order by coalesce(`u`.`name`, \\'def\\') desc');\n+ await query;\n+ expect(RawQueryFragment.checkCacheSize()).toBe(0);\n+});\n+\n+test('em.findByCursor', async () => {\n+ const mock = mockLogger(orm);\n+ await orm.em.findByCursor(Tag, {}, {\n+ populate: ['job'],\n+ first: 3,\n+ orderBy: {\n+ [raw(alias => `${alias}.created`)]: 'desc',\n+ job: {\n+ [raw(alias => `${alias}.DateCompleted`)]: 'desc',\n+ },\n+ },\n+ });\n+ const queries = mock.mock.calls.flat().sort();\n+ expect(queries[0]).toMatch('select `t0`.*, `j1`.`id` as `j1__id`, `j1`.`DateCompleted` as `j1__DateCompleted` ' +\n+ 'from `tag` as `t0` ' +\n+ 'left join `job` as `j1` on `t0`.`custom_name` = `j1`.`id` ' +\n+ 'order by t0.created desc, j1.DateCompleted desc');\n+ expect(RawQueryFragment.checkCacheSize()).toBe(0);\n+});\n"}
chore: test links (#9583)
64bb07c700a1722ead004cd0b8525e51905bd563
chore
https://github.com/ibis-project/ibis/commit/64bb07c700a1722ead004cd0b8525e51905bd563
test links (#9583)
{"docs-preview.yml": "@@ -44,23 +44,11 @@ jobs:\n fetch-depth: 0\n ref: ${{ github.event.pull_request.head.sha }}\n \n- - name: build docs\n- run: nix develop --ignore-environment --keep HOME -c just docs-build-all\n-\n- - name: install netlify cli\n- run: npm install -g netlify-cli\n-\n - name: generate url alias\n id: get_alias\n run: |\n echo \"id=pr-${{ github.event.pull_request.number }}-${{ github.event.pull_request.head.sha }}\" >> \"$GITHUB_OUTPUT\"\n \n- - name: build and push quarto docs to preview url\n- run: netlify deploy --dir=docs/_output --alias=\"${{ steps.get_alias.outputs.id }}\"\n- env:\n- NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}\n- NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}\n-\n - name: Get all changed qmd files\n id: changed-qmd-files\n uses: tj-actions/changed-files@v44\n@@ -70,17 +58,30 @@ jobs:\n **.qmd\n \n - name: get preview links\n+ id: get-preview-links\n env:\n ALL_CHANGED_FILES: ${{ steps.changed-qmd-files.outputs.all_changed_files }}\n PREVIEW_URL: \"https://${{ steps.get_alias.outputs.id }}--ibis-quarto.netlify.app\"\n run: |\n- links=\"$({\n+ links=\"$(\n for file in ${ALL_CHANGED_FILES}; do\n link=\"${file#docs/}\"\n echo \"- [${file}](${PREVIEW_URL}/${link%.qmd})\"\n done\n- })\"\n- echo \"preview_links=$links\" >> \"$GITHUB_ENV\"\n+ )\"\n+ echo \"links=$links\" | tee -a \"$GITHUB_OUTPUT\"\n+\n+ - name: build docs\n+ run: nix develop --ignore-environment --keep HOME -c just docs-build-all\n+\n+ - name: install netlify cli\n+ run: npm install -g netlify-cli\n+\n+ - name: build and push quarto docs to preview url\n+ run: netlify deploy --dir=docs/_output --alias=\"${{ steps.get_alias.outputs.id }}\"\n+ env:\n+ NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}\n+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}\n \n - name: create preview link comment\n if: success()\n@@ -90,4 +91,4 @@ jobs:\n issue-number: ${{ github.event.pull_request.number }}\n body: |\n Docs preview: https://${{ steps.get_alias.outputs.id }}--ibis-quarto.netlify.app\n- ${{ env.preview_links }}\n+ ${{ steps.get-preview-links.outputs.links }}\n"}
chore(dev-deps): relock
0128d5548d01d3d6a548af763bad866bdd34607c
chore
https://github.com/ibis-project/ibis/commit/0128d5548d01d3d6a548af763bad866bdd34607c
relock
{"poetry.lock": "@@ -2822,19 +2822,6 @@ clickhouse-cityhash = [\n {file = \"clickhouse_cityhash-1.0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl\", hash = \"sha256:aa1bae67f262046e2c362c3bdd39747bc3fd77e75b663501687a70827bf7201f\"},\n {file = \"clickhouse_cityhash-1.0.2.3-cp310-cp310-win32.whl\", hash = \"sha256:14d1646e25595c63de3e228ead0a129e2a0b7959d159406321a217752c16dd49\"},\n {file = \"clickhouse_cityhash-1.0.2.3-cp310-cp310-win_amd64.whl\", hash = \"sha256:b5a9f092d1a0d3c6b90699f94202b4bf8c3e5a51ce8cfd163ba686081152d506\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-macosx_10_9_x86_64.whl\", hash = \"sha256:67d0b09fbf8f1de1afcf6aac0347feb384ae76a2cef8a51c5a740046c319793f\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\", hash = \"sha256:ddf17e633cc2b28e5f597b6a63aed5e2c33917ae02b1b851ecd74cdfaba7913b\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\", hash = \"sha256:853408fa07bdc891c07794445a3cd401c3aed049698597e3a75d722e38aa099d\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl\", hash = \"sha256:03e59cd528329a044f254b071134c957d4ea23bbdb8c45e758adc5f1b9034c6f\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl\", hash = \"sha256:18673ea9338969a33ce78c1300171d12bde07f4e9b882bd49adfadcc5f3692a7\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:1f1dba048334908db83eaab73c3dd66dfaf2e61efd728afec6326fbb1f1d8c48\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-musllinux_1_1_aarch64.whl\", hash = \"sha256:897891a4f7504e8238a4341abfad88bf0ca12ac0559833d6b135186101d87d0f\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-musllinux_1_1_i686.whl\", hash = \"sha256:02433adbf620af0fa906bc47e3472eda19af7da87a84e069cd6fbe970968f069\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl\", hash = \"sha256:0a6bb39c3124fdd5374507a036b0730ccba6535d18d53012c702efd5a9617e3e\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-musllinux_1_1_s390x.whl\", hash = \"sha256:6701779e2ea422579d48df4467bbf7d6c2743b4a422e86ee5932f858a99539db\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl\", hash = \"sha256:3879e029e7db87598c7e49319597d0af404baac85ab16f0ed29396f0019a974a\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-win32.whl\", hash = \"sha256:f0c22f97d55665478c530ff035703bbcadf1aed21ed711da3762b53f7ca76d23\"},\n- {file = \"clickhouse_cityhash-1.0.2.3-cp311-cp311-win_amd64.whl\", hash = \"sha256:e960e510157bc657f632f3b6c58db0a632ff33024ffe54d5115240a81f757d20\"},\n {file = \"clickhouse_cityhash-1.0.2.3-cp34-cp34m-macosx_10_6_intel.whl\", hash = \"sha256:94cb7234d6b27fb2a3d1042d8bf22c6b37ed0f4c22d496b255918f13e0db3515\"},\n {file = \"clickhouse_cityhash-1.0.2.3-cp34-cp34m-manylinux1_i686.whl\", hash = \"sha256:23db430b9c3bd2f800d78efc19429586edf4b33fc25c88682de22bd9fd1be20e\"},\n {file = \"clickhouse_cityhash-1.0.2.3-cp34-cp34m-manylinux1_x86_64.whl\", hash = \"sha256:d556ff29cb66e73fdadf75831761912d660634635c4e915a865da51c79a4aa87\"},\n@@ -3829,8 +3816,6 @@ psutil = [\n psycopg2 = [\n {file = \"psycopg2-2.9.5-cp310-cp310-win32.whl\", hash = \"sha256:d3ef67e630b0de0779c42912fe2cbae3805ebaba30cda27fea2a3de650a9414f\"},\n {file = \"psycopg2-2.9.5-cp310-cp310-win_amd64.whl\", hash = \"sha256:4cb9936316d88bfab614666eb9e32995e794ed0f8f6b3b718666c22819c1d7ee\"},\n- {file = \"psycopg2-2.9.5-cp311-cp311-win32.whl\", hash = \"sha256:093e3894d2d3c592ab0945d9eba9d139c139664dcf83a1c440b8a7aa9bb21955\"},\n- {file = \"psycopg2-2.9.5-cp311-cp311-win_amd64.whl\", hash = \"sha256:920bf418000dd17669d2904472efeab2b20546efd0548139618f8fa305d1d7ad\"},\n {file = \"psycopg2-2.9.5-cp36-cp36m-win32.whl\", hash = \"sha256:b9ac1b0d8ecc49e05e4e182694f418d27f3aedcfca854ebd6c05bb1cffa10d6d\"},\n {file = \"psycopg2-2.9.5-cp36-cp36m-win_amd64.whl\", hash = \"sha256:fc04dd5189b90d825509caa510f20d1d504761e78b8dfb95a0ede180f71d50e5\"},\n {file = \"psycopg2-2.9.5-cp37-cp37m-win32.whl\", hash = \"sha256:922cc5f0b98a5f2b1ff481f5551b95cd04580fd6f0c72d9b22e6c0145a4840e0\"},\n", "requirements.txt": "@@ -69,7 +69,7 @@ mkdocs-jupyter==0.22.0 ; python_version >= \"3.8\" and python_version < \"4\"\n mkdocs-literate-nav==0.5.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\n mkdocs-macros-plugin==0.7.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\n mkdocs-material-extensions==1.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\n-mkdocs-material==8.5.9 ; python_version >= \"3.8\" and python_version < \"4.0\"\n+mkdocs-material==8.5.10 ; python_version >= \"3.8\" and python_version < \"4.0\"\n mkdocs-table-reader-plugin==1.1.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\n mkdocs==1.4.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\n mkdocstrings==0.17.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\n"}
refactor(bigquery): port to sqlglot
bcfd7e7e8469172c98911f8610c8ff452375f71b
refactor
https://github.com/ibis-project/ibis/commit/bcfd7e7e8469172c98911f8610c8ff452375f71b
port to sqlglot
{"ibis-backends-cloud.yml": "@@ -46,8 +46,8 @@ jobs:\n - \"3.9\"\n - \"3.11\"\n backend:\n- # - name: bigquery\n- # title: BigQuery\n+ - name: bigquery\n+ title: BigQuery\n - name: snowflake\n title: Snowflake\n steps:\n", "compiler.py": "@@ -3,145 +3,825 @@\n from __future__ import annotations\n \n import re\n-from functools import partial\n+from functools import singledispatchmethod\n \n import sqlglot as sg\n-import toolz\n+import sqlglot.expressions as sge\n \n-import ibis.common.graph as lin\n+import ibis.common.exceptions as com\n+import ibis.expr.datatypes as dt\n import ibis.expr.operations as ops\n-import ibis.expr.types as ir\n-from ibis.backends.base.sql import compiler as sql_compiler\n-from ibis.backends.bigquery import operations, registry, rewrites\n-\n-\n-class BigQueryUDFDefinition(sql_compiler.DDL):\n- \"\"\"Represents definition of a temporary UDF.\"\"\"\n-\n- def __init__(self, expr, context):\n- self.expr = expr\n- self.context = context\n-\n- def compile(self):\n- \"\"\"Generate UDF string from definition.\"\"\"\n- op = expr.op() if isinstance(expr := self.expr, ir.Expr) else expr\n- return op.sql\n-\n-\n-class BigQueryUnion(sql_compiler.Union):\n- \"\"\"Union of tables.\"\"\"\n-\n- @classmethod\n- def keyword(cls, distinct):\n- \"\"\"Use distinct UNION if distinct is True.\"\"\"\n- return \"UNION DISTINCT\" if distinct else \"UNION ALL\"\n-\n-\n-class BigQueryIntersection(sql_compiler.Intersection):\n- \"\"\"Intersection of tables.\"\"\"\n-\n- @classmethod\n- def keyword(cls, distinct):\n- return \"INTERSECT DISTINCT\" if distinct else \"INTERSECT ALL\"\n-\n-\n-class BigQueryDifference(sql_compiler.Difference):\n- \"\"\"Difference of tables.\"\"\"\n-\n- @classmethod\n- def keyword(cls, distinct):\n- return \"EXCEPT DISTINCT\" if distinct else \"EXCEPT ALL\"\n-\n-\n-def find_bigquery_udf(op):\n- \"\"\"Filter which includes only UDFs from expression tree.\"\"\"\n- if type(op) in BigQueryExprTranslator._rewrites:\n- op = BigQueryExprTranslator._rewrites[type(op)](op)\n- if isinstance(op, operations.BigQueryUDFNode):\n- result = op\n- else:\n- result = None\n- return lin.proceed, result\n-\n+from ibis import util\n+from ibis.backends.base.sqlglot.compiler import NULL, STAR, SQLGlotCompiler, paren\n+from ibis.backends.base.sqlglot.datatypes import BigQueryType, BigQueryUDFType\n+from ibis.backends.base.sqlglot.rewrites import (\n+ exclude_unsupported_window_frame_from_ops,\n+ exclude_unsupported_window_frame_from_row_number,\n+ rewrite_first_to_first_value,\n+ rewrite_last_to_last_value,\n+)\n+from ibis.common.patterns import replace\n+from ibis.common.temporal import DateUnit, IntervalUnit, TimestampUnit, TimeUnit\n+from ibis.expr.rewrites import p, rewrite_sample, y\n \n _NAME_REGEX = re.compile(r'[^!\"$()*,./;?@[\\\\\\]^`{}~\\n]+')\n \n \n-class BigQueryExprTranslator(sql_compiler.ExprTranslator):\n- \"\"\"Translate expressions to strings.\"\"\"\n-\n- _registry = registry.OPERATION_REGISTRY\n- _rewrites = rewrites.REWRITES\n-\n- _forbids_frame_clause = (\n- *sql_compiler.ExprTranslator._forbids_frame_clause,\n- ops.Lag,\n- ops.Lead,\n+@replace(p.WindowFunction(p.MinRank | p.DenseRank, y @ p.WindowFrame(start=None)))\n+def exclude_unsupported_window_frame_from_rank(_, y):\n+ return ops.Subtract(\n+ _.copy(frame=y.copy(start=None, end=0, order_by=y.order_by or (ops.NULL,))), 1\n )\n \n- _unsupported_reductions = (ops.ApproxMedian, ops.ApproxCountDistinct)\n- _dialect_name = \"bigquery\"\n-\n- @staticmethod\n- def _gen_valid_name(name: str) -> str:\n- name = \"_\".join(_NAME_REGEX.findall(name)) or \"tmp\"\n- return f\"`{name}`\"\n-\n- def name(self, translated: str, name: str):\n- # replace invalid characters in automatically generated names\n- valid_name = self._gen_valid_name(name)\n- if translated == valid_name:\n- return translated\n- return f\"{translated} AS {valid_name}\"\n-\n- @classmethod\n- def compiles(cls, klass):\n- def decorator(f):\n- cls._registry[klass] = f\n- return f\n-\n- return decorator\n-\n- def _trans_param(self, op):\n- if op not in self.context.params:\n- raise KeyError(op)\n- return f\"@{op.name}\"\n \n+class BigQueryCompiler(SQLGlotCompiler):\n+ dialect = \"bigquery\"\n+ type_mapper = BigQueryType\n+ udf_type_mapper = BigQueryUDFType\n+ rewrites = (\n+ rewrite_sample,\n+ rewrite_first_to_first_value,\n+ rewrite_last_to_last_value,\n+ exclude_unsupported_window_frame_from_ops,\n+ exclude_unsupported_window_frame_from_row_number,\n+ exclude_unsupported_window_frame_from_rank,\n+ *SQLGlotCompiler.rewrites,\n+ )\n \n-compiles = BigQueryExprTranslator.compiles\n-\n+ NAN = sge.Cast(\n+ this=sge.convert(\"NaN\"), to=sge.DataType(this=sge.DataType.Type.DOUBLE)\n+ )\n+ POS_INF = sge.Cast(\n+ this=sge.convert(\"Infinity\"), to=sge.DataType(this=sge.DataType.Type.DOUBLE)\n+ )\n+ NEG_INF = sge.Cast(\n+ this=sge.convert(\"-Infinity\"), to=sge.DataType(this=sge.DataType.Type.DOUBLE)\n+ )\n \n-class BigQueryTableSetFormatter(sql_compiler.TableSetFormatter):\n- def _quote_identifier(self, name):\n- return sg.to_identifier(name).sql(\"bigquery\")\n+ def _aggregate(self, funcname: str, *args, where):\n+ func = self.f[funcname]\n \n+ if where is not None:\n+ args = tuple(self.if_(where, arg, NULL) for arg in args)\n \n-class BigQueryCompiler(sql_compiler.Compiler):\n- translator_class = BigQueryExprTranslator\n- table_set_formatter_class = BigQueryTableSetFormatter\n- union_class = BigQueryUnion\n- intersect_class = BigQueryIntersection\n- difference_class = BigQueryDifference\n+ return func(*args, dialect=self.dialect)\n \n- support_values_syntax_in_select = False\n- null_limit = None\n- cheap_in_memory_tables = True\n+ @staticmethod\n+ def _minimize_spec(start, end, spec):\n+ if (\n+ start is None\n+ and isinstance(getattr(end, \"value\", None), ops.Literal)\n+ and end.value.value == 0\n+ and end.following\n+ ):\n+ return None\n+ return spec\n+\n+ @singledispatchmethod\n+ def visit_node(self, op, **kw):\n+ return super().visit_node(op, **kw)\n+\n+ @visit_node.register(ops.GeoXMax)\n+ @visit_node.register(ops.GeoXMin)\n+ @visit_node.register(ops.GeoYMax)\n+ @visit_node.register(ops.GeoYMin)\n+ def visit_BoundingBox(self, op, *, arg):\n+ name = type(op).__name__[len(\"Geo\") :].lower()\n+ return sge.Dot(\n+ this=self.f.st_boundingbox(arg), expression=sg.to_identifier(name)\n+ )\n+\n+ @visit_node.register(ops.GeoSimplify)\n+ def visit_GeoSimplify(self, op, *, arg, tolerance, preserve_collapsed):\n+ if (\n+ not isinstance(op.preserve_collapsed, ops.Literal)\n+ or op.preserve_collapsed.value\n+ ):\n+ raise com.UnsupportedOperationError(\n+ \"BigQuery simplify does not support preserving collapsed geometries, \"\n+ \"pass preserve_collapsed=False\"\n+ )\n+ return self.f.st_simplify(arg, tolerance)\n+\n+ @visit_node.register(ops.ApproxMedian)\n+ def visit_ApproxMedian(self, op, *, arg, where):\n+ return self.agg.approx_quantiles(arg, 2, where=where)[self.f.offset(1)]\n+\n+ @visit_node.register(ops.Pi)\n+ def visit_Pi(self, op):\n+ return self.f.acos(-1)\n+\n+ @visit_node.register(ops.E)\n+ def visit_E(self, op):\n+ return self.f.exp(1)\n+\n+ @visit_node.register(ops.TimeDelta)\n+ def visit_TimeDelta(self, op, *, left, right, part):\n+ return self.f.time_diff(left, right, part, dialect=self.dialect)\n+\n+ @visit_node.register(ops.DateDelta)\n+ def visit_DateDelta(self, op, *, left, right, part):\n+ return self.f.date_diff(left, right, part, dialect=self.dialect)\n+\n+ @visit_node.register(ops.TimestampDelta)\n+ def visit_TimestampDelta(self, op, *, left, right, part):\n+ left_tz = op.left.dtype.timezone\n+ right_tz = op.right.dtype.timezone\n+\n+ if left_tz is None and right_tz is None:\n+ return self.f.datetime_diff(left, right, part)\n+ elif left_tz is not None and right_tz is not None:\n+ return self.f.timestamp_diff(left, right, part)\n+\n+ raise com.UnsupportedOperationError(\n+ \"timestamp difference with mixed timezone/timezoneless values is not implemented\"\n+ )\n+\n+ @visit_node.register(ops.GroupConcat)\n+ def visit_GroupConcat(self, op, *, arg, sep, where):\n+ if where is not None:\n+ arg = self.if_(where, arg, NULL)\n+ return self.f.string_agg(arg, sep)\n+\n+ @visit_node.register(ops.FloorDivide)\n+ def visit_FloorDivide(self, op, *, left, right):\n+ return self.cast(self.f.floor(self.f.ieee_divide(left, right)), op.dtype)\n+\n+ @visit_node.register(ops.Log2)\n+ def visit_Log2(self, op, *, arg):\n+ return self.f.log(arg, 2, dialect=self.dialect)\n+\n+ @visit_node.register(ops.Log)\n+ def visit_Log(self, op, *, arg, base):\n+ if base is None:\n+ return self.f.ln(arg)\n+ return self.f.log(arg, base, dialect=self.dialect)\n+\n+ @visit_node.register(ops.ArrayRepeat)\n+ def visit_ArrayRepeat(self, op, *, arg, times):\n+ start = step = 1\n+ array_length = self.f.array_length(arg)\n+ stop = self.f.greatest(times, 0) * array_length\n+ i = sg.to_identifier(\"i\")\n+ idx = self.f.coalesce(\n+ self.f.nullif(self.f.mod(i, array_length), 0), array_length\n+ )\n+ series = self.f.generate_array(start, stop, step)\n+ return self.f.array(\n+ sg.select(arg[self.f.safe_ordinal(idx)]).from_(self._unnest(series, as_=i))\n+ )\n+\n+ @visit_node.register(ops.Capitalize)\n+ def visit_Capitalize(self, op, *, arg):\n+ return self.f.concat(\n+ self.f.upper(self.f.substr(arg, 1, 1)), self.f.lower(self.f.substr(arg, 2))\n+ )\n+\n+ @visit_node.register(ops.NthValue)\n+ def visit_NthValue(self, op, *, arg, nth):\n+ if not isinstance(op.nth, ops.Literal):\n+ raise com.UnsupportedOperationError(\n+ f\"BigQuery `nth` must be a literal; got {type(op.nth)}\"\n+ )\n+ return self.f.nth_value(arg, nth)\n+\n+ @visit_node.register(ops.StrRight)\n+ def visit_StrRight(self, op, *, arg, nchars):\n+ return self.f.substr(arg, -self.f.least(self.f.length(arg), nchars))\n+\n+ @visit_node.register(ops.StringJoin)\n+ def visit_StringJoin(self, op, *, arg, sep):\n+ return self.f.array_to_string(self.f.array(*arg), sep)\n+\n+ @visit_node.register(ops.DayOfWeekIndex)\n+ def visit_DayOfWeekIndex(self, op, *, arg):\n+ return self.f.mod(self.f.extract(self.v.dayofweek, arg) + 5, 7)\n+\n+ @visit_node.register(ops.DayOfWeekName)\n+ def visit_DayOfWeekName(self, op, *, arg):\n+ return self.f.initcap(sge.Cast(this=arg, to=\"STRING FORMAT 'DAY'\"))\n+\n+ @visit_node.register(ops.StringToTimestamp)\n+ def visit_StringToTimestamp(self, op, *, arg, format_str):\n+ if (timezone := op.dtype.timezone) is not None:\n+ return self.f.parse_timestamp(format_str, arg, timezone)\n+ return self.f.parse_datetime(format_str, arg)\n+\n+ @visit_node.register(ops.Floor)\n+ def visit_Floor(self, op, *, arg):\n+ return self.cast(self.f.floor(arg), op.dtype)\n+\n+ @visit_node.register(ops.ArrayCollect)\n+ def visit_ArrayCollect(self, op, *, arg, where):\n+ if where is not None:\n+ arg = self.if_(where, arg, NULL)\n+ return self.f.array_agg(sge.IgnoreNulls(this=arg))\n+\n+ def _neg_idx_to_pos(self, arg, idx):\n+ return self.if_(idx < 0, self.f.array_length(arg) + idx, idx)\n+\n+ @visit_node.register(ops.ArraySlice)\n+ def visit_ArraySlice(self, op, *, arg, start, stop):\n+ index = sg.to_identifier(\"bq_arr_slice\")\n+ cond = [index >= self._neg_idx_to_pos(arg, start)]\n+\n+ if stop is not None:\n+ cond.append(index < self._neg_idx_to_pos(arg, stop))\n+\n+ el = sg.to_identifier(\"el\")\n+ return self.f.array(\n+ sg.select(el).from_(self._unnest(arg, as_=el, offset=index)).where(*cond)\n+ )\n+\n+ @visit_node.register(ops.ArrayIndex)\n+ def visit_ArrayIndex(self, op, *, arg, index):\n+ return arg[self.f.safe_offset(index)]\n+\n+ @visit_node.register(ops.ArrayContains)\n+ def visit_ArrayContains(self, op, *, arg, other):\n+ name = sg.to_identifier(util.gen_name(\"bq_arr_contains\"))\n+ return sge.Exists(\n+ this=sg.select(sge.convert(1))\n+ .from_(self._unnest(arg, as_=name))\n+ .where(name.eq(other))\n+ )\n+\n+ @visit_node.register(ops.StringContains)\n+ def visit_StringContains(self, op, *, haystack, needle):\n+ return self.f.strpos(haystack, needle) > 0\n+\n+ @visit_node.register(ops.StringFind)\n+ def visti_StringFind(self, op, *, arg, substr, start, end):\n+ if start is not None:\n+ raise NotImplementedError(\n+ \"`start` not implemented for BigQuery string find\"\n+ )\n+ if end is not None:\n+ raise NotImplementedError(\"`end` not implemented for BigQuery string find\")\n+ return self.f.strpos(arg, substr)\n+\n+ def visit_NonNullLiteral(self, op, *, value, dtype):\n+ if dtype.is_string():\n+ return sge.convert(\n+ str(value)\n+ # Escape \\ first so we don't double escape other characters.\n+ .replace(\"\\\\\", \"\\\\\\\\\")\n+ # ASCII escape sequences that are recognized in Python:\n+ # https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals\n+ .replace(\"\\a\", \"\\\\a\") # Bell\n+ .replace(\"\\b\", \"\\\\b\") # Backspace\n+ .replace(\"\\f\", \"\\\\f\") # Formfeed\n+ .replace(\"\\n\", \"\\\\n\") # Newline / Linefeed\n+ .replace(\"\\r\", \"\\\\r\") # Carriage return\n+ .replace(\"\\t\", \"\\\\t\") # Tab\n+ .replace(\"\\v\", \"\\\\v\") # Vertical tab\n+ )\n+ elif dtype.is_inet() or dtype.is_macaddr():\n+ return sge.convert(str(value))\n+ elif dtype.is_timestamp():\n+ funcname = \"datetime\" if dtype.timezone is None else \"timestamp\"\n+ return self.f[funcname](value.isoformat())\n+ elif dtype.is_date():\n+ return self.f.datefromparts(value.year, value.month, value.day)\n+ elif dtype.is_time():\n+ return self.f.time(value.hour, value.minute, value.second)\n+ elif dtype.is_binary():\n+ return sge.Cast(\n+ this=sge.convert(value.hex()),\n+ to=sge.DataType(this=sge.DataType.Type.BINARY),\n+ format=sge.convert(\"HEX\"),\n+ )\n+ elif dtype.is_interval():\n+ if dtype.unit == IntervalUnit.NANOSECOND:\n+ raise com.UnsupportedOperationError(\n+ \"BigQuery does not support nanosecond intervals\"\n+ )\n+ elif dtype.is_uuid():\n+ return sge.convert(str(value))\n+ return None\n+\n+ @visit_node.register(ops.IntervalFromInteger)\n+ def visit_IntervalFromInteger(self, op, *, arg, unit):\n+ if unit == IntervalUnit.NANOSECOND:\n+ raise com.UnsupportedOperationError(\n+ \"BigQuery does not support nanosecond intervals\"\n+ )\n+ return sge.Interval(this=arg, unit=self.v[unit.singular])\n+\n+ @visit_node.register(ops.Strftime)\n+ def visit_Strftime(self, op, *, arg, format_str):\n+ arg_dtype = op.arg.dtype\n+ if arg_dtype.is_timestamp():\n+ if (timezone := arg_dtype.timezone) is None:\n+ return self.f.format_datetime(format_str, arg)\n+ else:\n+ return self.f.format_timestamp(format_str, arg, timezone)\n+ elif arg_dtype.is_date():\n+ return self.f.format_date(format_str, arg)\n+ else:\n+ assert arg_dtype.is_time(), arg_dtype\n+ return self.f.format_time(format_str, arg)\n+\n+ @visit_node.register(ops.IntervalMultiply)\n+ def visit_IntervalMultiply(self, op, *, left, right):\n+ unit = self.v[op.left.dtype.resolution.upper()]\n+ return sge.Interval(this=self.f.extract(unit, left) * right, unit=unit)\n+\n+ @visit_node.register(ops.TimestampFromUNIX)\n+ def visit_TimestampFromUNIX(self, op, *, arg, unit):\n+ unit = op.unit\n+ if unit == TimestampUnit.SECOND:\n+ return self.f.timestamp_seconds(arg)\n+ elif unit == TimestampUnit.MILLISECOND:\n+ return self.f.timestamp_millis(arg)\n+ elif unit == TimestampUnit.MICROSECOND:\n+ return self.f.timestamp_micros(arg)\n+ elif unit == TimestampUnit.NANOSECOND:\n+ return self.f.timestamp_micros(\n+ self.cast(self.f.round(arg / 1_000), dt.int64)\n+ )\n+ else:\n+ raise com.UnsupportedOperationError(f\"Unit not supported: {unit}\")\n+\n+ @visit_node.register(ops.Cast)\n+ def visit_Cast(self, op, *, arg, to):\n+ from_ = op.arg.dtype\n+ if from_.is_timestamp() and to.is_integer():\n+ return self.f.unix_micros(arg)\n+ elif from_.is_integer() and to.is_timestamp():\n+ return self.f.timestamp_seconds(arg)\n+ elif from_.is_interval() and to.is_integer():\n+ if from_.unit in {\n+ IntervalUnit.WEEK,\n+ IntervalUnit.QUARTER,\n+ IntervalUnit.NANOSECOND,\n+ }:\n+ raise com.UnsupportedOperationError(\n+ f\"BigQuery does not allow extracting date part `{from_.unit}` from intervals\"\n+ )\n+ return self.f.extract(self.v[to.resolution.upper()], arg)\n+ elif from_.is_integer() and to.is_interval():\n+ return sge.Interval(this=arg, unit=self.v[to.unit.singular])\n+ elif from_.is_floating() and to.is_integer():\n+ return self.cast(self.f.trunc(arg), dt.int64)\n+ return super().visit_Cast(op, arg=arg, to=to)\n+\n+ @visit_node.register(ops.JSONGetItem)\n+ def visit_JSONGetItem(self, op, *, arg, index):\n+ return arg[index]\n+\n+ @visit_node.register(ops.ExtractEpochSeconds)\n+ def visit_ExtractEpochSeconds(self, op, *, arg):\n+ return self.f.unix_seconds(arg)\n+\n+ @visit_node.register(ops.ExtractWeekOfYear)\n+ def visit_ExtractWeekOfYear(self, op, *, arg):\n+ return self.f.extract(self.v.isoweek, arg)\n+\n+ @visit_node.register(ops.ExtractYear)\n+ @visit_node.register(ops.ExtractQuarter)\n+ @visit_node.register(ops.ExtractMonth)\n+ @visit_node.register(ops.ExtractDay)\n+ @visit_node.register(ops.ExtractDayOfYear)\n+ @visit_node.register(ops.ExtractHour)\n+ @visit_node.register(ops.ExtractMinute)\n+ @visit_node.register(ops.ExtractSecond)\n+ @visit_node.register(ops.ExtractMicrosecond)\n+ @visit_node.register(ops.ExtractMillisecond)\n+ def visit_ExtractDateField(self, op, *, arg):\n+ name = type(op).__name__[len(\"Extract\") :].upper()\n+ return self.f.extract(self.v[name], arg)\n+\n+ @visit_node.register(ops.TimestampTruncate)\n+ def visit_Timestamp(self, op, *, arg, unit):\n+ if unit == IntervalUnit.NANOSECOND:\n+ raise com.UnsupportedOperationError(\n+ f\"BigQuery does not support truncating {op.arg.dtype} values to unit {unit!r}\"\n+ )\n+ elif unit == IntervalUnit.WEEK:\n+ unit = \"WEEK(MONDAY)\"\n+ else:\n+ unit = unit.name\n+ return self.f.timestamp_trunc(arg, self.v[unit], dialect=self.dialect)\n+\n+ @visit_node.register(ops.DateTruncate)\n+ def visit_DateTruncate(self, op, *, arg, unit):\n+ if unit == DateUnit.WEEK:\n+ unit = \"WEEK(MONDAY)\"\n+ else:\n+ unit = unit.name\n+ return self.f.date_trunc(arg, self.v[unit], dialect=self.dialect)\n+\n+ @visit_node.register(ops.TimeTruncate)\n+ def visit_TimeTruncate(self, op, *, arg, unit):\n+ if unit == TimeUnit.NANOSECOND:\n+ raise com.UnsupportedOperationError(\n+ f\"BigQuery does not support truncating {op.arg.dtype} values to unit {unit!r}\"\n+ )\n+ else:\n+ unit = unit.name\n+ return self.f.time_trunc(arg, self.v[unit], dialect=self.dialect)\n+\n+ def _nullifzero(self, step, zero, step_dtype):\n+ if step_dtype.is_interval():\n+ return self.if_(step.eq(zero), NULL, step)\n+ return self.f.nullif(step, zero)\n+\n+ def _zero(self, dtype):\n+ if dtype.is_interval():\n+ return self.f.make_interval()\n+ return sge.convert(0)\n+\n+ def _sign(self, value, dtype):\n+ if dtype.is_interval():\n+ zero = self._zero(dtype)\n+ return sge.Case(\n+ ifs=[\n+ self.if_(value < zero, -1),\n+ self.if_(value.eq(zero), 0),\n+ self.if_(value > zero, 1),\n+ ],\n+ default=NULL,\n+ )\n+ return self.f.sign(value)\n+\n+ def _make_range(self, func, start, stop, step, step_dtype):\n+ step_sign = self._sign(step, step_dtype)\n+ delta_sign = self._sign(stop - start, step_dtype)\n+ zero = self._zero(step_dtype)\n+ nullifzero = self._nullifzero(step, zero, step_dtype)\n+ condition = sg.and_(sg.not_(nullifzero.is_(NULL)), step_sign.eq(delta_sign))\n+ gen_array = func(start, stop, step)\n+ name = sg.to_identifier(util.gen_name(\"bq_arr_range\"))\n+ inner = (\n+ sg.select(name)\n+ .from_(self._unnest(gen_array, as_=name))\n+ .where(name.neq(stop))\n+ )\n+ return self.if_(condition, self.f.array(inner), self.f.array())\n+\n+ @visit_node.register(ops.IntegerRange)\n+ def visit_IntegerRange(self, op, *, start, stop, step):\n+ return self._make_range(self.f.generate_array, start, stop, step, op.step.dtype)\n+\n+ @visit_node.register(ops.TimestampRange)\n+ def visit_TimestampRange(self, op, *, start, stop, step):\n+ if op.start.dtype.timezone is None or op.stop.dtype.timezone is None:\n+ raise com.IbisTypeError(\n+ \"Timestamps without timezone values are not supported when generating timestamp ranges\"\n+ )\n+ return self._make_range(\n+ self.f.generate_timestamp_array, start, stop, step, op.step.dtype\n+ )\n+\n+ @visit_node.register(ops.First)\n+ def visit_First(self, op, *, arg, where):\n+ if where is not None:\n+ arg = self.if_(where, arg, NULL)\n+ array = self.f.array_agg(\n+ sge.Limit(this=sge.IgnoreNulls(this=arg), expression=sge.convert(1)),\n+ )\n+ return array[self.f.safe_offset(0)]\n+\n+ @visit_node.register(ops.Last)\n+ def visit_Last(self, op, *, arg, where):\n+ if where is not None:\n+ arg = self.if_(where, arg, NULL)\n+ array = self.f.array_reverse(self.f.array_agg(sge.IgnoreNulls(this=arg)))\n+ return array[self.f.safe_offset(0)]\n+\n+ @visit_node.register(ops.Arbitrary)\n+ def _arbitrary(self, op, *, arg, how, where):\n+ if how != \"first\":\n+ raise com.UnsupportedOperationError(\n+ f\"{how!r} value not supported for arbitrary in BigQuery\"\n+ )\n+\n+ return self.agg.any_value(arg, where=where)\n+\n+ @visit_node.register(ops.ArrayFilter)\n+ def visit_ArrayFilter(self, op, *, arg, body, param):\n+ return self.f.array(\n+ sg.select(param).from_(self._unnest(arg, as_=param)).where(body)\n+ )\n+\n+ @visit_node.register(ops.ArrayMap)\n+ def visit_ArrayMap(self, op, *, arg, body, param):\n+ return self.f.array(sg.select(body).from_(self._unnest(arg, as_=param)))\n+\n+ @visit_node.register(ops.ArrayZip)\n+ def visit_ArrayZip(self, op, *, arg):\n+ lengths = [self.f.array_length(arr) - 1 for arr in arg]\n+ idx = sg.to_identifier(util.gen_name(\"bq_arr_idx\"))\n+ indices = self._unnest(\n+ self.f.generate_array(0, self.f.greatest(*lengths)), as_=idx\n+ )\n+ struct_fields = [\n+ arr[self.f.safe_offset(idx)].as_(name)\n+ for name, arr in zip(op.dtype.value_type.names, arg)\n+ ]\n+ return self.f.array(\n+ sge.Select(kind=\"STRUCT\", expressions=struct_fields).from_(indices)\n+ )\n+\n+ @visit_node.register(ops.ArrayPosition)\n+ def visit_ArrayPosition(self, op, *, arg, other):\n+ name = sg.to_identifier(util.gen_name(\"bq_arr\"))\n+ idx = sg.to_identifier(util.gen_name(\"bq_arr_idx\"))\n+ unnest = self._unnest(arg, as_=name, offset=idx)\n+ return self.f.coalesce(\n+ sg.select(idx + 1).from_(unnest).where(name.eq(other)).limit(1).subquery(),\n+ 0,\n+ )\n+\n+ def _unnest(self, expression, *, as_, offset=None):\n+ alias = sge.TableAlias(columns=[sg.to_identifier(as_)])\n+ return sge.Unnest(expressions=[expression], alias=alias, offset=offset)\n+\n+ @visit_node.register(ops.ArrayRemove)\n+ def visit_ArrayRemove(self, op, *, arg, other):\n+ name = sg.to_identifier(util.gen_name(\"bq_arr\"))\n+ unnest = self._unnest(arg, as_=name)\n+ return self.f.array(sg.select(name).from_(unnest).where(name.neq(other)))\n+\n+ @visit_node.register(ops.ArrayDistinct)\n+ def visit_ArrayDistinct(self, op, *, arg):\n+ name = util.gen_name(\"bq_arr\")\n+ return self.f.array(\n+ sg.select(name).distinct().from_(self._unnest(arg, as_=name))\n+ )\n+\n+ @visit_node.register(ops.ArraySort)\n+ def visit_ArraySort(self, op, *, arg):\n+ name = util.gen_name(\"bq_arr\")\n+ return self.f.array(\n+ sg.select(name).from_(self._unnest(arg, as_=name)).order_by(name)\n+ )\n+\n+ @visit_node.register(ops.ArrayUnion)\n+ def visit_ArrayUnion(self, op, *, left, right):\n+ lname = util.gen_name(\"bq_arr_left\")\n+ rname = util.gen_name(\"bq_arr_right\")\n+ lhs = sg.select(lname).from_(self._unnest(left, as_=lname))\n+ rhs = sg.select(rname).from_(self._unnest(right, as_=rname))\n+ return self.f.array(sg.union(lhs, rhs, distinct=True))\n+\n+ @visit_node.register(ops.ArrayIntersect)\n+ def visit_ArrayIntersect(self, op, *, left, right):\n+ lname = util.gen_name(\"bq_arr_left\")\n+ rname = util.gen_name(\"bq_arr_right\")\n+ lhs = sg.select(lname).from_(self._unnest(left, as_=lname))\n+ rhs = sg.select(rname).from_(self._unnest(right, as_=rname))\n+ return self.f.array(sg.intersect(lhs, rhs, distinct=True))\n+\n+ @visit_node.register(ops.Substring)\n+ def visit_Substring(self, op, *, arg, start, length):\n+ if isinstance(op.length, ops.Literal) and (value := op.length.value) < 0:\n+ raise com.IbisInputError(\n+ f\"Length parameter must be a non-negative value; got {value}\"\n+ )\n+ suffix = (length,) * (length is not None)\n+ if_pos = self.f.substr(arg, start + 1, *suffix)\n+ if_neg = self.f.substr(arg, self.f.length(arg) + start + 1, *suffix)\n+ return self.if_(start >= 0, if_pos, if_neg)\n+\n+ @visit_node.register(ops.RegexExtract)\n+ def visit_RegexExtract(self, op, *, arg, pattern, index):\n+ matches = self.f.regexp_contains(arg, pattern)\n+ nonzero_index_replace = self.f.regexp_replace(\n+ arg,\n+ self.f.concat(\".*?\", pattern, \".*\"),\n+ self.f.concat(\"\\\\\\\\\", self.cast(index, dt.string)),\n+ )\n+ zero_index_replace = self.f.regexp_replace(\n+ arg, self.f.concat(\".*?\", self.f.concat(\"(\", pattern, \")\"), \".*\"), \"\\\\\\\\1\"\n+ )\n+ extract = self.if_(index.eq(0), zero_index_replace, nonzero_index_replace)\n+ return self.if_(matches, extract, NULL)\n+\n+ @visit_node.register(ops.TimestampAdd)\n+ @visit_node.register(ops.TimestampSub)\n+ def visit_TimestampAddSub(self, op, *, left, right):\n+ if not isinstance(right, sge.Interval):\n+ raise com.OperationNotDefinedError(\n+ \"BigQuery does not support non-literals on the right side of timestamp add/subtract\"\n+ )\n+ if (unit := op.right.dtype.unit) == IntervalUnit.NANOSECOND:\n+ raise com.UnsupportedOperationError(\n+ f\"BigQuery does not allow binary operation {type(op).__name__} with \"\n+ f\"INTERVAL offset {unit}\"\n+ )\n+\n+ opname = type(op).__name__[len(\"Timestamp\") :]\n+ funcname = f\"TIMESTAMP_{opname.upper()}\"\n+ return self.f.anon[funcname](left, right)\n+\n+ @visit_node.register(ops.DateAdd)\n+ @visit_node.register(ops.DateSub)\n+ def visit_DateAddSub(self, op, *, left, right):\n+ if not isinstance(right, sge.Interval):\n+ raise com.OperationNotDefinedError(\n+ \"BigQuery does not support non-literals on the right side of date add/subtract\"\n+ )\n+ if not (unit := op.right.dtype.unit).is_date():\n+ raise com.UnsupportedOperationError(\n+ f\"BigQuery does not allow binary operation {type(op).__name__} with \"\n+ f\"INTERVAL offset {unit}\"\n+ )\n+ opname = type(op).__name__[len(\"Date\") :]\n+ funcname = f\"DATE_{opname.upper()}\"\n+ return self.f.anon[funcname](left, right)\n+\n+ @visit_node.register(ops.Covariance)\n+ def visit_Covariance(self, op, *, left, right, how, where):\n+ if where is not None:\n+ left = self.if_(where, left, NULL)\n+ right = self.if_(where, right, NULL)\n+\n+ if op.left.dtype.is_boolean():\n+ left = self.cast(left, dt.int64)\n+\n+ if op.right.dtype.is_boolean():\n+ right = self.cast(right, dt.int64)\n+\n+ how = op.how[:4].upper()\n+ assert how in (\"POP\", \"SAMP\"), 'how not in (\"POP\", \"SAMP\")'\n+ return self.agg[f\"COVAR_{how}\"](left, right, where=where)\n+\n+ @visit_node.register(ops.Correlation)\n+ def visit_Correlation(self, op, *, left, right, how, where):\n+ if how == \"sample\":\n+ raise ValueError(f\"Correlation with how={how!r} is not supported.\")\n+\n+ if where is not None:\n+ left = self.if_(where, left, NULL)\n+ right = self.if_(where, right, NULL)\n+\n+ if op.left.dtype.is_boolean():\n+ left = self.cast(left, dt.int64)\n+\n+ if op.right.dtype.is_boolean():\n+ right = self.cast(right, dt.int64)\n+\n+ return self.agg.corr(left, right, where=where)\n+\n+ @visit_node.register(ops.TypeOf)\n+ def visit_TypeOf(self, op, *, arg):\n+ name = sg.to_identifier(util.gen_name(\"bq_typeof\"))\n+ from_ = self._unnest(self.f.array(self.f.format(\"%T\", arg)), as_=name)\n+ ifs = [\n+ self.if_(\n+ self.f.regexp_contains(name, '^[A-Z]+ \"'),\n+ self.f.regexp_extract(name, '^([A-Z]+) \"'),\n+ ),\n+ self.if_(self.f.regexp_contains(name, \"^-?[0-9]*$\"), \"INT64\"),\n+ self.if_(\n+ self.f.regexp_contains(\n+ name, r'^(-?[0-9]+[.e].*|CAST\\\\(\"([^\"]*)\" AS FLOAT64\\\\))$'\n+ ),\n+ \"FLOAT64\",\n+ ),\n+ self.if_(name.isin(sge.convert(\"true\"), sge.convert(\"false\")), \"BOOL\"),\n+ self.if_(\n+ sg.or_(self.f.starts_with(name, '\"'), self.f.starts_with(name, \"'\")),\n+ \"STRING\",\n+ ),\n+ self.if_(self.f.starts_with(name, 'b\"'), \"BYTES\"),\n+ self.if_(self.f.starts_with(name, \"[\"), \"ARRAY\"),\n+ self.if_(self.f.regexp_contains(name, r\"^(STRUCT)?\\\\(\"), \"STRUCT\"),\n+ self.if_(self.f.starts_with(name, \"ST_\"), \"GEOGRAPHY\"),\n+ self.if_(name.eq(sge.convert(\"NULL\")), \"NULL\"),\n+ ]\n+ case = sge.Case(ifs=ifs, default=sge.convert(\"UNKNOWN\"))\n+ return sg.select(case).from_(from_).subquery()\n+\n+ @visit_node.register(ops.Xor)\n+ def visit_Xor(self, op, *, left, right):\n+ return sg.or_(sg.and_(left, sg.not_(right)), sg.and_(sg.not_(left), right))\n+\n+ @visit_node.register(ops.HashBytes)\n+ def visit_HashBytes(self, op, *, arg, how):\n+ if how not in (\"md5\", \"sha1\", \"sha256\", \"sha512\"):\n+ raise NotImplementedError(how)\n+ return self.f[how](arg)\n \n @staticmethod\n- def _generate_setup_queries(expr, context):\n- \"\"\"Generate DDL for temporary resources.\"\"\"\n- nodes = lin.traverse(find_bigquery_udf, expr)\n- queries = map(partial(BigQueryUDFDefinition, context=context), nodes)\n+ def _gen_valid_name(name: str) -> str:\n+ return \"_\".join(_NAME_REGEX.findall(name)) or \"tmp\"\n+\n+ @visit_node.register(ops.CountStar)\n+ def visit_CountStar(self, op, *, arg, where):\n+ if where is not None:\n+ return self.f.countif(where)\n+ return self.f.count(STAR)\n+\n+ @visit_node.register(ops.Degrees)\n+ def visit_Degrees(self, op, *, arg):\n+ return paren(180 * arg / self.f.acos(-1))\n+\n+ @visit_node.register(ops.Radians)\n+ def visit_Radians(self, op, *, arg):\n+ return paren(self.f.acos(-1) * arg / 180)\n+\n+ @visit_node.register(ops.CountDistinct)\n+ def visit_CountDistinct(self, op, *, arg, where):\n+ if where is not None:\n+ arg = self.if_(where, arg, NULL)\n+ return self.f.count(sge.Distinct(expressions=[arg]))\n+\n+ @visit_node.register(ops.CountDistinctStar)\n+ @visit_node.register(ops.DateDiff)\n+ @visit_node.register(ops.ExtractAuthority)\n+ @visit_node.register(ops.ExtractFile)\n+ @visit_node.register(ops.ExtractFragment)\n+ @visit_node.register(ops.ExtractHost)\n+ @visit_node.register(ops.ExtractPath)\n+ @visit_node.register(ops.ExtractProtocol)\n+ @visit_node.register(ops.ExtractQuery)\n+ @visit_node.register(ops.ExtractUserInfo)\n+ @visit_node.register(ops.FindInSet)\n+ @visit_node.register(ops.Median)\n+ @visit_node.register(ops.Quantile)\n+ @visit_node.register(ops.MultiQuantile)\n+ @visit_node.register(ops.RegexSplit)\n+ @visit_node.register(ops.RowID)\n+ @visit_node.register(ops.TimestampBucket)\n+ @visit_node.register(ops.TimestampDiff)\n+ def visit_Undefined(self, op, **_):\n+ raise com.OperationNotDefinedError(type(op).__name__)\n+\n+\n+_SIMPLE_OPS = {\n+ ops.StringAscii: \"ascii\",\n+ ops.BitAnd: \"bit_and\",\n+ ops.BitOr: \"bit_or\",\n+ ops.BitXor: \"bit_xor\",\n+ ops.DateFromYMD: \"date\",\n+ ops.Divide: \"ieee_divide\",\n+ ops.EndsWith: \"ends_with\",\n+ ops.GeoArea: \"st_area\",\n+ ops.GeoAsBinary: \"st_asbinary\",\n+ ops.GeoAsText: \"st_astext\",\n+ ops.GeoAzimuth: \"st_azimuth\",\n+ ops.GeoBuffer: \"st_buffer\",\n+ ops.GeoCentroid: \"st_centroid\",\n+ ops.GeoContains: \"st_contains\",\n+ ops.GeoCoveredBy: \"st_coveredby\",\n+ ops.GeoCovers: \"st_covers\",\n+ ops.GeoDWithin: \"st_dwithin\",\n+ ops.GeoDifference: \"st_difference\",\n+ ops.GeoDisjoint: \"st_disjoint\",\n+ ops.GeoDistance: \"st_distance\",\n+ ops.GeoEndPoint: \"st_endpoint\",\n+ ops.GeoEquals: \"st_equals\",\n+ ops.GeoGeometryType: \"st_geometrytype\",\n+ ops.GeoIntersection: \"st_intersection\",\n+ ops.GeoIntersects: \"st_intersects\",\n+ ops.GeoLength: \"st_length\",\n+ ops.GeoMaxDistance: \"st_maxdistance\",\n+ ops.GeoNPoints: \"st_numpoints\",\n+ ops.GeoPerimeter: \"st_perimeter\",\n+ ops.GeoPoint: \"st_geogpoint\",\n+ ops.GeoPointN: \"st_pointn\",\n+ ops.GeoStartPoint: \"st_startpoint\",\n+ ops.GeoTouches: \"st_touches\",\n+ ops.GeoUnaryUnion: \"st_union_agg\",\n+ ops.GeoUnion: \"st_union\",\n+ ops.GeoWithin: \"st_within\",\n+ ops.GeoX: \"st_x\",\n+ ops.GeoY: \"st_y\",\n+ ops.Hash: \"farm_fingerprint\",\n+ ops.IsInf: \"is_inf\",\n+ ops.IsNan: \"is_nan\",\n+ ops.Log10: \"log10\",\n+ ops.LPad: \"lpad\",\n+ ops.RPad: \"rpad\",\n+ ops.Levenshtein: \"edit_distance\",\n+ ops.Modulus: \"mod\",\n+ ops.RandomScalar: \"rand\",\n+ ops.RegexReplace: \"regexp_replace\",\n+ ops.RegexSearch: \"regexp_contains\",\n+ ops.Time: \"time\",\n+ ops.TimeFromHMS: \"time\",\n+ ops.TimestampFromYMDHMS: \"datetime\",\n+ ops.TimestampNow: \"current_timestamp\",\n+}\n+\n+\n+for _op, _name in _SIMPLE_OPS.items():\n+ assert isinstance(type(_op), type), type(_op)\n+ if issubclass(_op, ops.Reduction):\n+\n+ @BigQueryCompiler.visit_node.register(_op)\n+ def _fmt(self, op, *, _name: str = _name, where, **kw):\n+ return self.agg[_name](*kw.values(), where=where)\n \n- # UDFs are uniquely identified by the name of the Node subclass we\n- # generate.\n- def key(x):\n- expr = x.expr\n- op = expr.op() if isinstance(expr, ir.Expr) else expr\n- return op.__class__.__name__\n+ else:\n \n- return list(toolz.unique(queries, key=key))\n+ @BigQueryCompiler.visit_node.register(_op)\n+ def _fmt(self, op, *, _name: str = _name, **kw):\n+ return self.f[_name](*kw.values())\n \n+ setattr(BigQueryCompiler, f\"visit_{_op.__name__}\", _fmt)\n \n-# Register custom UDFs\n-import ibis.backends.bigquery.custom_udfs # noqa: F401, E402\n+del _op, _name, _fmt\n", "datatypes.py": "@@ -1,126 +1,14 @@\n from __future__ import annotations\n \n import google.cloud.bigquery as bq\n-import sqlglot.expressions as sge\n \n import ibis\n import ibis.expr.datatypes as dt\n import ibis.expr.schema as sch\n-from ibis.backends.base.sqlglot.datatypes import SqlglotType\n+from ibis.backends.base.sqlglot.datatypes import BigQueryType\n from ibis.formats import SchemaMapper\n \n \n-class BigQueryType(SqlglotType):\n- dialect = \"bigquery\"\n-\n- default_decimal_precision = 38\n- default_decimal_scale = 9\n-\n- @classmethod\n- def _from_sqlglot_NUMERIC(cls) -> dt.Decimal:\n- return dt.Decimal(\n- cls.default_decimal_precision,\n- cls.default_decimal_scale,\n- nullable=cls.default_nullable,\n- )\n-\n- @classmethod\n- def _from_sqlglot_BIGNUMERIC(cls) -> dt.Decimal:\n- return dt.Decimal(76, 38, nullable=cls.default_nullable)\n-\n- @classmethod\n- def _from_sqlglot_DATETIME(cls) -> dt.Decimal:\n- return dt.Timestamp(timezone=None, nullable=cls.default_nullable)\n-\n- @classmethod\n- def _from_sqlglot_TIMESTAMP(cls) -> dt.Decimal:\n- return dt.Timestamp(timezone=\"UTC\", nullable=cls.default_nullable)\n-\n- @classmethod\n- def _from_sqlglot_GEOGRAPHY(cls) -> dt.Decimal:\n- return dt.GeoSpatial(\n- geotype=\"geography\", srid=4326, nullable=cls.default_nullable\n- )\n-\n- @classmethod\n- def _from_sqlglot_TINYINT(cls) -> dt.Int64:\n- return dt.Int64(nullable=cls.default_nullable)\n-\n- _from_sqlglot_UINT = (\n- _from_sqlglot_USMALLINT\n- ) = (\n- _from_sqlglot_UTINYINT\n- ) = _from_sqlglot_INT = _from_sqlglot_SMALLINT = _from_sqlglot_TINYINT\n-\n- @classmethod\n- def _from_sqlglot_UBIGINT(cls) -> dt.Int64:\n- raise TypeError(\"Unsigned BIGINT isn't representable in BigQuery INT64\")\n-\n- @classmethod\n- def _from_sqlglot_FLOAT(cls) -> dt.Double:\n- return dt.Float64(nullable=cls.default_nullable)\n-\n- @classmethod\n- def _from_sqlglot_MAP(cls) -> dt.Map:\n- raise NotImplementedError(\n- \"Cannot convert sqlglot Map type to ibis type: maps are not supported in BigQuery\"\n- )\n-\n- @classmethod\n- def _from_ibis_Map(cls, dtype: dt.Map) -> sge.DataType:\n- raise NotImplementedError(\n- \"Cannot convert Ibis Map type to BigQuery type: maps are not supported in BigQuery\"\n- )\n-\n- @classmethod\n- def _from_ibis_Timestamp(cls, dtype: dt.Timestamp) -> sge.DataType:\n- if dtype.timezone is None:\n- return sge.DataType(this=sge.DataType.Type.DATETIME)\n- elif dtype.timezone == \"UTC\":\n- return sge.DataType(this=sge.DataType.Type.TIMESTAMPTZ)\n- else:\n- raise TypeError(\n- \"BigQuery does not support timestamps with timezones other than 'UTC'\"\n- )\n-\n- @classmethod\n- def _from_ibis_Decimal(cls, dtype: dt.Decimal) -> sge.DataType:\n- precision = dtype.precision\n- scale = dtype.scale\n- if (precision, scale) == (76, 38):\n- return sge.DataType(this=sge.DataType.Type.BIGDECIMAL)\n- elif (precision, scale) in ((38, 9), (None, None)):\n- return sge.DataType(this=sge.DataType.Type.DECIMAL)\n- else:\n- raise TypeError(\n- \"BigQuery only supports decimal types with precision of 38 and \"\n- f\"scale of 9 (NUMERIC) or precision of 76 and scale of 38 (BIGNUMERIC). \"\n- f\"Current precision: {dtype.precision}. Current scale: {dtype.scale}\"\n- )\n-\n- @classmethod\n- def _from_ibis_UInt64(cls, dtype: dt.UInt64) -> sge.DataType:\n- raise TypeError(\n- f\"Conversion from {dtype} to BigQuery integer type (Int64) is lossy\"\n- )\n-\n- @classmethod\n- def _from_ibis_UInt32(cls, dtype: dt.UInt32) -> sge.DataType:\n- return sge.DataType(this=sge.DataType.Type.BIGINT)\n-\n- _from_ibis_UInt8 = _from_ibis_UInt16 = _from_ibis_UInt32\n-\n- @classmethod\n- def _from_ibis_GeoSpatial(cls, dtype: dt.GeoSpatial) -> sge.DataType:\n- if (dtype.geotype, dtype.srid) == (\"geography\", 4326):\n- return sge.DataType(this=sge.DataType.Type.GEOGRAPHY)\n- else:\n- raise TypeError(\n- \"BigQuery geography uses points on WGS84 reference ellipsoid.\"\n- f\"Current geotype: {dtype.geotype}, Current srid: {dtype.srid}\"\n- )\n-\n-\n class BigQuerySchema(SchemaMapper):\n @classmethod\n def from_ibis(cls, schema: sch.Schema) -> list[bq.SchemaField]:\n", "__init__.py": "@@ -433,7 +433,7 @@ class Backend(SQLGlotBackend):\n type_mapper = self.compiler.type_mapper\n argnames = udf_node.argnames\n return dict(\n- name=udf_node.__func_name__,\n+ name=type(udf_node).__name__,\n ident=self.compiler.__sql_name__(udf_node),\n signature=\", \".join(\n f\"{argname} {type_mapper.to_string(arg.dtype)}\"\n", "client.py": "@@ -24,7 +24,7 @@ def schema_from_bigquery_table(table):\n partition_field = partition_info.field or NATIVE_PARTITION_COL\n # Only add a new column if it's not already a column in the schema\n if partition_field not in schema:\n- schema |= {partition_field: dt.timestamp}\n+ schema |= {partition_field: dt.Timestamp(timezone=\"UTC\")}\n \n return schema\n \n", "converter.py": "@@ -0,0 +1,20 @@\n+from __future__ import annotations\n+\n+from ibis.formats.pandas import PandasData\n+\n+\n+class BigQueryPandasData(PandasData):\n+ @classmethod\n+ def convert_GeoSpatial(cls, s, dtype, pandas_type):\n+ import geopandas as gpd\n+ import shapely as shp\n+\n+ return gpd.GeoSeries(shp.from_wkt(s))\n+\n+ convert_Point = (\n+ convert_LineString\n+ ) = (\n+ convert_Polygon\n+ ) = (\n+ convert_MultiLineString\n+ ) = convert_MultiPoint = convert_MultiPolygon = convert_GeoSpatial\n", "custom_udfs.py": "@@ -1,41 +0,0 @@\n-from __future__ import annotations\n-\n-import ibis.expr.datatypes as dt\n-import ibis.expr.operations as ops\n-from ibis.backends.bigquery.compiler import BigQueryExprTranslator\n-from ibis.backends.bigquery.udf import udf\n-\n-# Based on:\n-# https://github.com/GoogleCloudPlatform/bigquery-utils/blob/45e1ac51367ab6209f68e04b1660d5b00258c131/udfs/community/typeof.sqlx#L1\n-typeof_ = udf.sql(\n- name=\"typeof\",\n- params={\"input\": \"ANY TYPE\"},\n- output_type=dt.str,\n- sql_expression=r\"\"\"\n- (\n- SELECT\n- CASE\n- -- Process NUMERIC, DATE, DATETIME, TIME, TIMESTAMP,\n- WHEN REGEXP_CONTAINS(literal, r'^[A-Z]+ \"') THEN REGEXP_EXTRACT(literal, r'^([A-Z]+) \"')\n- WHEN REGEXP_CONTAINS(literal, r'^-?[0-9]*$') THEN 'INT64'\n- WHEN\n- REGEXP_CONTAINS(literal, r'^(-?[0-9]+[.e].*|CAST\\(\"([^\"]*)\" AS FLOAT64\\))$')\n- THEN\n- 'FLOAT64'\n- WHEN literal IN ('true', 'false') THEN 'BOOL'\n- WHEN literal LIKE '\"%' OR literal LIKE \"'%\" THEN 'STRING'\n- WHEN literal LIKE 'b\"%' THEN 'BYTES'\n- WHEN literal LIKE '[%' THEN 'ARRAY'\n- WHEN REGEXP_CONTAINS(literal, r'^(STRUCT)?\\(') THEN 'STRUCT'\n- WHEN literal LIKE 'ST_%' THEN 'GEOGRAPHY'\n- WHEN literal = 'NULL' THEN 'NULL'\n- ELSE\n- 'UNKNOWN'\n- END\n- FROM\n- UNNEST([FORMAT('%T', input)]) AS literal\n- )\n- \"\"\",\n-)\n-\n-BigQueryExprTranslator.rewrites(ops.TypeOf)(lambda op: typeof_(op.arg).op())\n", "operations.py": "@@ -1,9 +0,0 @@\n-\"\"\"Ibis operations specific to BigQuery.\"\"\"\n-\n-from __future__ import annotations\n-\n-import ibis.expr.operations as ops\n-\n-\n-class BigQueryUDFNode(ops.ValueOp):\n- \"\"\"Represents use of a UDF.\"\"\"\n", "registry.py": "@@ -1,1020 +0,0 @@\n-\"\"\"Module to convert from Ibis expression to SQL string.\"\"\"\n-\n-from __future__ import annotations\n-\n-import contextlib\n-from typing import TYPE_CHECKING, Literal\n-\n-import numpy as np\n-import sqlglot as sg\n-from multipledispatch import Dispatcher\n-\n-import ibis\n-import ibis.common.exceptions as com\n-import ibis.expr.datatypes as dt\n-import ibis.expr.operations as ops\n-from ibis import util\n-from ibis.backends.base.sql.registry import (\n- fixed_arity,\n- helpers,\n- operation_registry,\n- reduction,\n- unary,\n-)\n-from ibis.backends.base.sql.registry.literal import _string_literal_format\n-from ibis.backends.base.sql.registry.main import table_array_view\n-from ibis.backends.bigquery.datatypes import BigQueryType\n-from ibis.common.temporal import DateUnit, IntervalUnit, TimeUnit\n-\n-if TYPE_CHECKING:\n- from ibis.backends.base.sql import compiler\n-\n-\n-def _extract_field(sql_attr):\n- def extract_field_formatter(translator, op):\n- arg = translator.translate(op.args[0])\n- if sql_attr == \"epochseconds\":\n- return f\"UNIX_SECONDS({arg})\"\n- else:\n- return f\"EXTRACT({sql_attr} from {arg})\"\n-\n- return extract_field_formatter\n-\n-\n-bigquery_cast = Dispatcher(\"bigquery_cast\")\n-\n-\n-@bigquery_cast.register(str, dt.Timestamp, dt.Integer)\n-def bigquery_cast_timestamp_to_integer(compiled_arg, from_, to):\n- \"\"\"Convert TIMESTAMP to INT64 (seconds since Unix epoch).\"\"\"\n- return f\"UNIX_MICROS({compiled_arg})\"\n-\n-\n-@bigquery_cast.register(str, dt.Integer, dt.Timestamp)\n-def bigquery_cast_integer_to_timestamp(compiled_arg, from_, to):\n- \"\"\"Convert INT64 (seconds since Unix epoch) to Timestamp.\"\"\"\n- return f\"TIMESTAMP_SECONDS({compiled_arg})\"\n-\n-\n-@bigquery_cast.register(str, dt.Interval, dt.Integer)\n-def bigquery_cast_interval_to_integer(compiled_arg, from_, to):\n- if from_.unit in {IntervalUnit.WEEK, IntervalUnit.QUARTER, IntervalUnit.NANOSECOND}:\n- raise com.UnsupportedOperationError(\n- f\"BigQuery does not allow extracting date part `{from_.unit}` from intervals\"\n- )\n-\n- return f\"EXTRACT({from_.resolution.upper()} from {compiled_arg})\"\n-\n-\n-@bigquery_cast.register(str, dt.Floating, dt.Integer)\n-def bigquery_cast_floating_to_integer(compiled_arg, from_, to):\n- \"\"\"Convert FLOAT64 to INT64 without rounding.\"\"\"\n- return f\"CAST(TRUNC({compiled_arg}) AS INT64)\"\n-\n-\n-@bigquery_cast.register(str, dt.DataType, dt.DataType)\n-def bigquery_cast_generate(compiled_arg, from_, to):\n- \"\"\"Cast to desired type.\"\"\"\n- sql_type = BigQueryType.to_string(to)\n- return f\"CAST({compiled_arg} AS {sql_type})\"\n-\n-\n-@bigquery_cast.register(str, dt.DataType)\n-def bigquery_cast_generate_simple(compiled_arg, to):\n- return bigquery_cast(compiled_arg, to, to)\n-\n-\n-def _cast(translator, op):\n- arg, target_type = op.args\n- arg_formatted = translator.translate(arg)\n- input_dtype = arg.dtype\n- return bigquery_cast(arg_formatted, input_dtype, target_type)\n-\n-\n-def integer_to_timestamp(translator: compiler.ExprTranslator, op) -> str:\n- \"\"\"Interprets an integer as a timestamp.\"\"\"\n- arg = translator.translate(op.arg)\n- unit = op.unit.short\n-\n- if unit == \"s\":\n- return f\"TIMESTAMP_SECONDS({arg})\"\n- elif unit == \"ms\":\n- return f\"TIMESTAMP_MILLIS({arg})\"\n- elif unit == \"us\":\n- return f\"TIMESTAMP_MICROS({arg})\"\n- elif unit == \"ns\":\n- # Timestamps are represented internally as elapsed microseconds, so some\n- # rounding is required if an integer represents nanoseconds.\n- # https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#timestamp_type\n- return f\"TIMESTAMP_MICROS(CAST(ROUND({arg} / 1000) AS INT64))\"\n-\n- raise NotImplementedError(f\"cannot cast unit {op.unit}\")\n-\n-\n-def _struct_field(translator, op):\n- arg = translator.translate(op.arg)\n- return f\"{arg}.`{op.field}`\"\n-\n-\n-def _struct_column(translator, op):\n- cols = (\n- f\"{translator.translate(value)} AS {name}\"\n- for name, value in zip(op.names, op.values)\n- )\n- return \"STRUCT({})\".format(\", \".join(cols))\n-\n-\n-def _array_concat(translator, op):\n- return \"ARRAY_CONCAT({})\".format(\", \".join(map(translator.translate, op.arg)))\n-\n-\n-def _array_column(translator, op):\n- return \"[{}]\".format(\", \".join(map(translator.translate, op.exprs)))\n-\n-\n-def _array_index(translator, op):\n- # SAFE_OFFSET returns NULL if out of bounds\n- arg = translator.translate(op.arg)\n- index = translator.translate(op.index)\n- return f\"{arg}[SAFE_OFFSET({index})]\"\n-\n-\n-def _array_contains(translator, op):\n- arg = translator.translate(op.arg)\n- other = translator.translate(op.other)\n- name = util.gen_name(\"bq_arr\")\n- return f\"(SELECT LOGICAL_OR({name} = {other}) FROM UNNEST({arg}) {name})\"\n-\n-\n-def _array_position(translator, op):\n- arg = translator.translate(op.arg)\n- other = translator.translate(op.other)\n- name = util.gen_name(\"bq_arr\")\n- idx = util.gen_name(\"bq_arr_idx\")\n- unnest = f\"UNNEST({arg}) {name} WITH OFFSET AS {idx}\"\n- return f\"COALESCE((SELECT {idx} FROM {unnest} WHERE {name} = {other} LIMIT 1), -1)\"\n-\n-\n-def _array_remove(translator, op):\n- arg = translator.translate(op.arg)\n- other = translator.translate(op.other)\n- name = util.gen_name(\"bq_arr\")\n- return f\"ARRAY(SELECT {name} FROM UNNEST({arg}) {name} WHERE {name} <> {other})\"\n-\n-\n-def _array_distinct(translator, op):\n- arg = translator.translate(op.arg)\n- name = util.gen_name(\"bq_arr\")\n- return f\"ARRAY(SELECT DISTINCT {name} FROM UNNEST({arg}) {name})\"\n-\n-\n-def _array_sort(translator, op):\n- arg = translator.translate(op.arg)\n- name = util.gen_name(\"bq_arr\")\n- return f\"ARRAY(SELECT {name} FROM UNNEST({arg}) {name} ORDER BY {name})\"\n-\n-\n-def _array_union(translator, op):\n- left = translator.translate(op.left)\n- right = translator.translate(op.right)\n-\n- lname = util.gen_name(\"bq_arr_left\")\n- rname = util.gen_name(\"bq_arr_right\")\n-\n- left_expr = f\"SELECT {lname} FROM UNNEST({left}) {lname}\"\n- right_expr = f\"SELECT {rname} FROM UNNEST({right}) {rname}\"\n-\n- return f\"ARRAY({left_expr} UNION DISTINCT {right_expr})\"\n-\n-\n-def _array_intersect(translator, op):\n- left = translator.translate(op.left)\n- right = translator.translate(op.right)\n-\n- lname = util.gen_name(\"bq_arr_left\")\n- rname = util.gen_name(\"bq_arr_right\")\n-\n- left_expr = f\"SELECT {lname} FROM UNNEST({left}) {lname}\"\n- right_expr = f\"SELECT {rname} FROM UNNEST({right}) {rname}\"\n-\n- return f\"ARRAY({left_expr} INTERSECT DISTINCT {right_expr})\"\n-\n-\n-def _array_zip(translator, op):\n- arg = list(map(translator.translate, op.arg))\n- lengths = \", \".join(map(\"ARRAY_LENGTH({}) - 1\".format, arg))\n- indices = f\"UNNEST(GENERATE_ARRAY(0, GREATEST({lengths})))\"\n- idx = util.gen_name(\"bq_arr_idx\")\n- struct_fields = \", \".join(\n- f\"{arr}[SAFE_OFFSET({idx})] AS {name}\"\n- for name, arr in zip(op.dtype.value_type.names, arg)\n- )\n- return f\"ARRAY(SELECT AS STRUCT {struct_fields} FROM {indices} {idx})\"\n-\n-\n-def _array_map(translator, op):\n- arg = translator.translate(op.arg)\n- result = translator.translate(op.body)\n- param = op.param\n- return f\"ARRAY(SELECT {result} FROM UNNEST({arg}) {param})\"\n-\n-\n-def _array_filter(translator, op):\n- arg = translator.translate(op.arg)\n- result = translator.translate(op.body)\n- param = op.param\n- return f\"ARRAY(SELECT {param} FROM UNNEST({arg}) {param} WHERE {result})\"\n-\n-\n-def _hash(translator, op):\n- arg_formatted = translator.translate(op.arg)\n- return f\"farm_fingerprint({arg_formatted})\"\n-\n-\n-def _string_find(translator, op):\n- haystack, needle, start, end = op.args\n-\n- if start is not None:\n- raise NotImplementedError(\"start not implemented for string find\")\n- if end is not None:\n- raise NotImplementedError(\"end not implemented for string find\")\n-\n- return \"STRPOS({}, {}) - 1\".format(\n- translator.translate(haystack), translator.translate(needle)\n- )\n-\n-\n-def _regex_search(translator, op):\n- arg = translator.translate(op.arg)\n- regex = translator.translate(op.pattern)\n- return f\"REGEXP_CONTAINS({arg}, {regex})\"\n-\n-\n-def _regex_extract(translator, op):\n- arg = translator.translate(op.arg)\n- regex = translator.translate(op.pattern)\n- index = translator.translate(op.index)\n- matches = f\"REGEXP_CONTAINS({arg}, {regex})\"\n- # non-greedily match the regex's prefix so the regex can match as much as possible\n- nonzero_index_replace = rf\"REGEXP_REPLACE({arg}, CONCAT('.*?', {regex}, '.*'), CONCAT('\\\\', CAST({index} AS STRING)))\"\n- # zero index replacement means capture everything matched by the regex, so\n- # we wrap the regex in an outer group\n- zero_index_replace = (\n- rf\"REGEXP_REPLACE({arg}, CONCAT('.*?', CONCAT('(', {regex}, ')'), '.*'), '\\\\1')\"\n- )\n- extract = f\"IF({index} = 0, {zero_index_replace}, {nonzero_index_replace})\"\n- return f\"IF({matches}, {extract}, NULL)\"\n-\n-\n-def _regex_replace(translator, op):\n- arg = translator.translate(op.arg)\n- regex = translator.translate(op.pattern)\n- replacement = translator.translate(op.replacement)\n- return f\"REGEXP_REPLACE({arg}, {regex}, {replacement})\"\n-\n-\n-def _string_concat(translator, op):\n- args = \", \".join(map(translator.translate, op.arg))\n- return f\"CONCAT({args})\"\n-\n-\n-def _string_join(translator, op):\n- sep, args = op.args\n- return \"ARRAY_TO_STRING([{}], {})\".format(\n- \", \".join(map(translator.translate, args)), translator.translate(sep)\n- )\n-\n-\n-def _string_ascii(translator, op):\n- arg = translator.translate(op.arg)\n- return f\"TO_CODE_POINTS({arg})[SAFE_OFFSET(0)]\"\n-\n-\n-def _string_right(translator, op):\n- arg, nchars = map(translator.translate, op.args)\n- return f\"SUBSTR({arg}, -LEAST(LENGTH({arg}), {nchars}))\"\n-\n-\n-def _string_substring(translator, op):\n- length = op.length\n- if (length := getattr(length, \"value\", None)) is not None and length < 0:\n- raise ValueError(\"Length parameter must be a non-negative value.\")\n-\n- arg = translator.translate(op.arg)\n- start = translator.translate(op.start)\n-\n- arg_length = f\"LENGTH({arg})\"\n- if op.length is not None:\n- suffix = f\", {translator.translate(op.length)}\"\n- else:\n- suffix = \"\"\n-\n- if_pos = f\"SUBSTR({arg}, {start} + 1{suffix})\"\n- if_neg = f\"SUBSTR({arg}, {arg_length} + {start} + 1{suffix})\"\n- return f\"IF({start} >= 0, {if_pos}, {if_neg})\"\n-\n-\n-def _log(translator, op):\n- arg, base = op.args\n- arg_formatted = translator.translate(arg)\n-\n- if base is None:\n- return f\"ln({arg_formatted})\"\n-\n- base_formatted = translator.translate(base)\n- return f\"log({arg_formatted}, {base_formatted})\"\n-\n-\n-def _sg_literal(val) -> str:\n- return sg.exp.Literal(this=str(val), is_string=isinstance(val, str)).sql(\n- dialect=\"bigquery\"\n- )\n-\n-\n-def _literal(t, op):\n- dtype = op.dtype\n- value = op.value\n-\n- if value is None:\n- if not dtype.is_null():\n- return f\"CAST(NULL AS {BigQueryType.to_string(dtype)})\"\n- return \"NULL\"\n- elif dtype.is_boolean():\n- return str(value).upper()\n- elif dtype.is_string() or dtype.is_inet() or dtype.is_macaddr():\n- return _string_literal_format(t, op)\n- elif dtype.is_decimal():\n- if value.is_nan():\n- return \"CAST('NaN' AS FLOAT64)\"\n- elif value.is_infinite():\n- prefix = \"-\" * value.is_signed()\n- return f\"CAST('{prefix}inf' AS FLOAT64)\"\n- else:\n- return f\"{BigQueryType.to_string(dtype)} '{value}'\"\n- elif dtype.is_uuid():\n- return _sg_literal(str(value))\n- elif dtype.is_numeric():\n- if not np.isfinite(value):\n- return f\"CAST({str(value)!r} AS FLOAT64)\"\n- return _sg_literal(value)\n- elif dtype.is_date():\n- with contextlib.suppress(AttributeError):\n- value = value.date()\n- return f\"DATE {_sg_literal(str(value))}\"\n- elif dtype.is_timestamp():\n- typename = \"DATETIME\" if dtype.timezone is None else \"TIMESTAMP\"\n- return f\"{typename} {_sg_literal(str(value))}\"\n- elif dtype.is_time():\n- # TODO: define extractors on TimeValue expressions\n- return f\"TIME {_sg_literal(str(value))}\"\n- elif dtype.is_binary():\n- return repr(value)\n- elif dtype.is_struct():\n- cols = \", \".join(\n- f\"{t.translate(ops.Literal(value[name], dtype=typ))} AS `{name}`\"\n- for name, typ in dtype.items()\n- )\n- return f\"STRUCT({cols})\"\n- elif dtype.is_array():\n- val_type = dtype.value_type\n- values = \", \".join(\n- t.translate(ops.Literal(element, dtype=val_type)) for element in value\n- )\n- return f\"[{values}]\"\n- elif dtype.is_interval():\n- return f\"INTERVAL {value} {dtype.resolution.upper()}\"\n- else:\n- raise NotImplementedError(f\"Unsupported type for BigQuery literal: {dtype}\")\n-\n-\n-def _arbitrary(translator, op):\n- arg, how, where = op.args\n-\n- if where is not None:\n- arg = ops.IfElse(where, arg, ibis.NA)\n-\n- if how != \"first\":\n- raise com.UnsupportedOperationError(\n- f\"{how!r} value not supported for arbitrary in BigQuery\"\n- )\n-\n- return f\"ANY_VALUE({translator.translate(arg)})\"\n-\n-\n-def _first(translator, op):\n- arg = op.arg\n- where = op.where\n-\n- if where is not None:\n- arg = ops.IfElse(where, arg, ibis.NA)\n-\n- arg = translator.translate(arg)\n- return f\"ARRAY_AGG({arg} IGNORE NULLS)[SAFE_OFFSET(0)]\"\n-\n-\n-def _last(translator, op):\n- arg = op.arg\n- where = op.where\n-\n- if where is not None:\n- arg = ops.IfElse(where, arg, ibis.NA)\n-\n- arg = translator.translate(arg)\n- return f\"ARRAY_REVERSE(ARRAY_AGG({arg} IGNORE NULLS))[SAFE_OFFSET(0)]\"\n-\n-\n-def _truncate(kind, units):\n- def truncator(translator, op):\n- arg, unit = op.args\n- trans_arg = translator.translate(arg)\n- if unit not in units:\n- raise com.UnsupportedOperationError(\n- f\"BigQuery does not support truncating {arg.dtype} values to unit {unit!r}\"\n- )\n- if unit.name == \"WEEK\":\n- unit = \"WEEK(MONDAY)\"\n- else:\n- unit = unit.name\n- return f\"{kind}_TRUNC({trans_arg}, {unit})\"\n-\n- return truncator\n-\n-\n-# BigQuery doesn't support nanosecond intervals\n-_date_truncate = _truncate(\"DATE\", DateUnit)\n-_time_truncate = _truncate(\"TIME\", set(TimeUnit) - {TimeUnit.NANOSECOND})\n-_timestamp_truncate = _truncate(\n- \"TIMESTAMP\", set(IntervalUnit) - {IntervalUnit.NANOSECOND}\n-)\n-\n-\n-def _date_binary(func):\n- def _formatter(translator, op):\n- arg, offset = op.left, op.right\n-\n- unit = offset.dtype.unit\n- if not unit.is_date():\n- raise com.UnsupportedOperationError(\n- f\"BigQuery does not allow binary operation {func} with INTERVAL offset {unit}\"\n- )\n-\n- formatted_arg = translator.translate(arg)\n- formatted_offset = translator.translate(offset)\n- return f\"{func}({formatted_arg}, {formatted_offset})\"\n-\n- return _formatter\n-\n-\n-def _timestamp_binary(func):\n- def _formatter(translator, op):\n- arg, offset = op.left, op.right\n-\n- unit = offset.dtype.unit\n- if unit == IntervalUnit.NANOSECOND:\n- raise com.UnsupportedOperationError(\n- f\"BigQuery does not allow binary operation {func} with INTERVAL offset {unit}\"\n- )\n-\n- if unit.is_date():\n- try:\n- offset = offset.to_expr().to_unit(\"h\").op()\n- except ValueError:\n- raise com.UnsupportedOperationError(\n- f\"BigQuery does not allow binary operation {func} with INTERVAL offset {unit}\"\n- )\n-\n- formatted_arg = translator.translate(arg)\n- formatted_offset = translator.translate(offset)\n- return f\"{func}({formatted_arg}, {formatted_offset})\"\n-\n- return _formatter\n-\n-\n-def _geo_boundingbox(dimension_name):\n- def _formatter(translator, op):\n- geog = op.args[0]\n- geog_formatted = translator.translate(geog)\n- return f\"ST_BOUNDINGBOX({geog_formatted}).{dimension_name}\"\n-\n- return _formatter\n-\n-\n-def _geo_simplify(translator, op):\n- geog, tolerance, preserve_collapsed = op.args\n- if preserve_collapsed.value:\n- raise com.UnsupportedOperationError(\n- \"BigQuery simplify does not support preserving collapsed geometries, \"\n- \"must pass preserve_collapsed=False\"\n- )\n- geog, tolerance = map(translator.translate, (geog, tolerance))\n- return f\"ST_SIMPLIFY({geog}, {tolerance})\"\n-\n-\n-STRFTIME_FORMAT_FUNCTIONS = {\n- dt.date: \"DATE\",\n- dt.time: \"TIME\",\n- dt.Timestamp(timezone=None): \"DATETIME\",\n- dt.Timestamp(timezone=\"UTC\"): \"TIMESTAMP\",\n-}\n-\n-\n-def bigquery_day_of_week_index(t, op):\n- \"\"\"Convert timestamp to day-of-week integer.\"\"\"\n- arg = op.args[0]\n- arg_formatted = t.translate(arg)\n- return f\"MOD(EXTRACT(DAYOFWEEK FROM {arg_formatted}) + 5, 7)\"\n-\n-\n-def bigquery_day_of_week_name(t, op):\n- \"\"\"Convert timestamp to day-of-week name.\"\"\"\n- return f\"INITCAP(CAST({t.translate(op.arg)} AS STRING FORMAT 'DAY'))\"\n-\n-\n-def bigquery_compiles_divide(t, op):\n- \"\"\"Floating point division.\"\"\"\n- return f\"IEEE_DIVIDE({t.translate(op.left)}, {t.translate(op.right)})\"\n-\n-\n-def compiles_strftime(translator, op):\n- \"\"\"Timestamp formatting.\"\"\"\n- arg = op.arg\n- format_str = op.format_str\n- arg_type = arg.dtype\n- strftime_format_func_name = STRFTIME_FORMAT_FUNCTIONS[arg_type]\n- fmt_string = translator.translate(format_str)\n- arg_formatted = translator.translate(arg)\n- if isinstance(arg_type, dt.Timestamp) and arg_type.timezone is None:\n- return f\"FORMAT_{strftime_format_func_name}({fmt_string}, {arg_formatted})\"\n- elif isinstance(arg_type, dt.Timestamp):\n- return \"FORMAT_{}({}, {}, {!r})\".format(\n- strftime_format_func_name,\n- fmt_string,\n- arg_formatted,\n- arg_type.timezone,\n- )\n- else:\n- return f\"FORMAT_{strftime_format_func_name}({fmt_string}, {arg_formatted})\"\n-\n-\n-def compiles_string_to_timestamp(translator, op):\n- \"\"\"Timestamp parsing.\"\"\"\n- fmt_string = translator.translate(op.format_str)\n- arg_formatted = translator.translate(op.arg)\n- return f\"PARSE_TIMESTAMP({fmt_string}, {arg_formatted})\"\n-\n-\n-def compiles_floor(t, op):\n- bigquery_type = BigQueryType.to_string(op.dtype)\n- arg = op.arg\n- return f\"CAST(FLOOR({t.translate(arg)}) AS {bigquery_type})\"\n-\n-\n-def compiles_approx(translator, op):\n- arg = op.arg\n- where = op.where\n-\n- if where is not None:\n- arg = ops.IfElse(where, arg, ibis.NA)\n-\n- return f\"APPROX_QUANTILES({translator.translate(arg)}, 2)[OFFSET(1)]\"\n-\n-\n-def compiles_covar_corr(func):\n- def translate(translator, op):\n- left = op.left\n- right = op.right\n-\n- if (where := op.where) is not None:\n- left = ops.IfElse(where, left, None)\n- right = ops.IfElse(where, right, None)\n-\n- left = translator.translate(\n- ops.Cast(left, dt.int64) if left.dtype.is_boolean() else left\n- )\n- right = translator.translate(\n- ops.Cast(right, dt.int64) if right.dtype.is_boolean() else right\n- )\n- return f\"{func}({left}, {right})\"\n-\n- return translate\n-\n-\n-def _covar(translator, op):\n- how = op.how[:4].upper()\n- assert how in (\"POP\", \"SAMP\"), 'how not in (\"POP\", \"SAMP\")'\n- return compiles_covar_corr(f\"COVAR_{how}\")(translator, op)\n-\n-\n-def _corr(translator, op):\n- if (how := op.how) == \"sample\":\n- raise ValueError(f\"Correlation with how={how!r} is not supported.\")\n- return compiles_covar_corr(\"CORR\")(translator, op)\n-\n-\n-def _identical_to(t, op):\n- left = t.translate(op.left)\n- right = t.translate(op.right)\n- return f\"{left} IS NOT DISTINCT FROM {right}\"\n-\n-\n-def _floor_divide(t, op):\n- left = t.translate(op.left)\n- right = t.translate(op.right)\n- return bigquery_cast(f\"FLOOR(IEEE_DIVIDE({left}, {right}))\", op.dtype)\n-\n-\n-def _log2(t, op):\n- return f\"LOG({t.translate(op.arg)}, 2)\"\n-\n-\n-def _is_nan(t, op):\n- return f\"IS_NAN({t.translate(op.arg)})\"\n-\n-\n-def _is_inf(t, op):\n- return f\"IS_INF({t.translate(op.arg)})\"\n-\n-\n-def _array_agg(t, op):\n- arg = op.arg\n- if (where := op.where) is not None:\n- arg = ops.IfElse(where, arg, ibis.NA)\n- return f\"ARRAY_AGG({t.translate(arg)} IGNORE NULLS)\"\n-\n-\n-def _arg_min_max(sort_dir: Literal[\"ASC\", \"DESC\"]):\n- def translate(t, op: ops.ArgMin | ops.ArgMax) -> str:\n- arg = op.arg\n- if (where := op.where) is not None:\n- arg = ops.IfElse(where, arg, None)\n- arg = t.translate(arg)\n- key = t.translate(op.key)\n- return f\"ARRAY_AGG({arg} IGNORE NULLS ORDER BY {key} {sort_dir} LIMIT 1)[SAFE_OFFSET(0)]\"\n-\n- return translate\n-\n-\n-def _array_repeat(t, op):\n- start = step = 1\n- times = t.translate(op.times)\n- arg = t.translate(op.arg)\n- array_length = f\"ARRAY_LENGTH({arg})\"\n- stop = f\"GREATEST({times}, 0) * {array_length}\"\n- idx = f\"COALESCE(NULLIF(MOD(i, {array_length}), 0), {array_length})\"\n- series = f\"GENERATE_ARRAY({start}, {stop}, {step})\"\n- return f\"ARRAY(SELECT {arg}[SAFE_ORDINAL({idx})] FROM UNNEST({series}) AS i)\"\n-\n-\n-def _neg_idx_to_pos(array, idx):\n- return f\"IF({idx} < 0, ARRAY_LENGTH({array}) + {idx}, {idx})\"\n-\n-\n-def _array_slice(t, op):\n- arg = t.translate(op.arg)\n- cond = [f\"index >= {_neg_idx_to_pos(arg, t.translate(op.start))}\"]\n- if stop := op.stop:\n- cond.append(f\"index < {_neg_idx_to_pos(arg, t.translate(stop))}\")\n- return (\n- f\"ARRAY(\"\n- f\"SELECT el \"\n- f\"FROM UNNEST({arg}) AS el WITH OFFSET index \"\n- f\"WHERE {' AND '.join(cond)}\"\n- f\")\"\n- )\n-\n-\n-def _capitalize(t, op):\n- arg = t.translate(op.arg)\n- return f\"CONCAT(UPPER(SUBSTR({arg}, 1, 1)), LOWER(SUBSTR({arg}, 2)))\"\n-\n-\n-def _nth_value(t, op):\n- arg = t.translate(op.arg)\n-\n- if not isinstance(nth_op := op.nth, ops.Literal):\n- raise TypeError(f\"Bigquery nth must be a literal; got {type(op.nth)}\")\n-\n- return f\"NTH_VALUE({arg}, {nth_op.value + 1})\"\n-\n-\n-def _interval_multiply(t, op):\n- if isinstance(op.left, ops.Literal) and isinstance(op.right, ops.Literal):\n- value = op.left.value * op.right.value\n- literal = ops.Literal(value, op.left.dtype)\n- return t.translate(literal)\n-\n- left, right = t.translate(op.left), t.translate(op.right)\n- unit = op.left.dtype.resolution.upper()\n- return f\"INTERVAL EXTRACT({unit} from {left}) * {right} {unit}\"\n-\n-\n-def table_column(translator, op):\n- \"\"\"Override column references to adjust names for BigQuery.\"\"\"\n- quoted_name = translator._gen_valid_name(\n- helpers.quote_identifier(op.name, force=True)\n- )\n-\n- ctx = translator.context\n-\n- # If the column does not originate from the table set in the current SELECT\n- # context, we should format as a subquery\n- if translator.permit_subquery and ctx.is_foreign_expr(op.table):\n- # TODO(kszucs): avoid the expression roundtrip\n- proj_expr = op.table.to_expr().select([op.name]).to_array().op()\n- return table_array_view(translator, proj_expr)\n-\n- alias = ctx.get_ref(op.table, search_parents=True)\n- if alias is not None:\n- quoted_name = f\"{alias}.{quoted_name}\"\n-\n- return quoted_name\n-\n-\n-def _count_distinct_star(t, op):\n- raise com.UnsupportedOperationError(\n- \"BigQuery doesn't support COUNT(DISTINCT ...) with multiple columns\"\n- )\n-\n-\n-def _time_delta(t, op):\n- left = t.translate(op.left)\n- right = t.translate(op.right)\n- return f\"TIME_DIFF({left}, {right}, {op.part.value.upper()})\"\n-\n-\n-def _date_delta(t, op):\n- left = t.translate(op.left)\n- right = t.translate(op.right)\n- return f\"DATE_DIFF({left}, {right}, {op.part.value.upper()})\"\n-\n-\n-def _timestamp_delta(t, op):\n- left = t.translate(op.left)\n- right = t.translate(op.right)\n- left_tz = op.left.dtype.timezone\n- right_tz = op.right.dtype.timezone\n- args = f\"{left}, {right}, {op.part.value.upper()}\"\n- if left_tz is None and right_tz is None:\n- return f\"DATETIME_DIFF({args})\"\n- elif left_tz is not None and right_tz is not None:\n- return f\"TIMESTAMP_DIFF({args})\"\n- else:\n- raise NotImplementedError(\n- \"timestamp difference with mixed timezone/timezoneless values is not implemented\"\n- )\n-\n-\n-def _group_concat(translator, op):\n- arg = op.arg\n- where = op.where\n-\n- if where is not None:\n- arg = ops.IfElse(where, arg, ibis.NA)\n-\n- arg = translator.translate(arg)\n- sep = translator.translate(op.sep)\n- return f\"STRING_AGG({arg}, {sep})\"\n-\n-\n-def _zero(dtype):\n- if dtype.is_interval():\n- return \"MAKE_INTERVAL()\"\n- return \"0\"\n-\n-\n-def _sign(value, dtype):\n- if dtype.is_interval():\n- zero = _zero(dtype)\n- return f\"\"\"\\\n-CASE\n- WHEN {value} < {zero} THEN -1\n- WHEN {value} = {zero} THEN 0\n- WHEN {value} > {zero} THEN 1\n- ELSE NULL\n-END\"\"\"\n- return f\"SIGN({value})\"\n-\n-\n-def _nullifzero(step, zero, step_dtype):\n- if step_dtype.is_interval():\n- return f\"IF({step} = {zero}, NULL, {step})\"\n- return f\"NULLIF({step}, {zero})\"\n-\n-\n-def _make_range(func):\n- def _range(translator, op):\n- start = translator.translate(op.start)\n- stop = translator.translate(op.stop)\n- step = translator.translate(op.step)\n-\n- step_dtype = op.step.dtype\n- step_sign = _sign(step, step_dtype)\n- delta_sign = _sign(step, step_dtype)\n- zero = _zero(step_dtype)\n- nullifzero = _nullifzero(step, zero, step_dtype)\n-\n- condition = f\"{nullifzero} IS NOT NULL AND {step_sign} = {delta_sign}\"\n- gen_array = f\"{func}({start}, {stop}, {step})\"\n- inner = f\"SELECT x FROM UNNEST({gen_array}) x WHERE x <> {stop}\"\n- return f\"IF({condition}, ARRAY({inner}), [])\"\n-\n- return _range\n-\n-\n-def _timestamp_range(translator, op):\n- start = op.start\n- stop = op.stop\n-\n- if start.dtype.timezone is None or stop.dtype.timezone is None:\n- raise com.IbisTypeError(\n- \"Timestamps without timezone values are not supported when generating timestamp ranges\"\n- )\n-\n- rule = _make_range(\"GENERATE_TIMESTAMP_ARRAY\")\n- return rule(translator, op)\n-\n-\n-OPERATION_REGISTRY = {\n- **operation_registry,\n- # Literal\n- ops.Literal: _literal,\n- # Logical\n- ops.Any: reduction(\"LOGICAL_OR\"),\n- ops.All: reduction(\"LOGICAL_AND\"),\n- ops.NullIf: fixed_arity(\"NULLIF\", 2),\n- # Reductions\n- ops.ApproxMedian: compiles_approx,\n- ops.Covariance: _covar,\n- ops.Correlation: _corr,\n- # Math\n- ops.Divide: bigquery_compiles_divide,\n- ops.Floor: compiles_floor,\n- ops.Modulus: fixed_arity(\"MOD\", 2),\n- ops.Sign: unary(\"SIGN\"),\n- ops.BitwiseNot: lambda t, op: f\"~ {t.translate(op.arg)}\",\n- ops.BitwiseXor: lambda t, op: f\"{t.translate(op.left)} ^ {t.translate(op.right)}\",\n- ops.BitwiseOr: lambda t, op: f\"{t.translate(op.left)} | {t.translate(op.right)}\",\n- ops.BitwiseAnd: lambda t, op: f\"{t.translate(op.left)} & {t.translate(op.right)}\",\n- ops.BitwiseLeftShift: lambda t,\n- op: f\"{t.translate(op.left)} << {t.translate(op.right)}\",\n- ops.BitwiseRightShift: lambda t,\n- op: f\"{t.translate(op.left)} >> {t.translate(op.right)}\",\n- # Temporal functions\n- ops.Date: unary(\"DATE\"),\n- ops.DateFromYMD: fixed_arity(\"DATE\", 3),\n- ops.DateAdd: _date_binary(\"DATE_ADD\"),\n- ops.DateSub: _date_binary(\"DATE_SUB\"),\n- ops.DateTruncate: _date_truncate,\n- ops.DayOfWeekIndex: bigquery_day_of_week_index,\n- ops.DayOfWeekName: bigquery_day_of_week_name,\n- ops.ExtractEpochSeconds: _extract_field(\"epochseconds\"),\n- ops.ExtractYear: _extract_field(\"year\"),\n- ops.ExtractQuarter: _extract_field(\"quarter\"),\n- ops.ExtractMonth: _extract_field(\"month\"),\n- ops.ExtractWeekOfYear: _extract_field(\"isoweek\"),\n- ops.ExtractDay: _extract_field(\"day\"),\n- ops.ExtractDayOfYear: _extract_field(\"dayofyear\"),\n- ops.ExtractHour: _extract_field(\"hour\"),\n- ops.ExtractMinute: _extract_field(\"minute\"),\n- ops.ExtractSecond: _extract_field(\"second\"),\n- ops.ExtractMicrosecond: _extract_field(\"microsecond\"),\n- ops.ExtractMillisecond: _extract_field(\"millisecond\"),\n- ops.Strftime: compiles_strftime,\n- ops.StringToTimestamp: compiles_string_to_timestamp,\n- ops.Time: unary(\"TIME\"),\n- ops.TimeFromHMS: fixed_arity(\"TIME\", 3),\n- ops.TimeTruncate: _time_truncate,\n- ops.TimestampAdd: _timestamp_binary(\"TIMESTAMP_ADD\"),\n- ops.TimestampFromUNIX: integer_to_timestamp,\n- ops.TimestampFromYMDHMS: fixed_arity(\"DATETIME\", 6),\n- ops.TimestampNow: fixed_arity(\"CURRENT_TIMESTAMP\", 0),\n- ops.TimestampSub: _timestamp_binary(\"TIMESTAMP_SUB\"),\n- ops.TimestampTruncate: _timestamp_truncate,\n- ops.IntervalMultiply: _interval_multiply,\n- ops.Hash: _hash,\n- ops.StringReplace: fixed_arity(\"REPLACE\", 3),\n- ops.StringSplit: fixed_arity(\"SPLIT\", 2),\n- ops.StringConcat: _string_concat,\n- ops.StringJoin: _string_join,\n- ops.StringAscii: _string_ascii,\n- ops.StringFind: _string_find,\n- ops.Substring: _string_substring,\n- ops.StrRight: _string_right,\n- ops.Capitalize: _capitalize,\n- ops.Translate: fixed_arity(\"TRANSLATE\", 3),\n- ops.Repeat: fixed_arity(\"REPEAT\", 2),\n- ops.RegexSearch: _regex_search,\n- ops.RegexExtract: _regex_extract,\n- ops.RegexReplace: _regex_replace,\n- ops.GroupConcat: _group_concat,\n- ops.Cast: _cast,\n- ops.StructField: _struct_field,\n- ops.StructColumn: _struct_column,\n- ops.ArrayCollect: _array_agg,\n- ops.ArrayConcat: _array_concat,\n- ops.Array: _array_column,\n- ops.ArrayIndex: _array_index,\n- ops.ArrayLength: unary(\"ARRAY_LENGTH\"),\n- ops.ArrayRepeat: _array_repeat,\n- ops.ArraySlice: _array_slice,\n- ops.ArrayContains: _array_contains,\n- ops.ArrayPosition: _array_position,\n- ops.ArrayRemove: _array_remove,\n- ops.ArrayDistinct: _array_distinct,\n- ops.ArraySort: _array_sort,\n- ops.ArrayUnion: _array_union,\n- ops.ArrayIntersect: _array_intersect,\n- ops.ArrayZip: _array_zip,\n- ops.ArrayMap: _array_map,\n- ops.ArrayFilter: _array_filter,\n- ops.Log: _log,\n- ops.Log2: _log2,\n- ops.Arbitrary: _arbitrary,\n- ops.First: _first,\n- ops.Last: _last,\n- # Geospatial Columnar\n- ops.GeoUnaryUnion: unary(\"ST_UNION_AGG\"),\n- # Geospatial\n- ops.GeoArea: unary(\"ST_AREA\"),\n- ops.GeoAsBinary: unary(\"ST_ASBINARY\"),\n- ops.GeoAsText: unary(\"ST_ASTEXT\"),\n- ops.GeoAzimuth: fixed_arity(\"ST_AZIMUTH\", 2),\n- ops.GeoBuffer: fixed_arity(\"ST_BUFFER\", 2),\n- ops.GeoCentroid: unary(\"ST_CENTROID\"),\n- ops.GeoContains: fixed_arity(\"ST_CONTAINS\", 2),\n- ops.GeoCovers: fixed_arity(\"ST_COVERS\", 2),\n- ops.GeoCoveredBy: fixed_arity(\"ST_COVEREDBY\", 2),\n- ops.GeoDWithin: fixed_arity(\"ST_DWITHIN\", 3),\n- ops.GeoDifference: fixed_arity(\"ST_DIFFERENCE\", 2),\n- ops.GeoDisjoint: fixed_arity(\"ST_DISJOINT\", 2),\n- ops.GeoDistance: fixed_arity(\"ST_DISTANCE\", 2),\n- ops.GeoEndPoint: unary(\"ST_ENDPOINT\"),\n- ops.GeoEquals: fixed_arity(\"ST_EQUALS\", 2),\n- ops.GeoGeometryType: unary(\"ST_GEOMETRYTYPE\"),\n- ops.GeoIntersection: fixed_arity(\"ST_INTERSECTION\", 2),\n- ops.GeoIntersects: fixed_arity(\"ST_INTERSECTS\", 2),\n- ops.GeoLength: unary(\"ST_LENGTH\"),\n- ops.GeoMaxDistance: fixed_arity(\"ST_MAXDISTANCE\", 2),\n- ops.GeoNPoints: unary(\"ST_NUMPOINTS\"),\n- ops.GeoPerimeter: unary(\"ST_PERIMETER\"),\n- ops.GeoPoint: fixed_arity(\"ST_GEOGPOINT\", 2),\n- ops.GeoPointN: fixed_arity(\"ST_POINTN\", 2),\n- ops.GeoSimplify: _geo_simplify,\n- ops.GeoStartPoint: unary(\"ST_STARTPOINT\"),\n- ops.GeoTouches: fixed_arity(\"ST_TOUCHES\", 2),\n- ops.GeoUnion: fixed_arity(\"ST_UNION\", 2),\n- ops.GeoWithin: fixed_arity(\"ST_WITHIN\", 2),\n- ops.GeoX: unary(\"ST_X\"),\n- ops.GeoXMax: _geo_boundingbox(\"xmax\"),\n- ops.GeoXMin: _geo_boundingbox(\"xmin\"),\n- ops.GeoY: unary(\"ST_Y\"),\n- ops.GeoYMax: _geo_boundingbox(\"ymax\"),\n- ops.GeoYMin: _geo_boundingbox(\"ymin\"),\n- ops.BitAnd: reduction(\"BIT_AND\"),\n- ops.BitOr: reduction(\"BIT_OR\"),\n- ops.BitXor: reduction(\"BIT_XOR\"),\n- ops.ApproxCountDistinct: reduction(\"APPROX_COUNT_DISTINCT\"),\n- ops.ApproxMedian: compiles_approx,\n- ops.IdenticalTo: _identical_to,\n- ops.FloorDivide: _floor_divide,\n- ops.IsNan: _is_nan,\n- ops.IsInf: _is_inf,\n- ops.ArgMin: _arg_min_max(\"ASC\"),\n- ops.ArgMax: _arg_min_max(\"DESC\"),\n- ops.Pi: lambda *_: \"ACOS(-1)\",\n- ops.E: lambda *_: \"EXP(1)\",\n- ops.RandomScalar: fixed_arity(\"RAND\", 0),\n- ops.NthValue: _nth_value,\n- ops.JSONGetItem: lambda t, op: f\"{t.translate(op.arg)}[{t.translate(op.index)}]\",\n- ops.ArrayStringJoin: lambda t,\n- op: f\"ARRAY_TO_STRING({t.translate(op.arg)}, {t.translate(op.sep)})\",\n- ops.StartsWith: fixed_arity(\"STARTS_WITH\", 2),\n- ops.EndsWith: fixed_arity(\"ENDS_WITH\", 2),\n- ops.TableColumn: table_column,\n- ops.CountDistinctStar: _count_distinct_star,\n- ops.Argument: lambda _, op: op.param,\n- ops.Unnest: unary(\"UNNEST\"),\n- ops.TimeDelta: _time_delta,\n- ops.DateDelta: _date_delta,\n- ops.TimestampDelta: _timestamp_delta,\n- ops.IntegerRange: _make_range(\"GENERATE_ARRAY\"),\n- ops.TimestampRange: _timestamp_range,\n-}\n-\n-_invalid_operations = {\n- ops.FindInSet,\n- ops.DateDiff,\n- ops.TimestampDiff,\n- ops.ExtractAuthority,\n- ops.ExtractFile,\n- ops.ExtractFragment,\n- ops.ExtractHost,\n- ops.ExtractPath,\n- ops.ExtractProtocol,\n- ops.ExtractQuery,\n- ops.ExtractUserInfo,\n-}\n-\n-OPERATION_REGISTRY = {\n- k: v for k, v in OPERATION_REGISTRY.items() if k not in _invalid_operations\n-}\n", "rewrites.py": "@@ -182,7 +182,7 @@ def window_merge_frames(_, frame):\n group_by = tuple(toolz.unique(_.frame.group_by + frame.group_by))\n \n order_by = {}\n- for sort_key in _.frame.order_by + frame.order_by:\n+ for sort_key in frame.order_by + _.frame.order_by:\n order_by[sort_key.expr] = sort_key.ascending\n order_by = tuple(ops.SortKey(k, v) for k, v in order_by.items())\n \n", "out.sql": "@@ -1,156 +1,138 @@\n-WITH t0 AS (\n- SELECT\n- t7.`field_of_study`,\n- IF(pos = pos_2, `__pivoted__`, NULL) AS `__pivoted__`\n- FROM humanities AS t7\n- CROSS JOIN UNNEST(GENERATE_ARRAY(\n- 0,\n- GREATEST(\n- ARRAY_LENGTH(\n- [STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]\n- )\n- ) - 1\n- )) AS pos\n- CROSS JOIN UNNEST([STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]) AS `__pivoted__` WITH OFFSET AS pos_2\n- WHERE\n- pos = pos_2\n- OR (\n- pos > (\n- ARRAY_LENGTH(\n- [STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]\n- ) - 1\n- )\n- AND pos_2 = (\n- ARRAY_LENGTH(\n- [STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]\n- ) - 1\n- )\n- )\n-), t1 AS (\n- SELECT\n- t0.`field_of_study`,\n- t0.`__pivoted__`.`years` AS `years`,\n- t0.`__pivoted__`.`degrees` AS `degrees`\n- FROM t0\n-), t2 AS (\n- SELECT\n- t1.*,\n- first_value(t1.`degrees`) OVER (PARTITION BY t1.`field_of_study` ORDER BY t1.`years` ASC) AS `earliest_degrees`,\n- last_value(t1.`degrees`) OVER (PARTITION BY t1.`field_of_study` ORDER BY t1.`years` ASC) AS `latest_degrees`\n- FROM t1\n-), t3 AS (\n- SELECT\n- t2.*,\n- t2.`latest_degrees` - t2.`earliest_degrees` AS `diff`\n- FROM t2\n-), t4 AS (\n- SELECT\n- t3.`field_of_study`,\n- ANY_VALUE(t3.`diff`) AS `diff`\n- FROM t3\n- GROUP BY\n- 1\n-), t5 AS (\n- SELECT\n- t4.*\n- FROM t4\n- WHERE\n- t4.`diff` < 0\n-)\n SELECT\n- t6.`field_of_study`,\n- t6.`diff`\n+ t10.field_of_study,\n+ t10.diff\n FROM (\n- WITH t0 AS (\n- SELECT\n- t7.`field_of_study`,\n- IF(pos = pos_2, `__pivoted__`, NULL) AS `__pivoted__`\n- FROM humanities AS t7\n- CROSS JOIN UNNEST(GENERATE_ARRAY(\n- 0,\n- GREATEST(\n- ARRAY_LENGTH(\n- [STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]\n- )\n- ) - 1\n- )) AS pos\n- CROSS JOIN UNNEST([STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]) AS `__pivoted__` WITH OFFSET AS pos_2\n- WHERE\n- pos = pos_2\n- OR (\n- pos > (\n- ARRAY_LENGTH(\n- [STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]\n- ) - 1\n- )\n- AND pos_2 = (\n- ARRAY_LENGTH(\n- [STRUCT('1970-71' AS years, t7.`1970-71` AS degrees), STRUCT('1975-76' AS years, t7.`1975-76` AS degrees), STRUCT('1980-81' AS years, t7.`1980-81` AS degrees), STRUCT('1985-86' AS years, t7.`1985-86` AS degrees), STRUCT('1990-91' AS years, t7.`1990-91` AS degrees), STRUCT('1995-96' AS years, t7.`1995-96` AS degrees), STRUCT('2000-01' AS years, t7.`2000-01` AS degrees), STRUCT('2005-06' AS years, t7.`2005-06` AS degrees), STRUCT('2010-11' AS years, t7.`2010-11` AS degrees), STRUCT('2011-12' AS years, t7.`2011-12` AS degrees), STRUCT('2012-13' AS years, t7.`2012-13` AS degrees), STRUCT('2013-14' AS years, t7.`2013-14` AS degrees), STRUCT('2014-15' AS years, t7.`2014-15` AS degrees), STRUCT('2015-16' AS years, t7.`2015-16` AS degrees), STRUCT('2016-17' AS years, t7.`2016-17` AS degrees), STRUCT('2017-18' AS years, t7.`2017-18` AS degrees), STRUCT('2018-19' AS years, t7.`2018-19` AS degrees), STRUCT('2019-20' AS years, t7.`2019-20` AS degrees)]\n- ) - 1\n- )\n- )\n- ), t1 AS (\n- SELECT\n- t0.`field_of_study`,\n- t0.`__pivoted__`.`years` AS `years`,\n- t0.`__pivoted__`.`degrees` AS `degrees`\n- FROM t0\n- ), t2 AS (\n- SELECT\n- t1.*,\n- first_value(t1.`degrees`) OVER (PARTITION BY t1.`field_of_study` ORDER BY t1.`years` ASC) AS `earliest_degrees`,\n- last_value(t1.`degrees`) OVER (PARTITION BY t1.`field_of_study` ORDER BY t1.`years` ASC) AS `latest_degrees`\n- FROM t1\n- ), t3 AS (\n- SELECT\n- t2.*,\n- t2.`latest_degrees` - t2.`earliest_degrees` AS `diff`\n- FROM t2\n- ), t4 AS (\n+ SELECT\n+ t5.field_of_study,\n+ t5.diff\n+ FROM (\n SELECT\n- t3.`field_of_study`,\n- ANY_VALUE(t3.`diff`) AS `diff`\n- FROM t3\n+ t4.field_of_study,\n+ ANY_VALUE(t4.diff) AS diff\n+ FROM (\n+ SELECT\n+ t3.field_of_study,\n+ t3.years,\n+ t3.degrees,\n+ t3.earliest_degrees,\n+ t3.latest_degrees,\n+ t3.latest_degrees - t3.earliest_degrees AS diff\n+ FROM (\n+ SELECT\n+ t2.field_of_study,\n+ t2.years,\n+ t2.degrees,\n+ first_value(t2.degrees) OVER (PARTITION BY t2.field_of_study ORDER BY t2.years ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS earliest_degrees,\n+ last_value(t2.degrees) OVER (PARTITION BY t2.field_of_study ORDER BY t2.years ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS latest_degrees\n+ FROM (\n+ SELECT\n+ t1.field_of_study,\n+ t1.__pivoted__.years AS years,\n+ t1.__pivoted__.degrees AS degrees\n+ FROM (\n+ SELECT\n+ t0.field_of_study,\n+ IF(pos = pos_2, __pivoted__, NULL) AS __pivoted__\n+ FROM humanities AS t0\n+ CROSS JOIN UNNEST(GENERATE_ARRAY(\n+ 0,\n+ GREATEST(\n+ ARRAY_LENGTH(\n+ [STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]\n+ )\n+ ) - 1\n+ )) AS pos\n+ CROSS JOIN UNNEST([STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]) AS __pivoted__ WITH OFFSET AS pos_2\n+ WHERE\n+ pos = pos_2\n+ OR (\n+ pos > (\n+ ARRAY_LENGTH(\n+ [STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]\n+ ) - 1\n+ )\n+ AND pos_2 = (\n+ ARRAY_LENGTH(\n+ [STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]\n+ ) - 1\n+ )\n+ )\n+ ) AS t1\n+ ) AS t2\n+ ) AS t3\n+ ) AS t4\n GROUP BY\n 1\n- ), t5 AS (\n- SELECT\n- t4.*\n- FROM t4\n- WHERE\n- t4.`diff` < 0\n- ), t7 AS (\n- SELECT\n- t5.*\n- FROM t5\n- ORDER BY\n- t5.`diff` ASC\n- ), t8 AS (\n- SELECT\n- t4.*\n- FROM t4\n- ORDER BY\n- t4.`diff` DESC\n- ), t9 AS (\n- SELECT\n- t5.*\n- FROM t5\n- ORDER BY\n- t5.`diff` ASC\n- LIMIT 10\n- ), t10 AS (\n- SELECT\n- t4.*\n- FROM t4\n- ORDER BY\n- t4.`diff` DESC\n- LIMIT 10\n- )\n- SELECT\n- *\n- FROM t10\n+ ) AS t5\n+ ORDER BY\n+ t5.diff DESC\n+ LIMIT 10\n UNION ALL\n SELECT\n- *\n- FROM t9\n-) AS t6\n\\ No newline at end of file\n+ t5.field_of_study,\n+ t5.diff\n+ FROM (\n+ SELECT\n+ t4.field_of_study,\n+ ANY_VALUE(t4.diff) AS diff\n+ FROM (\n+ SELECT\n+ t3.field_of_study,\n+ t3.years,\n+ t3.degrees,\n+ t3.earliest_degrees,\n+ t3.latest_degrees,\n+ t3.latest_degrees - t3.earliest_degrees AS diff\n+ FROM (\n+ SELECT\n+ t2.field_of_study,\n+ t2.years,\n+ t2.degrees,\n+ first_value(t2.degrees) OVER (PARTITION BY t2.field_of_study ORDER BY t2.years ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS earliest_degrees,\n+ last_value(t2.degrees) OVER (PARTITION BY t2.field_of_study ORDER BY t2.years ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS latest_degrees\n+ FROM (\n+ SELECT\n+ t1.field_of_study,\n+ t1.__pivoted__.years AS years,\n+ t1.__pivoted__.degrees AS degrees\n+ FROM (\n+ SELECT\n+ t0.field_of_study,\n+ IF(pos = pos_2, __pivoted__, NULL) AS __pivoted__\n+ FROM humanities AS t0\n+ CROSS JOIN UNNEST(GENERATE_ARRAY(\n+ 0,\n+ GREATEST(\n+ ARRAY_LENGTH(\n+ [STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]\n+ )\n+ ) - 1\n+ )) AS pos\n+ CROSS JOIN UNNEST([STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]) AS __pivoted__ WITH OFFSET AS pos_2\n+ WHERE\n+ pos = pos_2\n+ OR (\n+ pos > (\n+ ARRAY_LENGTH(\n+ [STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]\n+ ) - 1\n+ )\n+ AND pos_2 = (\n+ ARRAY_LENGTH(\n+ [STRUCT('1970-71' AS years, t0.`1970-71` AS degrees), STRUCT('1975-76' AS years, t0.`1975-76` AS degrees), STRUCT('1980-81' AS years, t0.`1980-81` AS degrees), STRUCT('1985-86' AS years, t0.`1985-86` AS degrees), STRUCT('1990-91' AS years, t0.`1990-91` AS degrees), STRUCT('1995-96' AS years, t0.`1995-96` AS degrees), STRUCT('2000-01' AS years, t0.`2000-01` AS degrees), STRUCT('2005-06' AS years, t0.`2005-06` AS degrees), STRUCT('2010-11' AS years, t0.`2010-11` AS degrees), STRUCT('2011-12' AS years, t0.`2011-12` AS degrees), STRUCT('2012-13' AS years, t0.`2012-13` AS degrees), STRUCT('2013-14' AS years, t0.`2013-14` AS degrees), STRUCT('2014-15' AS years, t0.`2014-15` AS degrees), STRUCT('2015-16' AS years, t0.`2015-16` AS degrees), STRUCT('2016-17' AS years, t0.`2016-17` AS degrees), STRUCT('2017-18' AS years, t0.`2017-18` AS degrees), STRUCT('2018-19' AS years, t0.`2018-19` AS degrees), STRUCT('2019-20' AS years, t0.`2019-20` AS degrees)]\n+ ) - 1\n+ )\n+ )\n+ ) AS t1\n+ ) AS t2\n+ ) AS t3\n+ ) AS t4\n+ GROUP BY\n+ 1\n+ ) AS t5\n+ WHERE\n+ t5.diff < 0\n+ ORDER BY\n+ t5.diff ASC NULLS LAST\n+ LIMIT 10\n+) AS t10\n\\ No newline at end of file\n", "test_client.py": "@@ -190,13 +190,13 @@ def test_raw_sql(con):\n \n def test_parted_column_rename(parted_alltypes):\n assert \"PARTITIONTIME\" in parted_alltypes.columns\n- assert \"_PARTITIONTIME\" in parted_alltypes.op().table.schema.names\n+ assert \"_PARTITIONTIME\" in parted_alltypes.op().parent.schema.names\n \n \n def test_scalar_param_partition_time(parted_alltypes):\n assert \"PARTITIONTIME\" in parted_alltypes.columns\n assert \"PARTITIONTIME\" in parted_alltypes.schema()\n- param = ibis.param(\"timestamp\").name(\"time_param\")\n+ param = ibis.param(\"timestamp('UTC')\")\n expr = parted_alltypes[param > parted_alltypes.PARTITIONTIME]\n df = expr.execute(params={param: \"2017-01-01\"})\n assert df.empty\n", "test_udf_execute.py": "@@ -9,7 +9,7 @@ from pytest import param\n \n import ibis\n import ibis.expr.datatypes as dt\n-from ibis.backends.bigquery import udf\n+from ibis import udf\n \n PROJECT_ID = os.environ.get(\"GOOGLE_BIGQUERY_PROJECT_ID\", \"ibis-gbq\")\n DATASET_ID = \"testing\"\n@@ -28,12 +28,8 @@ def df(alltypes):\n \n \n def test_udf(alltypes, df):\n- @udf(\n- input_type=[dt.double, dt.double],\n- output_type=dt.double,\n- determinism=True,\n- )\n- def my_add(a, b):\n+ @udf.scalar.python(determinism=True)\n+ def my_add(a: float, b: float) -> float:\n return a + b\n \n expr = my_add(alltypes.double_col, alltypes.double_col)\n@@ -49,13 +45,10 @@ def test_udf(alltypes, df):\n \n \n def test_udf_with_struct(alltypes, df, snapshot):\n- @udf(\n- input_type=[dt.double, dt.double],\n- output_type=dt.Struct.from_tuples(\n- [(\"width\", dt.double), (\"height\", dt.double)]\n- ),\n- )\n- def my_struct_thing(a, b):\n+ @udf.scalar.python\n+ def my_struct_thing(a: float, b: float) -> dt.Struct(\n+ {\"width\": float, \"height\": float}\n+ ):\n class Rectangle:\n def __init__(self, width, height):\n self.width = width\n@@ -63,9 +56,6 @@ def test_udf_with_struct(alltypes, df, snapshot):\n \n return Rectangle(a, b)\n \n- result = my_struct_thing.sql\n- snapshot.assert_match(result, \"out.sql\")\n-\n expr = my_struct_thing(alltypes.double_col, alltypes.double_col)\n result = expr.execute()\n assert not result.empty\n@@ -75,12 +65,12 @@ def test_udf_with_struct(alltypes, df, snapshot):\n \n \n def test_udf_compose(alltypes, df):\n- @udf([dt.double], dt.double)\n- def add_one(x):\n+ @udf.scalar.python\n+ def add_one(x: float) -> float:\n return x + 1.0\n \n- @udf([dt.double], dt.double)\n- def times_two(x):\n+ @udf.scalar.python\n+ def times_two(x: float) -> float:\n return x * 2.0\n \n t = alltypes\n@@ -91,8 +81,8 @@ def test_udf_compose(alltypes, df):\n \n \n def test_udf_scalar(con):\n- @udf([dt.double, dt.double], dt.double)\n- def my_add(x, y):\n+ @udf.scalar.python\n+ def my_add(x: float, y: float) -> float:\n return x + y\n \n expr = my_add(1, 2)\n@@ -101,29 +91,23 @@ def test_udf_scalar(con):\n \n \n def test_multiple_calls_has_one_definition(con):\n- @udf([dt.string], dt.double)\n- def my_str_len(s):\n+ @udf.scalar.python\n+ def my_str_len(s: str) -> float:\n return s.length\n \n s = ibis.literal(\"abcd\")\n expr = my_str_len(s) + my_str_len(s)\n \n- add = expr.op()\n-\n- # generated javascript is identical\n- assert add.left.sql == add.right.sql\n assert con.execute(expr) == 8.0\n \n \n def test_udf_libraries(con):\n- @udf(\n- [dt.Array(dt.string)],\n- dt.double,\n+ @udf.scalar.python(\n # whatever symbols are exported in the library are visible inside the\n # UDF, in this case lodash defines _ and we use that here\n- libraries=[\"gs://ibis-testing-libraries/lodash.min.js\"],\n+ libraries=(\"gs://ibis-testing-libraries/lodash.min.js\",),\n )\n- def string_length(strings):\n+ def string_length(strings: list[str]) -> float:\n return _.sum(_.map(strings, lambda x: x.length)) # noqa: F821\n \n raw_data = [\"aaa\", \"bb\", \"c\"]\n@@ -135,45 +119,18 @@ def test_udf_libraries(con):\n \n \n def test_udf_with_len(con):\n- @udf([dt.string], dt.double)\n- def my_str_len(x):\n+ @udf.scalar.python\n+ def my_str_len(x: str) -> float:\n return len(x)\n \n- @udf([dt.Array(dt.string)], dt.double)\n- def my_array_len(x):\n+ @udf.scalar.python\n+ def my_array_len(x: list[str]) -> float:\n return len(x)\n \n assert con.execute(my_str_len(\"aaa\")) == 3\n assert con.execute(my_array_len([\"aaa\", \"bb\"])) == 2\n \n \[email protected](\n- (\"argument_type\",),\n- [\n- param(\n- dt.string,\n- id=\"string\",\n- ),\n- param(\n- \"ANY TYPE\",\n- id=\"string\",\n- ),\n- ],\n-)\n-def test_udf_sql(con, argument_type):\n- format_t = udf.sql(\n- \"format_t\",\n- params={\"input\": argument_type},\n- output_type=dt.string,\n- sql_expression=\"FORMAT('%T', input)\",\n- )\n-\n- s = ibis.literal(\"abcd\")\n- expr = format_t(s)\n-\n- con.execute(expr)\n-\n-\n @pytest.mark.parametrize(\n (\"value\", \"expected\"),\n [\n", "index.sql": "@@ -1,2 +1,2 @@\n SELECT\n- MOD(EXTRACT(DAYOFWEEK FROM CAST('2017-01-01' AS DATE)) + 5, 7) AS `DayOfWeekIndex_datetime_date_2017_ 1_ 1`\n\\ No newline at end of file\n+ mod(EXTRACT(dayofweek FROM DATE(2017, 1, 1)) + 5, 7) AS `DayOfWeekIndex_datetime_date_2017_ 1_ 1`\n\\ No newline at end of file\n", "name.sql": "@@ -1,2 +1,2 @@\n SELECT\n- INITCAP(CAST(CAST('2017-01-01' AS DATE) AS STRING FORMAT 'DAY')) AS `DayOfWeekName_datetime_date_2017_ 1_ 1`\n\\ No newline at end of file\n+ INITCAP(CAST(DATE(2017, 1, 1) AS STRING FORMAT 'DAY')) AS `DayOfWeekName_datetime_date_2017_ 1_ 1`\n\\ No newline at end of file\n", "out_one_unnest.sql": "@@ -1,16 +1,16 @@\n SELECT\n- t0.`rowindex`,\n- IF(pos = pos_2, `repeated_struct_col`, NULL) AS `repeated_struct_col`\n+ t0.rowindex,\n+ IF(pos = pos_2, repeated_struct_col, NULL) AS repeated_struct_col\n FROM array_test AS t0\n-CROSS JOIN UNNEST(GENERATE_ARRAY(0, GREATEST(ARRAY_LENGTH(t0.`repeated_struct_col`)) - 1)) AS pos\n-CROSS JOIN UNNEST(t0.`repeated_struct_col`) AS `repeated_struct_col` WITH OFFSET AS pos_2\n+CROSS JOIN UNNEST(GENERATE_ARRAY(0, GREATEST(ARRAY_LENGTH(t0.repeated_struct_col)) - 1)) AS pos\n+CROSS JOIN UNNEST(t0.repeated_struct_col) AS repeated_struct_col WITH OFFSET AS pos_2\n WHERE\n pos = pos_2\n OR (\n pos > (\n- ARRAY_LENGTH(t0.`repeated_struct_col`) - 1\n+ ARRAY_LENGTH(t0.repeated_struct_col) - 1\n )\n AND pos_2 = (\n- ARRAY_LENGTH(t0.`repeated_struct_col`) - 1\n+ ARRAY_LENGTH(t0.repeated_struct_col) - 1\n )\n )\n\\ No newline at end of file\n", "out_two_unnests.sql": "@@ -1,32 +1,32 @@\n SELECT\n- IF(pos = pos_2, `level_two`, NULL) AS `level_two`\n+ IF(pos = pos_2, level_two, NULL) AS level_two\n FROM (\n SELECT\n- t1.`rowindex`,\n- IF(pos = pos_2, `level_one`, NULL).`nested_struct_col` AS `level_one`\n- FROM array_test AS t1\n- CROSS JOIN UNNEST(GENERATE_ARRAY(0, GREATEST(ARRAY_LENGTH(t1.`repeated_struct_col`)) - 1)) AS pos\n- CROSS JOIN UNNEST(t1.`repeated_struct_col`) AS `level_one` WITH OFFSET AS pos_2\n+ t0.rowindex,\n+ IF(pos = pos_2, level_one, NULL).nested_struct_col AS level_one\n+ FROM array_test AS t0\n+ CROSS JOIN UNNEST(GENERATE_ARRAY(0, GREATEST(ARRAY_LENGTH(t0.repeated_struct_col)) - 1)) AS pos\n+ CROSS JOIN UNNEST(t0.repeated_struct_col) AS level_one WITH OFFSET AS pos_2\n WHERE\n pos = pos_2\n OR (\n pos > (\n- ARRAY_LENGTH(t1.`repeated_struct_col`) - 1\n+ ARRAY_LENGTH(t0.repeated_struct_col) - 1\n )\n AND pos_2 = (\n- ARRAY_LENGTH(t1.`repeated_struct_col`) - 1\n+ ARRAY_LENGTH(t0.repeated_struct_col) - 1\n )\n )\n-) AS t0\n-CROSS JOIN UNNEST(GENERATE_ARRAY(0, GREATEST(ARRAY_LENGTH(t0.`level_one`)) - 1)) AS pos\n-CROSS JOIN UNNEST(t0.`level_one`) AS `level_two` WITH OFFSET AS pos_2\n+) AS t1\n+CROSS JOIN UNNEST(GENERATE_ARRAY(0, GREATEST(ARRAY_LENGTH(t1.level_one)) - 1)) AS pos\n+CROSS JOIN UNNEST(t1.level_one) AS level_two WITH OFFSET AS pos_2\n WHERE\n pos = pos_2\n OR (\n pos > (\n- ARRAY_LENGTH(t0.`level_one`) - 1\n+ ARRAY_LENGTH(t1.level_one) - 1\n )\n AND pos_2 = (\n- ARRAY_LENGTH(t0.`level_one`) - 1\n+ ARRAY_LENGTH(t1.level_one) - 1\n )\n )\n\\ No newline at end of file\n", "test_compiler.py": "@@ -1,7 +1,6 @@\n from __future__ import annotations\n \n import datetime\n-import re\n import time\n from operator import floordiv, methodcaller, truediv\n \n@@ -10,6 +9,7 @@ import pytest\n from pytest import param\n \n import ibis\n+import ibis.common.exceptions as com\n import ibis.expr.datatypes as dt\n import ibis.expr.operations as ops\n from ibis import _\n@@ -233,7 +233,7 @@ def test_substring_neg_length():\n t = ibis.table([(\"value\", \"string\")], name=\"t\")\n expr = t[\"value\"].substr(3, -1).name(\"tmp\")\n with pytest.raises(\n- Exception, match=r\"Length parameter must be a non-negative value\\.\"\n+ Exception, match=r\"Length parameter must be a non-negative value; got -1\"\n ):\n to_sql(expr)\n \n@@ -387,10 +387,10 @@ def test_geospatial_simplify(snapshot):\n def test_geospatial_simplify_error():\n t = ibis.table([(\"geog\", \"geography\")], name=\"t\")\n expr = t.geog.simplify(5.2, preserve_collapsed=True).name(\"tmp\")\n- with pytest.raises(Exception) as exception_info:\n+ with pytest.raises(\n+ Exception, match=\"simplify does not support preserving collapsed geometries\"\n+ ):\n to_sql(expr)\n- expected = \"BigQuery simplify does not support preserving collapsed geometries, must pass preserve_collapsed=False\"\n- assert str(exception_info.value) == expected\n \n \n def test_timestamp_accepts_date_literals(alltypes):\n@@ -399,7 +399,7 @@ def test_timestamp_accepts_date_literals(alltypes):\n expr = alltypes.mutate(param=p)\n params = {p: date_string}\n result = to_sql(expr, params=params)\n- assert re.search(r\"@param_\\d+ AS `param`\", result) is not None\n+ assert \"2009-03-01T00:00:00\" in result\n \n \n @pytest.mark.parametrize(\"distinct\", [True, False])\n@@ -483,14 +483,18 @@ def test_range_window_function(alltypes, window, snapshot):\n \"preceding\",\n [\n param(5, id=\"five\"),\n- param(ibis.interval(nanoseconds=1), id=\"nanos\", marks=pytest.mark.xfail),\n+ param(\n+ ibis.interval(nanoseconds=1),\n+ id=\"nanos\",\n+ marks=pytest.mark.xfail(raises=com.UnsupportedOperationError),\n+ ),\n param(ibis.interval(microseconds=1), id=\"micros\"),\n param(ibis.interval(seconds=1), id=\"seconds\"),\n param(ibis.interval(minutes=1), id=\"minutes\"),\n param(ibis.interval(hours=1), id=\"hours\"),\n param(ibis.interval(days=1), id=\"days\"),\n param(2 * ibis.interval(days=1), id=\"two_days\"),\n- param(ibis.interval(weeks=1), id=\"week\", marks=pytest.mark.xfail),\n+ param(ibis.interval(weeks=1), id=\"week\"),\n ],\n )\n def test_trailing_range_window(alltypes, preceding, snapshot):\n@@ -584,7 +588,7 @@ def test_scalar_param_scope(alltypes):\n t = alltypes\n param = ibis.param(\"timestamp\")\n result = to_sql(t.mutate(param=param), params={param: \"2017-01-01\"})\n- assert re.search(r\"@param_\\d+ AS `param`\", result) is not None\n+ assert \"2017-01-01T00:00:00\" in result\n \n \n def test_cast_float_to_int(alltypes, snapshot):\n", "test_builtin.py": "@@ -10,7 +10,7 @@ def farm_fingerprint(value: bytes) -> int:\n ...\n \n \[email protected](schema=\"bqutil.fn\")\[email protected](schema=\"fn\", database=\"bqutil\")\n def from_hex(value: str) -> int:\n \"\"\"Community function to convert from hex string to integer.\n \n", "test_usage.py": "@@ -1,120 +1,74 @@\n from __future__ import annotations\n \n+import re\n+\n import pytest\n-from pytest import param\n \n import ibis\n+import ibis.common.exceptions as com\n import ibis.expr.datatypes as dt\n-from ibis.backends.bigquery import udf\n-from ibis.backends.bigquery.udf import _udf_name_cache\n-\n+from ibis import udf\n \n-def test_multiple_calls_redefinition(snapshot):\n- _udf_name_cache.clear()\n \n- @udf.python([dt.string], dt.double)\n- def my_len(s):\n+def test_multiple_calls_redefinition():\n+ @udf.scalar.python\n+ def my_len(s: str) -> float:\n return s.length\n \n s = ibis.literal(\"abcd\")\n expr = my_len(s) + my_len(s)\n \n- @udf.python([dt.string], dt.double)\n- def my_len(s):\n+ @udf.scalar.python\n+ def my_len(s: str) -> float:\n return s.length + 1\n \n expr = expr + my_len(s)\n \n sql = ibis.bigquery.compile(expr)\n- snapshot.assert_match(sql, \"out.sql\")\n+ assert len(set(re.findall(r\"my_len_(\\d+)\", sql))) == 2\n \n \[email protected](\n- (\"determinism\",),\n- [\n- param(True),\n- param(False),\n- param(None),\n- ],\n-)\n-def test_udf_determinism(snapshot, determinism):\n- _udf_name_cache.clear()\n-\n- @udf.python([dt.string], dt.double, determinism=determinism)\n- def my_len(s):\[email protected](\"determinism\", [True, False, None])\n+def test_udf_determinism(determinism):\n+ @udf.scalar.python(determinism=determinism)\n+ def my_len(s: str) -> float:\n return s.length\n \n s = ibis.literal(\"abcd\")\n expr = my_len(s)\n \n sql = ibis.bigquery.compile(expr)\n- snapshot.assert_match(sql, \"out.sql\")\n \n-\n-def test_udf_sql(snapshot):\n- _udf_name_cache.clear()\n-\n- format_t = udf.sql(\n- \"format_t\",\n- params={\"input\": dt.string},\n- output_type=dt.double,\n- sql_expression=\"FORMAT('%T', input)\",\n- )\n-\n- s = ibis.literal(\"abcd\")\n- expr = format_t(s)\n-\n- sql = ibis.bigquery.compile(expr)\n- snapshot.assert_match(sql, \"out.sql\")\n+ if not determinism:\n+ assert \"NOT DETERMINISTIC\" in sql\n+ else:\n+ assert \"DETERMINISTIC\" in sql and \"NOT DETERMINISTIC\" not in sql\n \n \n @pytest.mark.parametrize(\n (\"argument_type\", \"return_type\"),\n [\n- param(\n- dt.int64,\n- dt.float64,\n- marks=pytest.mark.xfail(raises=TypeError),\n- id=\"int_float\",\n- ),\n- param(\n- dt.float64,\n- dt.int64,\n- marks=pytest.mark.xfail(raises=TypeError),\n- id=\"float_int\",\n- ),\n+ # invalid input type\n+ (dt.int64, dt.float64),\n+ # invalid return type\n+ (dt.float64, dt.int64),\n # complex argument type, valid return type\n- param(\n- dt.Array(dt.int64),\n- dt.float64,\n- marks=pytest.mark.xfail(raises=TypeError),\n- id=\"array_int_float\",\n- ),\n+ (dt.Array(dt.int64), dt.float64),\n # valid argument type, complex invalid return type\n- param(\n- dt.float64,\n- dt.Array(dt.int64),\n- marks=pytest.mark.xfail(raises=TypeError),\n- id=\"float_array_int\",\n- ),\n+ (dt.float64, dt.Array(dt.int64)),\n # both invalid\n- param(\n- dt.Array(dt.Array(dt.int64)),\n- dt.int64,\n- marks=pytest.mark.xfail(raises=TypeError),\n- id=\"array_array_int_int\",\n- ),\n+ (dt.Array(dt.Array(dt.int64)), dt.int64),\n # struct type with nested integer, valid return type\n- param(\n- dt.Struct.from_tuples([(\"x\", dt.Array(dt.int64))]),\n- dt.float64,\n- marks=pytest.mark.xfail(raises=TypeError),\n- id=\"struct\",\n- ),\n+ (dt.Struct({\"x\": dt.Array(dt.int64)}), dt.float64),\n ],\n+ ids=str,\n )\n def test_udf_int64(argument_type, return_type):\n # invalid argument type, valid return type\n- @udf.python([argument_type], return_type)\n- def my_int64_add(x):\n- return 1.0\n+ @udf.scalar.python(signature=((argument_type,), return_type))\n+ def my_func(x):\n+ return 1\n+\n+ expr = my_func(None)\n+ with pytest.raises(com.UnsupportedBackendType):\n+ ibis.bigquery.compile(expr)\n", "core.py": "@@ -10,7 +10,6 @@ import textwrap\n from collections import ChainMap\n from typing import Callable\n \n-import ibis.expr.datatypes as dt\n from ibis.backends.bigquery.udf.find import find_names\n from ibis.backends.bigquery.udf.rewrite import rewrite\n \n@@ -514,14 +513,11 @@ class PythonToJavaScriptTranslator:\n \n \n if __name__ == \"__main__\":\n- from ibis.backends.bigquery.udf import udf\n+ import ibis\n+ from ibis import udf\n \n- @udf(\n- input_type=[dt.double, dt.double, dt.int64],\n- output_type=dt.Array(dt.double),\n- strict=False,\n- )\n- def my_func(a, b, n):\n+ @udf.scalar.python(strict=False)\n+ def my_func(a: float, b: float, n: float) -> list[float]:\n class Rectangle:\n def __init__(self, width, height):\n self.width = width\n@@ -598,4 +594,4 @@ if __name__ == \"__main__\":\n nnn = len(values)\n return [sum(values) - a + b * y**-x, z, foo.width, nnn]\n \n- print(my_func.sql) # noqa: T201\n+ print(ibis.bigquery.compile(my_func(42.7, 13.2, 1))) # noqa: T201\n", "test_aggregation.py": "@@ -1374,7 +1374,9 @@ def test_group_concat(\n .reset_index()\n )\n \n- backend.assert_frame_equal(result.fillna(pd.NA), expected.fillna(pd.NA))\n+ backend.assert_frame_equal(\n+ result.replace(np.nan, None), expected.replace(np.nan, None)\n+ )\n \n \n @pytest.mark.broken(\n", "test_asof_join.py": "@@ -90,6 +90,7 @@ def time_keyed_right(time_keyed_df2):\n \"pyspark\",\n \"druid\",\n \"impala\",\n+ \"bigquery\",\n ]\n )\n def test_asof_join(con, time_left, time_right, time_df1, time_df2, direction, op):\n@@ -125,6 +126,7 @@ def test_asof_join(con, time_left, time_right, time_df1, time_df2, direction, op\n \"pyspark\",\n \"druid\",\n \"impala\",\n+ \"bigquery\",\n ]\n )\n def test_keyed_asof_join_with_tolerance(\n", "test_generic.py": "@@ -1347,7 +1347,6 @@ def test_hexdigest(backend, alltypes):\n [\n \"pandas\",\n \"dask\",\n- \"bigquery\",\n \"mssql\",\n \"oracle\",\n \"risingwave\",\n@@ -1369,6 +1368,7 @@ def test_hexdigest(backend, alltypes):\n 1672531200,\n marks=[\n pytest.mark.notyet([\"duckdb\", \"impala\"], reason=\"casts to NULL\"),\n+ pytest.mark.notyet([\"bigquery\"], raises=GoogleBadRequest),\n pytest.mark.notyet([\"trino\"], raises=TrinoUserError),\n pytest.mark.broken(\n [\"druid\"], reason=\"casts to 1672531200000 (millisecond)\"\n@@ -1393,7 +1393,6 @@ def test_try_cast(con, from_val, to_type, expected):\n \n @pytest.mark.notimpl(\n [\n- \"bigquery\",\n \"dask\",\n \"datafusion\",\n \"druid\",\n@@ -1419,6 +1418,7 @@ def test_try_cast(con, from_val, to_type, expected):\n pytest.mark.never(\n [\"clickhouse\", \"pyspark\"], reason=\"casts to 1672531200\"\n ),\n+ pytest.mark.notyet([\"bigquery\"], raises=GoogleBadRequest),\n pytest.mark.notyet([\"trino\"], raises=TrinoUserError),\n pytest.mark.broken([\"polars\"], reason=\"casts to 1672531200000000000\"),\n ],\n@@ -1434,7 +1434,6 @@ def test_try_cast_null(con, from_val, to_type):\n [\n \"pandas\",\n \"dask\",\n- \"bigquery\",\n \"datafusion\",\n \"druid\",\n \"mssql\",\n@@ -1464,7 +1463,6 @@ def test_try_cast_table(backend, con):\n [\n \"pandas\",\n \"dask\",\n- \"bigquery\",\n \"datafusion\",\n \"mssql\",\n \"mysql\",\n@@ -1490,6 +1488,7 @@ def test_try_cast_table(backend, con):\n [\"clickhouse\", \"polars\", \"flink\", \"pyspark\"],\n reason=\"casts this to to a number\",\n ),\n+ pytest.mark.notyet([\"bigquery\"], raises=GoogleBadRequest),\n pytest.mark.notyet([\"trino\"], raises=TrinoUserError),\n ],\n id=\"datetime-to-float\",\n@@ -1797,7 +1796,6 @@ def test_dynamic_table_slice_with_computed_offset(backend):\n \n @pytest.mark.notimpl(\n [\n- \"bigquery\",\n \"druid\",\n \"flink\",\n \"polars\",\n@@ -1827,7 +1825,6 @@ def test_sample(backend):\n \n @pytest.mark.notimpl(\n [\n- \"bigquery\",\n \"druid\",\n \"flink\",\n \"polars\",\n", "test_numeric.py": "@@ -395,7 +395,6 @@ def test_numeric_literal(con, backend, expr, expected_types):\n ibis.literal(decimal.Decimal(\"Infinity\"), type=dt.decimal),\n # TODO(krzysztof-kwitt): Should we unify it?\n {\n- \"bigquery\": float(\"inf\"),\n \"sqlite\": float(\"inf\"),\n \"risingwave\": float(\"nan\"),\n \"postgres\": decimal.Decimal(\"Infinity\"),\n@@ -406,7 +405,6 @@ def test_numeric_literal(con, backend, expr, expected_types):\n \"duckdb\": float(\"inf\"),\n },\n {\n- \"bigquery\": \"FLOAT64\",\n \"sqlite\": \"real\",\n \"postgres\": \"numeric\",\n \"risingwave\": \"numeric\",\n@@ -465,6 +463,7 @@ def test_numeric_literal(con, backend, expr, expected_types):\n \"infinity is not allowed as a decimal value\",\n raises=SnowflakeProgrammingError,\n ),\n+ pytest.mark.notyet([\"bigquery\"], raises=GoogleBadRequest),\n ],\n id=\"decimal-infinity+\",\n ),\n@@ -472,7 +471,6 @@ def test_numeric_literal(con, backend, expr, expected_types):\n ibis.literal(decimal.Decimal(\"-Infinity\"), type=dt.decimal),\n # TODO(krzysztof-kwitt): Should we unify it?\n {\n- \"bigquery\": float(\"-inf\"),\n \"sqlite\": float(\"-inf\"),\n \"risingwave\": float(\"nan\"),\n \"postgres\": decimal.Decimal(\"-Infinity\"),\n@@ -483,7 +481,6 @@ def test_numeric_literal(con, backend, expr, expected_types):\n \"duckdb\": float(\"-inf\"),\n },\n {\n- \"bigquery\": \"FLOAT64\",\n \"sqlite\": \"real\",\n \"postgres\": \"numeric\",\n \"risingwave\": \"numeric\",\n@@ -542,6 +539,7 @@ def test_numeric_literal(con, backend, expr, expected_types):\n raises=TrinoUserError,\n reason=\"can't cast infinity to decimal\",\n ),\n+ pytest.mark.notyet([\"bigquery\"], raises=GoogleBadRequest),\n ],\n id=\"decimal-infinity-\",\n ),\n@@ -629,6 +627,7 @@ def test_numeric_literal(con, backend, expr, expected_types):\n raises=TrinoUserError,\n reason=\"can't cast nan to decimal\",\n ),\n+ pytest.mark.notyet([\"bigquery\"], raises=GoogleBadRequest),\n ],\n id=\"decimal-NaN\",\n ),\n", "test_param.py": "@@ -12,7 +12,7 @@ from pytest import param\n import ibis\n import ibis.expr.datatypes as dt\n from ibis import _\n-from ibis.backends.tests.errors import GoogleBadRequest, Py4JJavaError\n+from ibis.backends.tests.errors import Py4JJavaError\n \n \n @pytest.mark.parametrize(\n@@ -144,42 +144,21 @@ def test_scalar_param_map(con):\n \"timestamp\",\n \"timestamp_col\",\n id=\"string_timestamp\",\n- marks=[\n- pytest.mark.notimpl([\"druid\"]),\n- pytest.mark.broken(\n- [\"bigquery\"],\n- raises=GoogleBadRequest,\n- reason=\"No matching for operator = for argument types: DATETIME, TIMESTAMP\",\n- ),\n- ],\n+ marks=[pytest.mark.notimpl([\"druid\"])],\n ),\n param(\n datetime.date(2009, 1, 20),\n \"timestamp\",\n \"timestamp_col\",\n id=\"date_timestamp\",\n- marks=[\n- pytest.mark.notimpl([\"druid\"]),\n- pytest.mark.broken(\n- [\"bigquery\"],\n- raises=GoogleBadRequest,\n- reason=\"No matching for operator = for argument types: DATETIME, TIMESTAMP\",\n- ),\n- ],\n+ marks=[pytest.mark.notimpl([\"druid\"])],\n ),\n param(\n datetime.datetime(2009, 1, 20, 1, 2, 3),\n \"timestamp\",\n \"timestamp_col\",\n id=\"datetime_timestamp\",\n- marks=[\n- pytest.mark.notimpl([\"druid\"]),\n- pytest.mark.broken(\n- [\"bigquery\"],\n- raises=GoogleBadRequest,\n- reason=\"No matching for operator = for argument types: DATETIME, TIMESTAMP\",\n- ),\n- ],\n+ marks=[pytest.mark.notimpl([\"druid\"])],\n ),\n ],\n )\n", "test_sql.py": "@@ -61,7 +61,7 @@ def test_literal(backend, expr):\n assert ibis.to_sql(expr, dialect=backend.name())\n \n \[email protected]([\"pandas\", \"dask\", \"polars\", \"pyspark\"], reason=\"not SQL\")\[email protected]([\"pandas\", \"dask\", \"polars\"], reason=\"not SQL\")\n @pytest.mark.xfail_version(\n mssql=[\"sqlalchemy>=2\"], reason=\"sqlalchemy 2 prefixes literals with `N`\"\n )\n@@ -103,7 +103,7 @@ def test_cte_refs_in_topo_order(backend, snapshot):\n snapshot.assert_match(sql, \"out.sql\")\n \n \[email protected]([\"pandas\", \"dask\", \"polars\", \"pyspark\"], reason=\"not SQL\")\[email protected]([\"pandas\", \"dask\", \"polars\"], reason=\"not SQL\")\n def test_isin_bug(con, snapshot):\n t = ibis.table(dict(x=\"int\"), name=\"t\")\n good = t[t.x > 2].x\n", "test_string.py": "@@ -1000,7 +1000,6 @@ def test_multiple_subs(con):\n \n @pytest.mark.notimpl(\n [\n- \"bigquery\",\n \"clickhouse\",\n \"dask\",\n \"datafusion\",\n", "test_temporal.py": "@@ -606,11 +606,6 @@ def test_date_truncate(backend, alltypes, df, unit):\n pd.offsets.DateOffset,\n # TODO - DateOffset - #2553\n marks=[\n- pytest.mark.notimpl(\n- [\"bigquery\"],\n- raises=com.UnsupportedOperationError,\n- reason=\"BigQuery does not allow binary operation TIMESTAMP_ADD with INTERVAL offset D\",\n- ),\n pytest.mark.notimpl(\n [\"polars\"],\n raises=TypeError,\n@@ -634,11 +629,6 @@ def test_date_truncate(backend, alltypes, df, unit):\n pd.offsets.DateOffset,\n # TODO - DateOffset - #2553\n marks=[\n- pytest.mark.notimpl(\n- [\"bigquery\"],\n- raises=com.UnsupportedOperationError,\n- reason=\"BigQuery does not allow binary operation TIMESTAMP_ADD with INTERVAL offset M\",\n- ),\n pytest.mark.notimpl(\n [\"dask\"],\n raises=ValueError,\n@@ -661,11 +651,6 @@ def test_date_truncate(backend, alltypes, df, unit):\n pd.offsets.DateOffset,\n # TODO - DateOffset - #2553\n marks=[\n- pytest.mark.notimpl(\n- [\"bigquery\"],\n- raises=com.UnsupportedOperationError,\n- reason=\"BigQuery does not allow extracting date part `IntervalUnit.WEEK` from intervals\",\n- ),\n pytest.mark.notimpl(\n [\"dask\"],\n raises=ValueError,\n", "test_udf.py": "@@ -37,7 +37,7 @@ def test_udf(batting):\n batting = batting.limit(100)\n nvowels = num_vowels(batting.playerID)\n assert nvowels.op().__module__ == __name__\n- assert type(nvowels.op()).__qualname__ == \"num_vowels\"\n+ assert type(nvowels.op()).__qualname__.startswith(\"num_vowels\")\n \n expr = batting.group_by(id_len=nvowels).agg(n=_.count())\n result = expr.execute()\n", "test_window.py": "@@ -719,7 +719,7 @@ def test_simple_ungrouped_window_with_scalar_order_by(alltypes):\n reason=\"Window operations are unsupported in the dask backend\",\n ),\n pytest.mark.broken(\n- [\"bigquery\", \"flink\", \"impala\"],\n+ [\"flink\", \"impala\"],\n reason=\"default window semantics are different\",\n raises=AssertionError,\n ),\n@@ -1306,17 +1306,12 @@ def test_rank_followed_by_over_call_merge_frames(backend, alltypes, df):\n )\n @pytest.mark.notimpl([\"polars\"], raises=com.OperationNotDefinedError)\n @pytest.mark.notyet([\"flink\"], raises=com.UnsupportedOperationError)\[email protected](\n- [\"pandas\"],\n- raises=TypeError,\n- reason=\"pandas rank impl cannot handle compound sort keys with null\",\n-)\n @pytest.mark.notimpl(\n [\"risingwave\"],\n raises=sa.exc.InternalError,\n reason=\"Feature is not yet implemented: Window function with empty PARTITION BY is not supported yet\",\n )\n-def test_ordering_order(con):\n+def test_windowed_order_by_sequence_is_preserved(con):\n table = ibis.memtable({\"bool_col\": [True, False, False, None, True]})\n window = ibis.window(\n order_by=[\n", "udf.py": "@@ -1,9 +1,11 @@\n from __future__ import annotations\n \n import abc\n+import collections\n import enum\n import functools\n import inspect\n+import itertools\n import typing\n from typing import TYPE_CHECKING, Any, Callable, Optional, TypeVar, overload\n \n@@ -20,12 +22,24 @@ from ibis.common.collections import FrozenDict\n from ibis.common.deferred import deferrable\n \n if TYPE_CHECKING:\n+ from collections.abc import Iterable, MutableMapping\n+\n import ibis.expr.types as ir\n \n \n EMPTY = inspect.Parameter.empty\n \n \n+_udf_name_cache: MutableMapping[\n+ type[ops.Node], Iterable[int]\n+] = collections.defaultdict(itertools.count)\n+\n+\n+def _make_udf_name(name: str) -> str:\n+ definition = next(_udf_name_cache[name])\n+ return f\"{name}_{definition:d}\"\n+\n+\n @enum.unique\n class InputType(enum.Enum):\n BUILTIN = enum.auto()\n@@ -88,6 +102,7 @@ class _UDF(abc.ABC):\n input_type: InputType,\n name: str | None = None,\n schema: str | None = None,\n+ database: str | None = None,\n signature: tuple[tuple, Any] | None = None,\n **kwargs,\n ) -> type[S]:\n@@ -124,13 +139,13 @@ class _UDF(abc.ABC):\n # method\n \"__func__\": property(fget=lambda _, fn=fn: fn),\n \"__config__\": FrozenDict(kwargs),\n- \"__udf_namespace__\": schema,\n+ \"__udf_namespace__\": ops.Namespace(schema=schema, database=database),\n \"__module__\": fn.__module__,\n \"__func_name__\": func_name,\n }\n )\n \n- return type(fn.__name__, (cls._base,), fields)\n+ return type(_make_udf_name(fn.__name__), (cls._base,), fields)\n \n @classmethod\n def _make_wrapper(\n@@ -168,6 +183,7 @@ class scalar(_UDF):\n *,\n name: str | None = None,\n schema: str | None = None,\n+ database: str | None = None,\n signature: tuple[tuple[Any, ...], Any] | None = None,\n **kwargs: Any,\n ) -> Callable[[Callable], Callable[..., ir.Value]]:\n@@ -175,7 +191,9 @@ class scalar(_UDF):\n \n @util.experimental\n @classmethod\n- def builtin(cls, fn=None, *, name=None, schema=None, signature=None, **kwargs):\n+ def builtin(\n+ cls, fn=None, *, name=None, schema=None, database=None, signature=None, **kwargs\n+ ):\n \"\"\"Construct a scalar user-defined function that is built-in to the backend.\n \n Parameters\n@@ -186,6 +204,8 @@ class scalar(_UDF):\n The name of the UDF in the backend if different from the function name.\n schema\n The schema in which the builtin function resides.\n+ database\n+ The database in which the builtin function resides.\n signature\n If present, a tuple of the form `((arg0type, arg1type, ...), returntype)`.\n For example, a function taking an int and a float and returning a\n@@ -215,6 +235,7 @@ class scalar(_UDF):\n fn,\n name=name,\n schema=schema,\n+ database=database,\n signature=signature,\n **kwargs,\n )\n@@ -231,6 +252,7 @@ class scalar(_UDF):\n *,\n name: str | None = None,\n schema: str | None = None,\n+ database: str | None = None,\n signature: tuple[tuple[Any, ...], Any] | None = None,\n **kwargs: Any,\n ) -> Callable[[Callable], Callable[..., ir.Value]]:\n@@ -238,7 +260,9 @@ class scalar(_UDF):\n \n @util.experimental\n @classmethod\n- def python(cls, fn=None, *, name=None, schema=None, signature=None, **kwargs):\n+ def python(\n+ cls, fn=None, *, name=None, schema=None, database=None, signature=None, **kwargs\n+ ):\n \"\"\"Construct a **non-vectorized** scalar user-defined function that accepts Python scalar values as inputs.\n \n ::: {.callout-warning collapse=\"true\"}\n@@ -262,6 +286,8 @@ class scalar(_UDF):\n The name of the UDF in the backend if different from the function name.\n schema\n The schema in which to create the UDF.\n+ database\n+ The database in which to create the UDF.\n signature\n If present, a tuple of the form `((arg0type, arg1type, ...), returntype)`.\n For example, a function taking an int and a float and returning a\n@@ -292,6 +318,7 @@ class scalar(_UDF):\n fn,\n name=name,\n schema=schema,\n+ database=database,\n signature=signature,\n **kwargs,\n )\n@@ -308,6 +335,7 @@ class scalar(_UDF):\n *,\n name: str | None = None,\n schema: str | None = None,\n+ database: str | None = None,\n signature: tuple[tuple[Any, ...], Any] | None = None,\n **kwargs: Any,\n ) -> Callable[[Callable], Callable[..., ir.Value]]:\n@@ -315,7 +343,9 @@ class scalar(_UDF):\n \n @util.experimental\n @classmethod\n- def pandas(cls, fn=None, *, name=None, schema=None, signature=None, **kwargs):\n+ def pandas(\n+ cls, fn=None, *, name=None, schema=None, database=None, signature=None, **kwargs\n+ ):\n \"\"\"Construct a **vectorized** scalar user-defined function that accepts pandas Series' as inputs.\n \n Parameters\n@@ -326,6 +356,8 @@ class scalar(_UDF):\n The name of the UDF in the backend if different from the function name.\n schema\n The schema in which to create the UDF.\n+ database\n+ The database in which to create the UDF.\n signature\n If present, a tuple of the form `((arg0type, arg1type, ...), returntype)`.\n For example, a function taking an int and a float and returning a\n@@ -358,6 +390,7 @@ class scalar(_UDF):\n fn,\n name=name,\n schema=schema,\n+ database=database,\n signature=signature,\n **kwargs,\n )\n@@ -374,6 +407,7 @@ class scalar(_UDF):\n *,\n name: str | None = None,\n schema: str | None = None,\n+ database: str | None = None,\n signature: tuple[tuple[Any, ...], Any] | None = None,\n **kwargs: Any,\n ) -> Callable[[Callable], Callable[..., ir.Value]]:\n@@ -381,7 +415,9 @@ class scalar(_UDF):\n \n @util.experimental\n @classmethod\n- def pyarrow(cls, fn=None, *, name=None, schema=None, signature=None, **kwargs):\n+ def pyarrow(\n+ cls, fn=None, *, name=None, schema=None, database=None, signature=None, **kwargs\n+ ):\n \"\"\"Construct a **vectorized** scalar user-defined function that accepts PyArrow Arrays as input.\n \n Parameters\n@@ -392,6 +428,8 @@ class scalar(_UDF):\n The name of the UDF in the backend if different from the function name.\n schema\n The schema in which to create the UDF.\n+ database\n+ The database in which to create the UDF.\n signature\n If present, a tuple of the form `((arg0type, arg1type, ...), returntype)`.\n For example, a function taking an int and a float and returning a\n@@ -423,6 +461,7 @@ class scalar(_UDF):\n fn,\n name=name,\n schema=schema,\n+ database=database,\n signature=signature,\n **kwargs,\n )\n@@ -446,6 +485,7 @@ class agg(_UDF):\n *,\n name: str | None = None,\n schema: str | None = None,\n+ database: str | None = None,\n signature: tuple[tuple[Any, ...], Any] | None = None,\n **kwargs: Any,\n ) -> Callable[[Callable], Callable[..., ir.Value]]:\n@@ -453,7 +493,9 @@ class agg(_UDF):\n \n @util.experimental\n @classmethod\n- def builtin(cls, fn=None, *, name=None, schema=None, signature=None, **kwargs):\n+ def builtin(\n+ cls, fn=None, *, name=None, schema=None, database=None, signature=None, **kwargs\n+ ):\n \"\"\"Construct an aggregate user-defined function that is built-in to the backend.\n \n Parameters\n@@ -464,6 +506,8 @@ class agg(_UDF):\n The name of the UDF in the backend if different from the function name.\n schema\n The schema in which the builtin function resides.\n+ database\n+ The database in which the builtin function resides.\n signature\n If present, a tuple of the form `((arg0type, arg1type, ...), returntype)`.\n For example, a function taking an int and a float and returning a\n@@ -490,6 +534,7 @@ class agg(_UDF):\n fn,\n name=name,\n schema=schema,\n+ database=database,\n signature=signature,\n **kwargs,\n )\n"}
feat(api): add `relocate` table expression API for moving columns around based on selectors
ee8a86f86e436cb33107e20bb8376b924a419bb3
feat
https://github.com/rohankumardubey/ibis/commit/ee8a86f86e436cb33107e20bb8376b924a419bb3
add `relocate` table expression API for moving columns around based on selectors
{"relations.py": "@@ -3609,6 +3609,189 @@ class Table(Expr, _FixedTextJupyterMixin):\n \n return self.group_by(id_cols).aggregate(**aggs)\n \n+ def relocate(\n+ self,\n+ *columns: str | s.Selector,\n+ before: str | s.Selector | None = None,\n+ after: str | s.Selector | None = None,\n+ **kwargs: str,\n+ ) -> Table:\n+ \"\"\"Relocate `columns` before or after other specified columns.\n+\n+ Parameters\n+ ----------\n+ columns\n+ Columns to relocate. Selectors are accepted.\n+ before\n+ A column name or selector to insert the new columns before.\n+ after\n+ A column name or selector. Columns in `columns` are relocated after the last\n+ column selected in `after`.\n+ kwargs\n+ Additional column names to relocate, renaming argument values to\n+ keyword argument names.\n+\n+ Returns\n+ -------\n+ Table\n+ A table with the columns relocated.\n+\n+ Examples\n+ --------\n+ >>> import ibis\n+ >>> ibis.options.interactive = True\n+ >>> import ibis.selectors as s\n+ >>> t = ibis.memtable(dict(a=[1], b=[1], c=[1], d=[\"a\"], e=[\"a\"], f=[\"a\"]))\n+ >>> t\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 b \u2503 c \u2503 d \u2503 e \u2503 f \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.relocate(\"f\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 f \u2503 a \u2503 b \u2503 c \u2503 d \u2503 e \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502 1 \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.relocate(\"a\", after=\"c\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 b \u2503 c \u2503 a \u2503 d \u2503 e \u2503 f \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.relocate(\"f\", before=\"b\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 f \u2503 b \u2503 c \u2503 d \u2503 e \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 a \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.relocate(\"a\", after=s.last())\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 b \u2503 c \u2503 d \u2503 e \u2503 f \u2503 a \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502 string \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502 a \u2502 1 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ Relocate allows renaming\n+\n+ >>> t.relocate(ff=\"f\")\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 ff \u2503 a \u2503 b \u2503 c \u2503 d \u2503 e \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 int64 \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502 1 \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ You can relocate based on any predicate selector, such as\n+ [`of_type`][ibis.selectors.of_type]\n+\n+ >>> t.relocate(s.of_type(\"string\"))\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 d \u2503 e \u2503 f \u2503 a \u2503 b \u2503 c \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 string \u2502 int64 \u2502 int64 \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502 a \u2502 a \u2502 1 \u2502 1 \u2502 1 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.relocate(s.numeric(), after=s.last())\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 d \u2503 e \u2503 f \u2503 a \u2503 b \u2503 c \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 string \u2502 int64 \u2502 int64 \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502 a \u2502 a \u2502 1 \u2502 1 \u2502 1 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.relocate(s.any_of(s.c(*\"ae\")))\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 e \u2503 b \u2503 c \u2503 d \u2503 f \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 string \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 a \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+\n+ When multiple columns are selected with `before` or `after`, those\n+ selected columns are moved before and after the `selectors` input\n+\n+ >>> t = ibis.memtable(dict(a=[1], b=[\"a\"], c=[1], d=[\"a\"]))\n+ >>> t.relocate(s.numeric(), after=s.of_type(\"string\"))\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 b \u2503 d \u2503 a \u2503 c \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 string \u2502 string \u2502 int64 \u2502 int64 \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 a \u2502 a \u2502 1 \u2502 1 \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ >>> t.relocate(s.numeric(), before=s.of_type(\"string\"))\n+ \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n+ \u2503 a \u2503 c \u2503 b \u2503 d \u2503\n+ \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n+ \u2502 int64 \u2502 int64 \u2502 string \u2502 string \u2502\n+ \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n+ \u2502 1 \u2502 1 \u2502 a \u2502 a \u2502\n+ \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n+ \"\"\"\n+ import ibis.selectors as s\n+\n+ if not columns and before is None and after is None and not kwargs:\n+ raise com.IbisInputError(\n+ \"At least one selector or `before` or `after` must be provided\"\n+ )\n+\n+ if before is not None and after is not None:\n+ raise com.IbisInputError(\"Cannot specify both `before` and `after`\")\n+\n+ sels = {}\n+ table_columns = self.columns\n+\n+ for name, sel in itertools.chain(\n+ zip(itertools.repeat(None), map(s._to_selector, columns)),\n+ zip(kwargs.keys(), map(s._to_selector, kwargs.values())),\n+ ):\n+ for pos in sel.positions(self):\n+ if pos in sels:\n+ # make sure the last duplicate column wins by reinserting\n+ # the position if it already exists\n+ del sels[pos]\n+ sels[pos] = name if name is not None else table_columns[pos]\n+\n+ ncols = len(table_columns)\n+\n+ if before is not None:\n+ where = min(s._to_selector(before).positions(self), default=0)\n+ elif after is not None:\n+ where = max(s._to_selector(after).positions(self), default=ncols - 1) + 1\n+ else:\n+ assert before is None and after is None\n+ where = 0\n+\n+ # all columns that should come BEFORE the matched selectors\n+ front = [left for left in range(where) if left not in sels]\n+\n+ # all columns that should come AFTER the matched selectors\n+ back = [right for right in range(where, ncols) if right not in sels]\n+\n+ # selected columns\n+ middle = [self[i].name(name) for i, name in sels.items()]\n+\n+ relocated = self.select(*front, *middle, *back)\n+\n+ assert len(relocated.columns) == ncols\n+\n+ return relocated\n+\n \n @public\n class CachedTable(Table):\n", "selectors.py": "@@ -73,7 +73,7 @@ class Selector(Concrete):\n \n @abc.abstractmethod\n def expand(self, table: ir.Table) -> Sequence[ir.Value]:\n- \"\"\"Expand `table` into a sequence of value expressions.\n+ \"\"\"Expand `table` into value expressions that match the selector.\n \n Parameters\n ----------\n@@ -83,9 +83,26 @@ class Selector(Concrete):\n Returns\n -------\n Sequence[Value]\n- A sequence of value expressions\n+ A sequence of value expressions that match the selector\n \"\"\"\n \n+ def positions(self, table: ir.Table) -> Sequence[int]:\n+ \"\"\"Expand `table` into column indices that match the selector.\n+\n+ Parameters\n+ ----------\n+ table\n+ An ibis table expression\n+\n+ Returns\n+ -------\n+ Sequence[int]\n+ A sequence of column indices where the selector matches\n+ \"\"\"\n+ raise NotImplementedError(\n+ f\"`positions` doesn't make sense for {self.__class__.__name__} selector\"\n+ )\n+\n \n class Predicate(Selector):\n predicate: Callable[[ir.Value], bool]\n@@ -100,6 +117,11 @@ class Predicate(Selector):\n \"\"\"\n return [col for column in table.columns if self.predicate(col := table[column])]\n \n+ def positions(self, table: ir.Table) -> Sequence[int]:\n+ return [\n+ i for i, column in enumerate(table.columns) if self.predicate(table[column])\n+ ]\n+\n def __and__(self, other: Selector) -> Predicate:\n \"\"\"Compute the conjunction of two `Selector`s.\n \n", "test_relocate.py": "@@ -0,0 +1,88 @@\n+from __future__ import annotations\n+\n+import pytest\n+\n+import ibis\n+import ibis.common.exceptions as exc\n+import ibis.selectors as s\n+\n+\n+def test_individual_columns():\n+ t = ibis.table(dict(x=\"int\", y=\"int\"))\n+ assert t.relocate(\"x\", after=\"y\").columns == list(\"yx\")\n+ assert t.relocate(\"y\", before=\"x\").columns == list(\"yx\")\n+\n+\n+def test_move_blocks():\n+ t = ibis.table(dict(x=\"int\", a=\"string\", y=\"int\", b=\"string\"))\n+ assert t.relocate(s.of_type(\"string\")).columns == list(\"abxy\")\n+ assert t.relocate(s.of_type(\"string\"), after=s.numeric()).columns == list(\"xyab\")\n+\n+\n+def test_keep_non_contiguous_variables():\n+ t = ibis.table(dict.fromkeys(\"abcde\", \"int\"))\n+ assert t.relocate(\"b\", after=s.c(\"a\", \"c\", \"e\")).columns == list(\"acdeb\")\n+ assert t.relocate(\"e\", before=s.c(\"b\", \"d\")).columns == list(\"aebcd\")\n+\n+\n+def test_before_after_does_not_move_to_front():\n+ t = ibis.table(dict(x=\"int\", y=\"int\"))\n+ assert t.relocate(\"y\").columns == list(\"yx\")\n+\n+\n+def test_only_one_of_before_and_after():\n+ t = ibis.table(dict(x=\"int\", y=\"int\", z=\"int\"))\n+\n+ with pytest.raises(exc.IbisInputError, match=\"Cannot specify both\"):\n+ t.relocate(\"z\", before=\"x\", after=\"y\")\n+\n+\n+def test_respects_order():\n+ t = ibis.table(dict.fromkeys(\"axbzy\", \"int\"))\n+ assert t.relocate(\"x\", \"y\", \"z\", before=\"x\").columns == list(\"axyzb\")\n+ assert t.relocate(\"x\", \"y\", \"z\", before=s.last()).columns == list(\"abxyz\")\n+ assert t.relocate(\"x\", \"a\", \"z\").columns == list(\"xazby\")\n+\n+\n+def test_relocate_can_rename():\n+ t = ibis.table(dict(a=\"int\", b=\"int\", c=\"int\", d=\"string\", e=\"string\", f=r\"string\"))\n+ assert t.relocate(ffff=\"f\").columns == [\"ffff\", *\"abcde\"]\n+ assert t.relocate(ffff=\"f\", before=\"c\").columns == [*\"ab\", \"ffff\", *\"cde\"]\n+ assert t.relocate(ffff=\"f\", after=\"c\").columns == [*\"abc\", \"ffff\", *\"de\"]\n+\n+\n+def test_retains_last_duplicate_when_renaming_and_moving():\n+ t = ibis.table(dict(x=\"int\"))\n+ assert t.relocate(a=\"x\", b=\"x\").columns == [\"b\"]\n+\n+ # TODO: test against .rename once that's implemented\n+\n+ t = ibis.table(dict(x=\"int\", y=\"int\"))\n+ assert t.relocate(a=\"x\", b=\"y\", c=\"x\").columns == list(\"bc\")\n+\n+\n+def test_everything():\n+ t = ibis.table(dict(w=\"int\", x=\"int\", y=\"int\", z=\"int\"))\n+ assert t.relocate(\"y\", \"z\", before=s.all()).columns == list(\"yzwx\")\n+ assert t.relocate(\"y\", \"z\", after=s.all()).columns == list(\"wxyz\")\n+\n+\n+def test_moves_to_front_with_no_before_and_no_after():\n+ t = ibis.table(dict(x=\"int\", y=\"int\", z=\"int\"))\n+ assert t.relocate(\"z\", \"y\").columns == list(\"zyx\")\n+\n+\n+def test_empty_before_moves_to_front():\n+ t = ibis.table(dict(x=\"int\", y=\"int\", z=\"int\"))\n+ assert t.relocate(\"y\", before=s.of_type(\"string\")).columns == list(\"yxz\")\n+\n+\n+def test_empty_after_moves_to_end():\n+ t = ibis.table(dict(x=\"int\", y=\"int\", z=\"int\"))\n+ assert t.relocate(\"y\", after=s.of_type(\"string\")).columns == list(\"xzy\")\n+\n+\n+def test_no_arguments():\n+ t = ibis.table(dict(x=\"int\", y=\"int\", z=\"int\"))\n+ with pytest.raises(exc.IbisInputError, match=\"At least one selector\"):\n+ assert t.relocate()\n"}
feat: added setLogger and getLogger functions, this will prevent console.log mistakenly left build: refactoring image drawer
38de76ceecc1305f416e23fdc9da223adbb8a6c1
feat
https://github.com/tsparticles/tsparticles/commit/38de76ceecc1305f416e23fdc9da223adbb8a6c1
added setLogger and getLogger functions, this will prevent console.log mistakenly left build: refactoring image drawer
{"Canvas.ts": "@@ -1,5 +1,5 @@\n import { clear, drawParticle, drawParticlePlugin, drawPlugin, paintBase, paintImage } from \"../Utils/CanvasUtils\";\n-import { deepExtend, isSsr } from \"../Utils/Utils\";\n+import { deepExtend, getLogger, isSsr } from \"../Utils/Utils\";\n import { getStyleFromHsl, getStyleFromRgb, rangeColorToHsl, rangeColorToRgb } from \"../Utils/ColorUtils\";\n import type { Container } from \"./Container\";\n import type { IContainerPlugin } from \"./Interfaces/IContainerPlugin\";\n@@ -253,7 +253,7 @@ export class Canvas {\n try {\n await this._initTrail();\n } catch (e) {\n- console.error(e);\n+ getLogger().error(e);\n }\n \n this.initBackground();\n", "Particles.ts": "@@ -1,3 +1,4 @@\n+import { getLogger, getPosition } from \"../Utils/Utils\";\n import type { ClickMode } from \"../Enums/Modes/ClickMode\";\n import type { Container } from \"./Container\";\n import type { Engine } from \"../engine\";\n@@ -15,7 +16,6 @@ import { QuadTree } from \"./Utils/QuadTree\";\n import { Rectangle } from \"./Utils/Rectangle\";\n import type { RecursivePartial } from \"../Types/RecursivePartial\";\n import { errorPrefix } from \"./Utils/Constants\";\n-import { getPosition } from \"../Utils/Utils\";\n \n const qTreeCapacity = 4;\n \n@@ -447,7 +447,7 @@ export class Particles {\n \n return particle;\n } catch (e) {\n- console.warn(`${errorPrefix} adding particle: ${e}`);\n+ getLogger().warning(`${errorPrefix} adding particle: ${e}`);\n \n return;\n }\n", "FrameManager.ts": "@@ -1,6 +1,7 @@\n import type { Container } from \"../Container\";\n import type { IDelta } from \"../Interfaces/IDelta\";\n import { errorPrefix } from \"./Constants\";\n+import { getLogger } from \"../../Utils/Utils\";\n \n /**\n * @param value -\n@@ -63,7 +64,7 @@ export class FrameManager {\n container.draw(false);\n }\n } catch (e) {\n- console.error(`${errorPrefix} in animation loop`, e);\n+ getLogger().error(`${errorPrefix} in animation loop`, e);\n }\n }\n }\n", "Utils.ts": "@@ -1,7 +1,6 @@\n-import { type IHsl, type Particle, errorPrefix, getStyleFromHsl } from \"tsparticles-engine\";\n+import { type IHsl, type Particle, errorPrefix, getLogger, getStyleFromHsl } from \"tsparticles-engine\";\n import { decodeGIF, getGIFLoopAmount } from \"./GifUtils/Utils\";\n-import type { GIF } from \"./GifUtils/GIF\";\n-import type { GIFProgressCallbackFunction } from \"./GifUtils/GIFProgressCallbackFunction\";\n+import type { GIF } from \"./GifUtils/Types/GIF\";\n import type { IImageShape } from \"./IImageShape\";\n \n /**\n@@ -107,7 +106,7 @@ export async function loadImage(image: IImage): Promise<void> {\n image.error = true;\n image.loading = false;\n \n- console.error(`${errorPrefix} loading image: ${image.source}`);\n+ getLogger().error(`${errorPrefix} loading image: ${image.source}`);\n \n resolve();\n });\n@@ -129,12 +128,8 @@ export async function loadGifImage(image: IImage): Promise<void> {\n \n image.loading = true;\n \n- const cb: GIFProgressCallbackFunction = (/*percentageRead, frameCount, lastFrame, framePos, gifSize*/) => {\n- //do nothing\n- };\n-\n try {\n- image.gifData = await decodeGIF(image.source, cb);\n+ image.gifData = await decodeGIF(image.source);\n \n image.gifLoopCount = getGIFLoopAmount(image.gifData) ?? 0;\n \n@@ -164,7 +159,7 @@ export async function downloadSvgImage(image: IImage): Promise<void> {\n const response = await fetch(image.source);\n \n if (!response.ok) {\n- console.error(`${errorPrefix} Image not found`);\n+ getLogger().error(`${errorPrefix} Image not found`);\n \n image.error = true;\n } else {\n", "engine.ts": "@@ -9,7 +9,7 @@ import type {\n ShapeDrawerInitFunction,\n } from \"./Types/ShapeDrawerFunctions\";\n import { errorPrefix, generatedAttribute } from \"./Core/Utils/Constants\";\n-import { isBoolean, isFunction, isNumber, isString, itemFromSingleOrMultiple } from \"./Utils/Utils\";\n+import { getLogger, isBoolean, isFunction, isNumber, isString, itemFromSingleOrMultiple } from \"./Utils/Utils\";\n import { Container } from \"./Core/Container\";\n import type { CustomEventArgs } from \"./Types/CustomEventArgs\";\n import type { CustomEventListener } from \"./Types/CustomEventListener\";\n@@ -58,7 +58,7 @@ async function getDataFromUrl(\n return response.json();\n }\n \n- console.error(`${errorPrefix} ${response.status} while retrieving config file`);\n+ getLogger().error(`${errorPrefix} ${response.status} while retrieving config file`);\n }\n \n /**\n", "package.json": "@@ -21,11 +21,9 @@\n \"prettier\": \"@tsparticles/prettier-config\",\n \"devDependencies\": {\n \"@babel/core\": \"^7.22.5\",\n- \"@commitlint/cli\": \"^17.6.5\",\n- \"@commitlint/config-conventional\": \"^17.6.5\",\n- \"@nrwl/devkit\": \"^16.3.2\",\n- \"@nrwl/workspace\": \"^16.3.2\",\n- \"@skypack/package-check\": \"^0.2.2\",\n+ \"@commitlint/cli\": \"^17.6.6\",\n+ \"@commitlint/config-conventional\": \"^17.6.6\",\n+ \"@nrwl/workspace\": \"^16.4.0\",\n \"@tsparticles/cli\": \"^1.6.5\",\n \"@tsparticles/eslint-config\": \"^1.13.3\",\n \"@tsparticles/prettier-config\": \"^1.10.0\",\n@@ -36,31 +34,26 @@\n \"@types/mocha\": \"^10.0.1\",\n \"@types/node\": \"^20.3.1\",\n \"@types/webpack-env\": \"^1.18.1\",\n- \"@typescript-eslint/eslint-plugin\": \"^5.59.11\",\n- \"@typescript-eslint/parser\": \"^5.59.11\",\n+ \"@typescript-eslint/eslint-plugin\": \"^5.60.1\",\n+ \"@typescript-eslint/parser\": \"^5.60.1\",\n \"babel-loader\": \"^9.1.2\",\n \"browserslist\": \"^4.21.9\",\n \"canvas\": \"^2.11.2\",\n \"chai\": \"^4.3.7\",\n- \"compare-versions\": \"^6.0.0-rc.1\",\n \"copyfiles\": \"^2.4.1\",\n \"eslint\": \"^8.43.0\",\n \"eslint-config-prettier\": \"^8.8.0\",\n- \"eslint-plugin-jsdoc\": \"^46.2.6\",\n+ \"eslint-plugin-jsdoc\": \"^46.3.0\",\n \"eslint-plugin-tsdoc\": \"^0.2.17\",\n- \"fs-extra\": \"^11.1.1\",\n \"husky\": \"^8.0.3\",\n- \"ini\": \"^4.1.1\",\n- \"install\": \"^0.13.0\",\n \"jsdom\": \"^22.1.0\",\n \"jsdom-global\": \"^3.0.2\",\n- \"lerna\": \"^7.0.2\",\n+ \"lerna\": \"^7.1.0\",\n \"mocha\": \"^10.2.0\",\n- \"nx\": \"^16.3.2\",\n+ \"nx\": \"^16.4.0\",\n \"nx-cloud\": \"^16.0.5\",\n \"nyc\": \"^15.1.0\",\n \"prettier\": \"^2.8.8\",\n- \"reflect-metadata\": \"^0.1.13\",\n \"rimraf\": \"^5.0.1\",\n \"source-map-support\": \"^0.5.21\",\n \"terser-webpack-plugin\": \"^5.3.9\",\n@@ -73,10 +66,9 @@\n \"typedoc-plugin-keywords\": \"^1.4.1\",\n \"typedoc-plugin-missing-exports\": \"^2.0.0\",\n \"typescript\": \"^5.1.3\",\n- \"typescript-json-schema\": \"^0.58.0\",\n- \"webpack\": \"^5.87.0\",\n+ \"typescript-json-schema\": \"^0.58.1\",\n+ \"webpack\": \"^5.88.0\",\n \"webpack-bundle-analyzer\": \"^4.9.0\",\n- \"webpack-cli\": \"^5.1.4\",\n- \"yorkie\": \"^2.0.0\"\n+ \"webpack-cli\": \"^5.1.4\"\n }\n }\n", "SoundsInstance.ts": "@@ -4,6 +4,7 @@ import {\n type IContainerPlugin,\n clamp,\n executeOnSingleOrMultiple,\n+ getLogger,\n isNumber,\n itemFromArray,\n itemFromSingleOrMultiple,\n@@ -454,7 +455,7 @@ export class SoundsInstance implements IContainerPlugin {\n \n await this._playFrequency(freq, note.duration);\n } catch (e) {\n- console.error(e);\n+ getLogger().error(e);\n }\n };\n \n", "pnpm-lock.yaml": "@@ -12,20 +12,14 @@ importers:\n specifier: ^7.22.5\n version: 7.22.5\n '@commitlint/cli':\n- specifier: ^17.6.5\n- version: 17.6.5\n+ specifier: ^17.6.6\n+ version: 17.6.6\n '@commitlint/config-conventional':\n- specifier: ^17.6.5\n- version: 17.6.5\n- '@nrwl/devkit':\n- specifier: ^16.3.2\n- version: 16.3.2([email protected])\n+ specifier: ^17.6.6\n+ version: 17.6.6\n '@nrwl/workspace':\n- specifier: ^16.3.2\n- version: 16.3.2\n- '@skypack/package-check':\n- specifier: ^0.2.2\n- version: 0.2.2\n+ specifier: ^16.4.0\n+ version: 16.4.0\n '@tsparticles/cli':\n specifier: ^1.6.5\n version: 1.6.5([email protected])\n@@ -57,14 +51,14 @@ importers:\n specifier: ^1.18.1\n version: 1.18.1\n '@typescript-eslint/eslint-plugin':\n- specifier: ^5.59.11\n- version: 5.59.11(@typescript-eslint/[email protected])([email protected])([email protected])\n+ specifier: ^5.60.1\n+ version: 5.60.1(@typescript-eslint/[email protected])([email protected])([email protected])\n '@typescript-eslint/parser':\n- specifier: ^5.59.11\n- version: 5.59.11([email protected])([email protected])\n+ specifier: ^5.60.1\n+ version: 5.60.1([email protected])([email protected])\n babel-loader:\n specifier: ^9.1.2\n- version: 9.1.2(@babel/[email protected])([email protected])\n+ version: 9.1.2(@babel/[email protected])([email protected])\n browserslist:\n specifier: ^4.21.9\n version: 4.21.9\n@@ -74,9 +68,6 @@ importers:\n chai:\n specifier: ^4.3.7\n version: 4.3.7\n- compare-versions:\n- specifier: ^6.0.0-rc.1\n- version: 6.0.0-rc.1\n copyfiles:\n specifier: ^2.4.1\n version: 2.4.1\n@@ -87,23 +78,14 @@ importers:\n specifier: ^8.8.0\n version: 8.8.0([email protected])\n eslint-plugin-jsdoc:\n- specifier: ^46.2.6\n- version: 46.2.6([email protected])\n+ specifier: ^46.3.0\n+ version: 46.3.0([email protected])\n eslint-plugin-tsdoc:\n specifier: ^0.2.17\n version: 0.2.17\n- fs-extra:\n- specifier: ^11.1.1\n- version: 11.1.1\n husky:\n specifier: ^8.0.3\n version: 8.0.3\n- ini:\n- specifier: ^4.1.1\n- version: 4.1.1\n- install:\n- specifier: ^0.13.0\n- version: 0.13.0\n jsdom:\n specifier: ^22.1.0\n version: 22.1.0([email protected])\n@@ -111,14 +93,14 @@ importers:\n specifier: ^3.0.2\n version: 3.0.2([email protected])\n lerna:\n- specifier: ^7.0.2\n- version: 7.0.2\n+ specifier: ^7.1.0\n+ version: 7.1.0\n mocha:\n specifier: ^10.2.0\n version: 10.2.0\n nx:\n- specifier: ^16.3.2\n- version: 16.3.2\n+ specifier: ^16.4.0\n+ version: 16.4.0\n nx-cloud:\n specifier: ^16.0.5\n version: 16.0.5\n@@ -128,9 +110,6 @@ importers:\n prettier:\n specifier: ^2.8.8\n version: 2.8.8\n- reflect-metadata:\n- specifier: ^0.1.13\n- version: 0.1.13\n rimraf:\n specifier: ^5.0.1\n version: 5.0.1\n@@ -139,7 +118,7 @@ importers:\n version: 0.5.21\n terser-webpack-plugin:\n specifier: ^5.3.9\n- version: 5.3.9([email protected])\n+ version: 5.3.9([email protected])\n ts-json-schema-generator:\n specifier: ^1.2.0\n version: 1.2.0\n@@ -168,20 +147,17 @@ importers:\n specifier: ^5.1.3\n version: 5.1.3\n typescript-json-schema:\n- specifier: ^0.58.0\n- version: 0.58.0\n+ specifier: ^0.58.1\n+ version: 0.58.1\n webpack:\n- specifier: ^5.87.0\n- version: 5.87.0([email protected])\n+ specifier: ^5.88.0\n+ version: 5.88.0([email protected])\n webpack-bundle-analyzer:\n specifier: ^4.9.0\n version: 4.9.0\n webpack-cli:\n specifier: ^5.1.4\n- version: 5.1.4([email protected])([email protected])\n- yorkie:\n- specifier: ^2.0.0\n- version: 2.0.0\n+ version: 5.1.4([email protected])([email protected])\n \n bundles/confetti:\n dependencies:\n@@ -3972,13 +3948,13 @@ packages:\n '@babel/helper-validator-identifier': 7.22.5\n to-fast-properties: 2.0.0\n \n- /@commitlint/[email protected]:\n- resolution: {integrity: sha512-3PQrWr/uo6lzF5k7n5QuosCYnzaxP9qGBp3jhWP0Vmsa7XA6wrl9ccPqfQyXpSbQE3zBROVO3TDqgPKe4tfmLQ==}\n+ /@commitlint/[email protected]:\n+ resolution: {integrity: sha512-sTKpr2i/Fjs9OmhU+beBxjPavpnLSqZaO6CzwKVq2Tc4UYVTMFgpKOslDhUBVlfAUBfjVO8ParxC/MXkIOevEA==}\n engines: {node: '>=v14'}\n hasBin: true\n dependencies:\n '@commitlint/format': 17.4.4\n- '@commitlint/lint': 17.6.5\n+ '@commitlint/lint': 17.6.6\n '@commitlint/load': 17.5.0\n '@commitlint/read': 17.5.1\n '@commitlint/types': 17.4.4\n@@ -3992,8 +3968,8 @@ packages:\n - '@swc/wasm'\n dev: true\n \n- /@commitlint/[email protected]:\n- resolution: {integrity: sha512-Xl9H9KLl86NZm5CYNTNF9dcz1xelE/EbvhWIWcYxG/rn3UWYWdWmmnX2q6ZduNdLFSGbOxzUpIx61j5zxbeXxg==}\n+ /@commitlint/[email protected]:\n+ resolution: {integrity: sha512-phqPz3BDhfj49FUYuuZIuDiw+7T6gNAEy7Yew1IBHqSohVUCWOK2FXMSAExzS2/9X+ET93g0Uz83KjiHDOOFag==}\n engines: {node: '>=v14'}\n dependencies:\n conventional-changelog-conventionalcommits: 5.0.0\n@@ -4032,19 +4008,19 @@ packages:\n chalk: 4.1.2\n dev: true\n \n- /@commitlint/[email protected]:\n- resolution: {integrity: sha512-CQvAPt9gX7cuUbMrIaIMKczfWJqqr6m8IlJs0F2zYwyyMTQ87QMHIj5jJ5HhOaOkaj6dvTMVGx8Dd1I4xgUuoQ==}\n+ /@commitlint/[email protected]:\n+ resolution: {integrity: sha512-4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg==}\n engines: {node: '>=v14'}\n dependencies:\n '@commitlint/types': 17.4.4\n- semver: 7.5.0\n+ semver: 7.5.2\n dev: true\n \n- /@commitlint/[email protected]:\n- resolution: {integrity: sha512-BSJMwkE4LWXrOsiP9KoHG+/heSDfvOL/Nd16+ojTS/DX8HZr8dNl8l3TfVr/d/9maWD8fSegRGtBtsyGuugFrw==}\n+ /@commitlint/[email protected]:\n+ resolution: {integrity: sha512-5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg==}\n engines: {node: '>=v14'}\n dependencies:\n- '@commitlint/is-ignored': 17.6.5\n+ '@commitlint/is-ignored': 17.6.6\n '@commitlint/parse': 17.6.5\n '@commitlint/rules': 17.6.5\n '@commitlint/types': 17.4.4\n@@ -4060,8 +4036,8 @@ packages:\n '@commitlint/types': 17.4.4\n '@types/node': 20.3.1\n chalk: 4.1.2\n- cosmiconfig: 8.1.3\n- cosmiconfig-typescript-loader: 4.3.0(@types/[email protected])([email protected])([email protected])([email protected])\n+ cosmiconfig: 8.2.0\n+ cosmiconfig-typescript-loader: 4.3.0(@types/[email protected])([email protected])([email protected])([email protected])\n lodash.isplainobject: 4.0.6\n lodash.merge: 4.6.2\n lodash.uniq: 4.5.0\n@@ -4360,8 +4336,8 @@ packages:\n '@jridgewell/sourcemap-codec': 1.4.15\n dev: true\n \n- /@lerna/[email protected]:\n- resolution: {integrity: sha512-15lMrNBL/pvREMJPSfIPieaBtyyapDco/TNjALLEL53JGzO9g8rj5PipfE9h5ILx8aq/GaP17XCh209aVCun/w==}\n+ /@lerna/[email protected]:\n+ resolution: {integrity: sha512-NmpwxygdVW2xprCNNgZ9d6P/pRlaXX2vfUynYNS+jsv7Q2uDZSdW86kjwEgbWyjSu7quZsmpQLqpl6PnfFl82g==}\n engines: {node: ^14.17.0 || >=16.0.0}\n dependencies:\n chalk: 4.1.2\n@@ -4369,11 +4345,11 @@ packages:\n strong-log-transformer: 2.1.0\n dev: true\n \n- /@lerna/[email protected]:\n- resolution: {integrity: sha512-1arGpEpWbWmci1MyaGKvP2SqCAPFWpLqZp0swckianX1kx1mso9B16BWFvcHhU57zCD0Co/z+jX+02UEzZGP7Q==}\n+ /@lerna/[email protected]:\n+ resolution: {integrity: sha512-qmj1c9J9AmMdiZW7akK7PVhUK3rwHnOgOBrz7TL0eoHsCE9kda+5VWiKFKSyDqq2zSai+a5OZU/pfkaPm8FygA==}\n engines: {node: ^14.17.0 || >=16.0.0}\n dependencies:\n- '@lerna/child-process': 7.0.2\n+ '@lerna/child-process': 7.1.0\n dedent: 0.7.0\n fs-extra: 11.1.1\n init-package-json: 5.0.0\n@@ -4381,7 +4357,7 @@ packages:\n p-reduce: 2.1.0\n pacote: 15.2.0\n pify: 5.0.0\n- semver: 7.5.1\n+ semver: 7.5.3\n slash: 3.0.0\n validate-npm-package-license: 3.0.4\n validate-npm-package-name: 5.0.0\n@@ -4442,14 +4418,14 @@ packages:\n engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}\n dependencies:\n '@gar/promisify': 1.1.3\n- semver: 7.5.1\n+ semver: 7.5.3\n dev: true\n \n /@npmcli/[email protected]:\n resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}\n engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}\n dependencies:\n- semver: 7.5.1\n+ semver: 7.5.3\n dev: true\n \n /@npmcli/[email protected]:\n@@ -4462,7 +4438,7 @@ packages:\n proc-log: 3.0.0\n promise-inflight: 1.0.1\n promise-retry: 2.0.1\n- semver: 7.5.1\n+ semver: 7.5.3\n which: 3.0.1\n transitivePeerDependencies:\n - bluebird\n@@ -4512,10 +4488,18 @@ packages:\n - supports-color\n dev: true\n \n- /@nrwl/[email protected]([email protected]):\n+ /@nrwl/[email protected]([email protected]):\n resolution: {integrity: sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==}\n dependencies:\n- '@nx/devkit': 16.3.2([email protected])\n+ '@nx/devkit': 16.3.2([email protected])\n+ transitivePeerDependencies:\n+ - nx\n+ dev: true\n+\n+ /@nrwl/[email protected]([email protected]):\n+ resolution: {integrity: sha512-KUu9oNrMB8DP78BAO8XWJC5HOSS6dO6ocMWj2DtuNVgMgABviy+ih/TmrGKxQQBH0Ib4cxTeMIQVRdAak5c1UA==}\n+ dependencies:\n+ '@nx/devkit': 16.4.0([email protected])\n transitivePeerDependencies:\n - nx\n dev: true\n@@ -4528,43 +4512,57 @@ packages:\n - debug\n dev: true\n \n- /@nrwl/[email protected]:\n- resolution: {integrity: sha512-2Kg7dtv6JcQagCZPSq+okceI81NqmXGGgbKWqS7sOfdmp1otxS9uiUFNXw+Pdtnw38mdRviMtSOXScntu4sUKg==}\n+ /@nrwl/[email protected]:\n+ resolution: {integrity: sha512-6n4chOOv6jqact07NvIDRQfsnaiYYhi+mrqSuJKs6fL+c5kx/VCryndTP0MDTBbazfL6H7vwiQUkTja2sQDuwA==}\n hasBin: true\n dependencies:\n- nx: 16.3.2\n+ nx: 16.4.0\n transitivePeerDependencies:\n - '@swc-node/register'\n - '@swc/core'\n - debug\n dev: true\n \n- /@nrwl/[email protected]:\n- resolution: {integrity: sha512-ORVzEEJIMOFYEOtOQHLU7N4vT4mYZ/JzKiwHZrHkCaVhgkiGBLoX3tOwVZjafKaa/24cGISv0J7WRtnfRKl2cA==}\n+ /@nrwl/[email protected]:\n+ resolution: {integrity: sha512-iu2GgzoEQYn7IzJe2m69YqftajFJpce5jcE5d6OV2Idgq228Lb0j7aCw4W4fK7bsCeqZGhVGpiBjE+Cyw1GxGw==}\n dependencies:\n- '@nx/workspace': 16.3.2\n+ '@nx/workspace': 16.4.0\n transitivePeerDependencies:\n - '@swc-node/register'\n - '@swc/core'\n - debug\n dev: true\n \n- /@nx/[email protected]([email protected]):\n+ /@nx/[email protected]([email protected]):\n resolution: {integrity: sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==}\n peerDependencies:\n nx: '>= 15 <= 17'\n dependencies:\n- '@nrwl/devkit': 16.3.2([email protected])\n+ '@nrwl/devkit': 16.3.2([email protected])\n ejs: 3.1.9\n ignore: 5.2.4\n- nx: 16.3.2\n+ nx: 16.4.0\n semver: 7.3.4\n tmp: 0.2.1\n tslib: 2.5.1\n dev: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-YfYVNfsJBzBcBnJUU4AcA6A4QMkgnVlETfp4KGL36Otq542mRY1ISGHdox63ocI5AKh5gay5AaGcR4wR9PU9Vg==}\n+ /@nx/[email protected]([email protected]):\n+ resolution: {integrity: sha512-/Y+tC2IBxVEf3EKB80G9mF27ZBAFEBBmDMn1MPzfGX9AB2GGNCqgvSkSHT5DlkyxJOMqbE7DpMyHxubALyenEA==}\n+ peerDependencies:\n+ nx: '>= 15 <= 17'\n+ dependencies:\n+ '@nrwl/devkit': 16.4.0([email protected])\n+ ejs: 3.1.9\n+ ignore: 5.2.4\n+ nx: 16.4.0\n+ semver: 7.5.3\n+ tmp: 0.2.1\n+ tslib: 2.5.1\n+ dev: true\n+\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-/ZXuF8M3u8DSNmjYstQKorzo7uIETNhnFinwWlO8mzz+SyR+Xs5G6penJ4+cB1ju3Hf3lZkXd5U6pEiW4OAAkA==}\n engines: {node: '>= 10'}\n cpu: [arm64]\n os: [darwin]\n@@ -4572,8 +4570,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-bJtpozz0zSRVRrcQ76GrlT3TWEGTymLYWrVG51bH5KZ46t6/a4EQBI3uL3vubMmOZ0jR4ywybOcPBBhxmBJ68w==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-0Fo58qZzHgRs4SRVaAOBipdJQNew57YQbpFaLHKhCTyKc0Pe6THEYaaT/x9QVkcFO0x4AzNr9T7iJTrneNwcKg==}\n engines: {node: '>= 10'}\n cpu: [x64]\n os: [darwin]\n@@ -4581,8 +4579,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-ZvufI0bWqT67nLbBo6ejrIGxypdoedRQTP/tudWbs/4isvxLe1uVku1BfKCTQUsJG367SqNOU1H5kzI/MRr3ow==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-Qoes/NifE4zb5Gb6ZdC32HvxZBzO0xo74j7EozUV5rZEm3bCtKbKqThPV9Uuu+8S4j718r5vlob/IMXqRcWK4g==}\n engines: {node: '>= 10'}\n cpu: [x64]\n os: [freebsd]\n@@ -4590,8 +4588,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-IQL4kxdiZLvifar7+SIum3glRuVsxtE0dL8RvteSDXrxDQnaTUrjILC+VGhalRmk7ngBbGKNrhWOeeL7390CzQ==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-m8uklbettj8RnLtasjQPiYxqJotDSfO3LO1II8Bds53C7OT8TDnTkW68MEx+CxuSCQFy2Aa0Oih3jSvDzfnZzA==}\n engines: {node: '>= 10'}\n cpu: [arm]\n os: [linux]\n@@ -4599,8 +4597,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-f6AWgPVu3mfUEoOBa0rY2/7QY0Or9eR0KtLFpcPh7RUpxPw2EXzIbjD/0RGipdpspSrgiMKbZpsUjo6mXBFsQA==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-bAs2T/zZQDTCzzhciE8kCrkwgXbeX3K83cGRacB7PDZZl/O4jr5TRO4zYHi6doytyLONjqhvWNLbIo4cEEcfZA==}\n engines: {node: '>= 10'}\n cpu: [arm64]\n os: [linux]\n@@ -4608,8 +4606,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-AvrWcYz7021E3b5P9/0i26p60XMZfw86Epks51L6AhlflarlOH4AcEChc7APMtb1ELAIbDWx2S6oIDRbQ7rtVA==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-K1D8j4lRZDBVuW8iomeJjCznFz7rfP3qaB3RHjKZU5qrZBq1uYohhdfT7dzwWFNWEvt6WytfhGCl2S9PsQ37Wg==}\n engines: {node: '>= 10'}\n cpu: [arm64]\n os: [linux]\n@@ -4617,8 +4615,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-K2pWGAcbCNm6b7UZI9cc8z4Rb540QcuepBXD7akjPjWerzXriT6VCn4i9mVKsCg2mwSfknTJJVJ1PZwJSmTl/Q==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-v1NJ3ESaw5bdSeuh5Xslq1dXGWztf0mSLwZP510Rt9+ulr5LQ/X1Rri8zefU0gZNLcmJL0G2Qq7UTnppYGRTEg==}\n engines: {node: '>= 10'}\n cpu: [x64]\n os: [linux]\n@@ -4626,8 +4624,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-sY1QDuQlqyYiRPJZanrtV07tU0DOXiCrWb0pDsGiO0qHuUSmW5Vw17GWEY4z3rt0/5U8fJ+/9WQrneviOmsOKg==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-+8YLVWZFq+k6YJ2ZDwR5sGaRnZhUVYtR8aPbGyonMnJ8VEQJNEqsm1KT6nt0gd3JJdxyphm3VsMQWBMo42jM+w==}\n engines: {node: '>= 10'}\n cpu: [x64]\n os: [linux]\n@@ -4635,8 +4633,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-wBfohT2hjrLKn9WFHvG0MFVk7uYhgYNiptnTLdTouziHgFyZ08vyl7XYBq55BwHPMQ5iswVoEfjn/5ZBfCPscg==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-HwE6AxlrfWvODT49vVX6NGMYc3zdMVXETCdZb0jZ/oz28XXTAPvVb/8DJgKSyCs0DPirEeCHiPwbdcJA1Bqw8A==}\n engines: {node: '>= 10'}\n cpu: [arm64]\n os: [win32]\n@@ -4644,8 +4642,8 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-QC0sWrfQm0/WdvvM//7UAgm+otbak6bznZ0zawTeqmLBh1hLjNeweyzSVKQEtZtlzDMKpzCVuuwkJq+VKBLvmw==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-ISL3c6i/v+JOsUHEbngDHaobmbgu6oSY0htKas1RjLWGkWXDLgEXMRjQ/xDbNVYH00Mto7mmq+nrjkNNbqOrfQ==}\n engines: {node: '>= 10'}\n cpu: [x64]\n os: [win32]\n@@ -4653,11 +4651,11 @@ packages:\n dev: true\n optional: true\n \n- /@nx/[email protected]:\n- resolution: {integrity: sha512-gFrJEv3+Jn2leu3RKFTakPHY8okI8hjOg8RO4OWA2ZemFXRyh9oIm/xsCsOyqYlGt06eqV2mD3GUun/05z1nhg==}\n+ /@nx/[email protected]:\n+ resolution: {integrity: sha512-nuFlhrl9FI6Tb2RvSNRGTVl/X3Cvf/vV2DO1MiyMjZWasZLhAr9rjtLYgTrJW4uQLJOn6MXJzP97w/Boa4pfRQ==}\n dependencies:\n- '@nrwl/workspace': 16.3.2\n- '@nx/devkit': 16.3.2([email protected])\n+ '@nrwl/workspace': 16.4.0\n+ '@nx/devkit': 16.4.0([email protected])\n '@parcel/watcher': 2.0.4\n chalk: 4.1.2\n chokidar: 3.5.3\n@@ -4669,7 +4667,7 @@ packages:\n ignore: 5.2.4\n minimatch: 3.0.5\n npm-run-path: 4.0.1\n- nx: 16.3.2\n+ nx: 16.4.0\n open: 8.4.2\n rxjs: 7.8.1\n tmp: 0.2.1\n@@ -4847,14 +4845,6 @@ packages:\n engines: {node: '>=10'}\n dev: true\n \n- /@skypack/[email protected]:\n- resolution: {integrity: sha512-T4Wyi9lUuz0a1C2OHuzqZ0aFOCI0AmaGTb2LP9sHgWdoHXlB3JU02gfBpa0Y081G/gFsJYpQ/R0iCJRzF/nknw==}\n- hasBin: true\n- dependencies:\n- kleur: 4.1.5\n- yargs-parser: 20.2.9\n- dev: true\n-\n /@sphinxxxx/[email protected]:\n resolution: {integrity: sha512-XExJS3cLqgrmNBIP3bBw6+1oQ1ksGjFh0+oClDKFYpCCqx/hlqwWO5KO/S63fzUo67SxI9dMrF0y5T/Ey7h8Zw==}\n dev: true\n@@ -4894,12 +4884,12 @@ packages:\n '@tsparticles/prettier-config': 1.10.0\n '@tsparticles/tsconfig': 1.13.0\n '@tsparticles/webpack-plugin': 1.15.5\n- '@typescript-eslint/eslint-plugin': 5.60.0(@typescript-eslint/[email protected])([email protected])([email protected])\n- '@typescript-eslint/parser': 5.60.0([email protected])([email protected])\n+ '@typescript-eslint/eslint-plugin': 5.60.1(@typescript-eslint/[email protected])([email protected])([email protected])\n+ '@typescript-eslint/parser': 5.60.1([email protected])([email protected])\n commander: 11.0.0\n eslint: 8.43.0\n eslint-config-prettier: 8.8.0([email protected])\n- eslint-plugin-jsdoc: 46.2.6([email protected])\n+ eslint-plugin-jsdoc: 46.3.0([email protected])\n eslint-plugin-tsdoc: 0.2.17\n fs-extra: 11.1.1\n klaw: 4.1.0\n@@ -4908,7 +4898,7 @@ packages:\n prompts: 2.4.2\n rimraf: 5.0.1\n typescript: 5.1.3\n- webpack: 5.87.0([email protected])\n+ webpack: 5.88.0([email protected])\n transitivePeerDependencies:\n - '@swc/core'\n - '@webpack-cli/generators'\n@@ -4943,11 +4933,11 @@ packages:\n resolution: {integrity: sha512-Cp/j8NwuZIWprPp4E5QQGGoJyH8fcFAUbCNoJpWFWjiVPo3ZZW7GdhkaHj4MwKoPUeI52VMNDellmpR8hF+ukA==}\n dependencies:\n '@tsparticles/prettier-config': 1.10.0\n- '@typescript-eslint/eslint-plugin': 5.60.0(@typescript-eslint/[email protected])([email protected])([email protected])\n- '@typescript-eslint/parser': 5.60.0([email protected])([email protected])\n+ '@typescript-eslint/eslint-plugin': 5.60.1(@typescript-eslint/[email protected])([email protected])([email protected])\n+ '@typescript-eslint/parser': 5.60.1([email protected])([email protected])\n eslint: 8.43.0\n- eslint-plugin-import: 2.27.5(@typescript-eslint/[email protected])([email protected])\n- eslint-plugin-jsdoc: 46.2.6([email protected])\n+ eslint-plugin-import: 2.27.5(@typescript-eslint/[email protected])([email protected])\n+ eslint-plugin-jsdoc: 46.3.0([email protected])\n eslint-plugin-tsdoc: 0.2.17\n prettier: 2.8.8\n typescript: 5.1.3\n@@ -5026,22 +5016,22 @@ packages:\n '@types/node': 20.3.1\n '@types/webpack-bundle-analyzer': 4.6.0([email protected])\n '@types/webpack-env': 1.18.1\n- '@typescript-eslint/eslint-plugin': 5.60.0(@typescript-eslint/[email protected])([email protected])([email protected])\n- '@typescript-eslint/parser': 5.60.0([email protected])([email protected])\n- babel-loader: 9.1.2(@babel/[email protected])([email protected])\n+ '@typescript-eslint/eslint-plugin': 5.60.1(@typescript-eslint/[email protected])([email protected])([email protected])\n+ '@typescript-eslint/parser': 5.60.1([email protected])([email protected])\n+ babel-loader: 9.1.2(@babel/[email protected])([email protected])\n browserslist: 4.21.9\n copyfiles: 2.4.1\n eslint: 8.43.0\n eslint-config-prettier: 8.8.0([email protected])\n- eslint-plugin-jsdoc: 46.2.6([email protected])\n+ eslint-plugin-jsdoc: 46.3.0([email protected])\n eslint-plugin-tsdoc: 0.2.17\n prettier: 2.8.8\n rimraf: 5.0.1\n- terser-webpack-plugin: 5.3.9([email protected])\n+ terser-webpack-plugin: 5.3.9([email protected])\n typescript: 5.1.3\n- webpack: 5.87.0([email protected])\n+ webpack: 5.88.0([email protected])\n webpack-bundle-analyzer: 4.9.0\n- webpack-cli: 5.1.4([email protected])([email protected])\n+ webpack-cli: 5.1.4([email protected])([email protected])\n transitivePeerDependencies:\n - '@swc/core'\n - '@webpack-cli/generators'\n@@ -5289,7 +5279,7 @@ packages:\n dependencies:\n '@types/node': 20.3.1\n tapable: 2.2.1\n- webpack: 5.87.0([email protected])\n+ webpack: 5.88.0([email protected])\n transitivePeerDependencies:\n - '@swc/core'\n - esbuild\n@@ -5302,7 +5292,7 @@ packages:\n dependencies:\n '@types/node': 20.3.1\n tapable: 2.2.1\n- webpack: 5.87.0([email protected])\n+ webpack: 5.88.0([email protected])\n transitivePeerDependencies:\n - '@swc/core'\n - esbuild\n@@ -5332,34 +5322,6 @@ packages:\n dev: true\n optional: true\n \n- /@typescript-eslint/[email protected](@typescript-eslint/[email protected])([email protected])([email protected]):\n- resolution: {integrity: sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- peerDependencies:\n- '@typescript-eslint/parser': ^5.0.0\n- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0\n- typescript: '*'\n- peerDependenciesMeta:\n- typescript:\n- optional: true\n- dependencies:\n- '@eslint-community/regexpp': 4.5.1\n- '@typescript-eslint/parser': 5.59.11([email protected])([email protected])\n- '@typescript-eslint/scope-manager': 5.59.11\n- '@typescript-eslint/type-utils': 5.59.11([email protected])([email protected])\n- '@typescript-eslint/utils': 5.59.11([email protected])([email protected])\n- debug: 4.3.4([email protected])\n- eslint: 8.43.0\n- grapheme-splitter: 1.0.4\n- ignore: 5.2.4\n- natural-compare-lite: 1.4.0\n- semver: 7.5.1\n- tsutils: 3.21.0([email protected])\n- typescript: 5.1.3\n- transitivePeerDependencies:\n- - supports-color\n- dev: true\n-\n /@typescript-eslint/[email protected](@typescript-eslint/[email protected])([email protected])([email protected]):\n resolution: {integrity: sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n@@ -5388,8 +5350,8 @@ packages:\n - supports-color\n dev: false\n \n- /@typescript-eslint/[email protected](@typescript-eslint/[email protected])([email protected])([email protected]):\n- resolution: {integrity: sha512-78B+anHLF1TI8Jn/cD0Q00TBYdMgjdOn980JfAVa9yw5sop8nyTfVOQAv6LWywkOGLclDBtv5z3oxN4w7jxyNg==}\n+ /@typescript-eslint/[email protected](@typescript-eslint/[email protected])([email protected])([email protected]):\n+ resolution: {integrity: sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n peerDependencies:\n '@typescript-eslint/parser': ^5.0.0\n@@ -5400,10 +5362,10 @@ packages:\n optional: true\n dependencies:\n '@eslint-community/regexpp': 4.5.1\n- '@typescript-eslint/parser': 5.60.0([email protected])([email protected])\n- '@typescript-eslint/scope-manager': 5.60.0\n- '@typescript-eslint/type-utils': 5.60.0([email protected])([email protected])\n- '@typescript-eslint/utils': 5.60.0([email protected])([email protected])\n+ '@typescript-eslint/parser': 5.60.1([email protected])([email protected])\n+ '@typescript-eslint/scope-manager': 5.60.1\n+ '@typescript-eslint/type-utils': 5.60.1([email protected])([email protected])\n+ '@typescript-eslint/utils': 5.60.1([email protected])([email protected])\n debug: 4.3.4([email protected])\n eslint: 8.43.0\n grapheme-splitter: 1.0.4\n@@ -5416,26 +5378,6 @@ packages:\n - supports-color\n dev: true\n \n- /@typescript-eslint/[email protected]([email protected])([email protected]):\n- resolution: {integrity: sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- peerDependencies:\n- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0\n- typescript: '*'\n- peerDependenciesMeta:\n- typescript:\n- optional: true\n- dependencies:\n- '@typescript-eslint/scope-manager': 5.59.11\n- '@typescript-eslint/types': 5.59.11\n- '@typescript-eslint/typescript-estree': 5.59.11([email protected])\n- debug: 4.3.4([email protected])\n- eslint: 8.43.0\n- typescript: 5.1.3\n- transitivePeerDependencies:\n- - supports-color\n- dev: true\n-\n /@typescript-eslint/[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n@@ -5456,8 +5398,8 @@ packages:\n - supports-color\n dev: false\n \n- /@typescript-eslint/[email protected]([email protected])([email protected]):\n- resolution: {integrity: sha512-jBONcBsDJ9UoTWrARkRRCgDz6wUggmH5RpQVlt7BimSwaTkTjwypGzKORXbR4/2Hqjk9hgwlon2rVQAjWNpkyQ==}\n+ /@typescript-eslint/[email protected]([email protected])([email protected]):\n+ resolution: {integrity: sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n peerDependencies:\n eslint: ^6.0.0 || ^7.0.0 || ^8.0.0\n@@ -5466,9 +5408,9 @@ packages:\n typescript:\n optional: true\n dependencies:\n- '@typescript-eslint/scope-manager': 5.60.0\n- '@typescript-eslint/types': 5.60.0\n- '@typescript-eslint/typescript-estree': 5.60.0([email protected])\n+ '@typescript-eslint/scope-manager': 5.60.1\n+ '@typescript-eslint/types': 5.60.1\n+ '@typescript-eslint/typescript-estree': 5.60.1([email protected])\n debug: 4.3.4([email protected])\n eslint: 8.43.0\n typescript: 5.1.3\n@@ -5476,14 +5418,6 @@ packages:\n - supports-color\n dev: true\n \n- /@typescript-eslint/[email protected]:\n- resolution: {integrity: sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- dependencies:\n- '@typescript-eslint/types': 5.59.11\n- '@typescript-eslint/visitor-keys': 5.59.11\n- dev: true\n-\n /@typescript-eslint/[email protected]:\n resolution: {integrity: sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n@@ -5492,32 +5426,12 @@ packages:\n '@typescript-eslint/visitor-keys': 5.59.6\n dev: false\n \n- /@typescript-eslint/[email protected]:\n- resolution: {integrity: sha512-hakuzcxPwXi2ihf9WQu1BbRj1e/Pd8ZZwVTG9kfbxAMZstKz8/9OoexIwnmLzShtsdap5U/CoQGRCWlSuPbYxQ==}\n+ /@typescript-eslint/[email protected]:\n+ resolution: {integrity: sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n dependencies:\n- '@typescript-eslint/types': 5.60.0\n- '@typescript-eslint/visitor-keys': 5.60.0\n- dev: true\n-\n- /@typescript-eslint/[email protected]([email protected])([email protected]):\n- resolution: {integrity: sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- peerDependencies:\n- eslint: '*'\n- typescript: '*'\n- peerDependenciesMeta:\n- typescript:\n- optional: true\n- dependencies:\n- '@typescript-eslint/typescript-estree': 5.59.11([email protected])\n- '@typescript-eslint/utils': 5.59.11([email protected])([email protected])\n- debug: 4.3.4([email protected])\n- eslint: 8.43.0\n- tsutils: 3.21.0([email protected])\n- typescript: 5.1.3\n- transitivePeerDependencies:\n- - supports-color\n+ '@typescript-eslint/types': 5.60.1\n+ '@typescript-eslint/visitor-keys': 5.60.1\n dev: true\n \n /@typescript-eslint/[email protected]([email protected])([email protected]):\n@@ -5540,8 +5454,8 @@ packages:\n - supports-color\n dev: false\n \n- /@typescript-eslint/[email protected]([email protected])([email protected]):\n- resolution: {integrity: sha512-X7NsRQddORMYRFH7FWo6sA9Y/zbJ8s1x1RIAtnlj6YprbToTiQnM6vxcMu7iYhdunmoC0rUWlca13D5DVHkK2g==}\n+ /@typescript-eslint/[email protected]([email protected])([email protected]):\n+ resolution: {integrity: sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n peerDependencies:\n eslint: '*'\n@@ -5550,8 +5464,8 @@ packages:\n typescript:\n optional: true\n dependencies:\n- '@typescript-eslint/typescript-estree': 5.60.0([email protected])\n- '@typescript-eslint/utils': 5.60.0([email protected])([email protected])\n+ '@typescript-eslint/typescript-estree': 5.60.1([email protected])\n+ '@typescript-eslint/utils': 5.60.1([email protected])([email protected])\n debug: 4.3.4([email protected])\n eslint: 8.43.0\n tsutils: 3.21.0([email protected])\n@@ -5560,42 +5474,16 @@ packages:\n - supports-color\n dev: true\n \n- /@typescript-eslint/[email protected]:\n- resolution: {integrity: sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- dev: true\n-\n /@typescript-eslint/[email protected]:\n resolution: {integrity: sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n dev: false\n \n- /@typescript-eslint/[email protected]:\n- resolution: {integrity: sha512-ascOuoCpNZBccFVNJRSC6rPq4EmJ2NkuoKnd6LDNyAQmdDnziAtxbCGWCbefG1CNzmDvd05zO36AmB7H8RzKPA==}\n+ /@typescript-eslint/[email protected]:\n+ resolution: {integrity: sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n dev: true\n \n- /@typescript-eslint/[email protected]([email protected]):\n- resolution: {integrity: sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- peerDependencies:\n- typescript: '*'\n- peerDependenciesMeta:\n- typescript:\n- optional: true\n- dependencies:\n- '@typescript-eslint/types': 5.59.11\n- '@typescript-eslint/visitor-keys': 5.59.11\n- debug: 4.3.4([email protected])\n- globby: 11.1.0\n- is-glob: 4.0.3\n- semver: 7.5.1\n- tsutils: 3.21.0([email protected])\n- typescript: 5.1.3\n- transitivePeerDependencies:\n- - supports-color\n- dev: true\n-\n /@typescript-eslint/[email protected]([email protected]):\n resolution: {integrity: sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n@@ -5617,8 +5505,8 @@ packages:\n - supports-color\n dev: false\n \n- /@typescript-eslint/[email protected]([email protected]):\n- resolution: {integrity: sha512-R43thAuwarC99SnvrBmh26tc7F6sPa2B3evkXp/8q954kYL6Ro56AwASYWtEEi+4j09GbiNAHqYwNNZuNlARGQ==}\n+ /@typescript-eslint/[email protected]([email protected]):\n+ resolution: {integrity: sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n peerDependencies:\n typescript: '*'\n@@ -5626,38 +5514,18 @@ packages:\n typescript:\n optional: true\n dependencies:\n- '@typescript-eslint/types': 5.60.0\n- '@typescript-eslint/visitor-keys': 5.60.0\n+ '@typescript-eslint/types': 5.60.1\n+ '@typescript-eslint/visitor-keys': 5.60.1\n debug: 4.3.4([email protected])\n globby: 11.1.0\n is-glob: 4.0.3\n- semver: 7.5.1\n+ semver: 7.5.3\n tsutils: 3.21.0([email protected])\n typescript: 5.1.3\n transitivePeerDependencies:\n - supports-color\n dev: true\n \n- /@typescript-eslint/[email protected]([email protected])([email protected]):\n- resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- peerDependencies:\n- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0\n- dependencies:\n- '@eslint-community/eslint-utils': 4.4.0([email protected])\n- '@types/json-schema': 7.0.11\n- '@types/semver': 7.5.0\n- '@typescript-eslint/scope-manager': 5.59.11\n- '@typescript-eslint/types': 5.59.11\n- '@typescript-eslint/typescript-estree': 5.59.11([email protected])\n- eslint: 8.43.0\n- eslint-scope: 5.1.1\n- semver: 7.5.1\n- transitivePeerDependencies:\n- - supports-color\n- - typescript\n- dev: true\n-\n /@typescript-eslint/[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n@@ -5678,8 +5546,8 @@ packages:\n - typescript\n dev: false\n \n- /@typescript-eslint/[email protected]([email protected])([email protected]):\n- resolution: {integrity: sha512-ba51uMqDtfLQ5+xHtwlO84vkdjrqNzOnqrnwbMHMRY8Tqeme8C2Q8Fc7LajfGR+e3/4LoYiWXUM6BpIIbHJ4hQ==}\n+ /@typescript-eslint/[email protected]([email protected])([email protected]):\n+ resolution: {integrity: sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n peerDependencies:\n eslint: ^6.0.0 || ^7.0.0 || ^8.0.0\n@@ -5687,25 +5555,17 @@ packages:\n '@eslint-community/eslint-utils': 4.4.0([email protected])\n '@types/json-schema': 7.0.11\n '@types/semver': 7.5.0\n- '@typescript-eslint/scope-manager': 5.60.0\n- '@typescript-eslint/types': 5.60.0\n- '@typescript-eslint/typescript-estree': 5.60.0([email protected])\n+ '@typescript-eslint/scope-manager': 5.60.1\n+ '@typescript-eslint/types': 5.60.1\n+ '@typescript-eslint/typescript-estree': 5.60.1([email protected])\n eslint: 8.43.0\n eslint-scope: 5.1.1\n- semver: 7.5.1\n+ semver: 7.5.3\n transitivePeerDependencies:\n - supports-color\n - typescript\n dev: true\n \n- /@typescript-eslint/[email protected]:\n- resolution: {integrity: sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==}\n- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n- dependencies:\n- '@typescript-eslint/types': 5.59.11\n- eslint-visitor-keys: 3.4.1\n- dev: true\n-\n /@typescript-eslint/[email protected]:\n resolution: {integrity: sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n@@ -5714,11 +5574,11 @@ packages:\n eslint-visitor-keys: 3.4.1\n dev: false\n \n- /@typescript-eslint/[email protected]:\n- resolution: {integrity: sha512-wm9Uz71SbCyhUKgcaPRauBdTegUyY/ZWl8gLwD/i/ybJqscrrdVSFImpvUz16BLPChIeKBK5Fa9s6KDQjsjyWw==}\n+ /@typescript-eslint/[email protected]:\n+ resolution: {integrity: sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==}\n engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}\n dependencies:\n- '@typescript-eslint/types': 5.60.0\n+ '@typescript-eslint/types': 5.60.1\n eslint-visitor-keys: 3.4.1\n dev: true\n \n@@ -5824,15 +5684,15 @@ packages:\n webpack-cli: 5.1.1([email protected])([email protected])\n dev: false\n \n- /@webpack-cli/[email protected]([email protected])([email protected]):\n+ /@webpack-cli/[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==}\n engines: {node: '>=14.15.0'}\n peerDependencies:\n webpack: 5.x.x\n webpack-cli: 5.x.x\n dependencies:\n- webpack: 5.87.0([email protected])\n- webpack-cli: 5.1.4([email protected])([email protected])\n+ webpack: 5.88.0([email protected])\n+ webpack-cli: 5.1.4([email protected])([email protected])\n \n /@webpack-cli/[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-fE1UEWTwsAxRhrJNikE7v4EotYflkEhBL7EbajfkPlf6E37/2QshOy/D48Mw8G5XMFlQtS6YV42vtbG9zBpIQA==}\n@@ -5845,15 +5705,15 @@ packages:\n webpack-cli: 5.1.1([email protected])([email protected])\n dev: false\n \n- /@webpack-cli/[email protected]([email protected])([email protected]):\n+ /@webpack-cli/[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==}\n engines: {node: '>=14.15.0'}\n peerDependencies:\n webpack: 5.x.x\n webpack-cli: 5.x.x\n dependencies:\n- webpack: 5.87.0([email protected])\n- webpack-cli: 5.1.4([email protected])([email protected])\n+ webpack: 5.88.0([email protected])\n+ webpack-cli: 5.1.4([email protected])([email protected])\n \n /@webpack-cli/[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-0xRgjgDLdz6G7+vvDLlaRpFatJaJ69uTalZLRSMX5B3VUrDmXcrVA3+6fXXQgmYz7bY9AAgs348XQdmtLsK41A==}\n@@ -5870,7 +5730,7 @@ packages:\n webpack-cli: 5.1.1([email protected])([email protected])\n dev: false\n \n- /@webpack-cli/[email protected]([email protected])([email protected]):\n+ /@webpack-cli/[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==}\n engines: {node: '>=14.15.0'}\n peerDependencies:\n@@ -5881,8 +5741,8 @@ packages:\n webpack-dev-server:\n optional: true\n dependencies:\n- webpack: 5.87.0([email protected])\n- webpack-cli: 5.1.4([email protected])([email protected])\n+ webpack: 5.88.0([email protected])\n+ webpack-cli: 5.1.4([email protected])([email protected])\n \n /@xtuc/[email protected]:\n resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}\n@@ -6299,7 +6159,7 @@ packages:\n webpack: 5.83.1([email protected])\n dev: false\n \n- /[email protected](@babel/[email protected])([email protected]):\n+ /[email protected](@babel/[email protected])([email protected]):\n resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==}\n engines: {node: '>= 14.15.0'}\n peerDependencies:\n@@ -6309,7 +6169,7 @@ packages:\n '@babel/core': 7.22.5\n find-cache-dir: 3.3.2\n schema-utils: 4.0.1\n- webpack: 5.87.0([email protected])\n+ webpack: 5.88.0([email protected])\n dev: true\n \n /[email protected](@babel/[email protected]):\n@@ -6537,7 +6397,7 @@ packages:\n /[email protected]:\n resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}\n dependencies:\n- semver: 7.5.1\n+ semver: 7.5.3\n dev: true\n \n /[email protected]:\n@@ -6775,10 +6635,6 @@ packages:\n resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}\n engines: {node: '>=6.0'}\n \n- /[email protected]:\n- resolution: {integrity: sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}\n engines: {node: '>=8'}\n@@ -6954,10 +6810,6 @@ packages:\n dot-prop: 5.3.0\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-cFhkjbGY1jLFWIV7KegECbfuyYPxSGvgGkdkfM+ibboQDoPwg2FRHm5BSNTOApiauRBzJIQH7qvOJs2sW5ueKQ==}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}\n \n@@ -7166,7 +7018,7 @@ packages:\n /[email protected]:\n resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}\n \n- /[email protected](@types/[email protected])([email protected])([email protected])([email protected]):\n+ /[email protected](@types/[email protected])([email protected])([email protected])([email protected]):\n resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==}\n engines: {node: '>=12', npm: '>=6'}\n peerDependencies:\n@@ -7176,21 +7028,11 @@ packages:\n typescript: '>=3'\n dependencies:\n '@types/node': 20.3.1\n- cosmiconfig: 8.1.3\n+ cosmiconfig: 8.2.0\n ts-node: 10.9.1(@types/[email protected])([email protected])\n typescript: 5.1.3\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==}\n- engines: {node: '>=14'}\n- dependencies:\n- import-fresh: 3.3.0\n- js-yaml: 4.1.0\n- parse-json: 5.2.0\n- path-type: 4.0.0\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==}\n engines: {node: '>=14'}\n@@ -7205,14 +7047,6 @@ packages:\n resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}\n- dependencies:\n- lru-cache: 4.1.5\n- shebang-command: 1.2.0\n- which: 1.3.1\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}\n engines: {node: '>= 8'}\n@@ -7692,7 +7526,7 @@ packages:\n - supports-color\n dev: true\n \n- /[email protected](@typescript-eslint/[email protected])([email protected])([email protected]):\n+ /[email protected](@typescript-eslint/[email protected])([email protected])([email protected]):\n resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}\n engines: {node: '>=4'}\n peerDependencies:\n@@ -7713,7 +7547,7 @@ packages:\n eslint-import-resolver-webpack:\n optional: true\n dependencies:\n- '@typescript-eslint/parser': 5.60.0([email protected])([email protected])\n+ '@typescript-eslint/parser': 5.60.1([email protected])([email protected])\n debug: 3.2.7([email protected])\n eslint: 8.43.0\n eslint-import-resolver-node: 0.3.7\n@@ -7721,7 +7555,7 @@ packages:\n - supports-color\n dev: true\n \n- /[email protected](@typescript-eslint/[email protected])([email protected]):\n+ /[email protected](@typescript-eslint/[email protected])([email protected]):\n resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}\n engines: {node: '>=4'}\n peerDependencies:\n@@ -7731,7 +7565,7 @@ packages:\n '@typescript-eslint/parser':\n optional: true\n dependencies:\n- '@typescript-eslint/parser': 5.60.0([email protected])([email protected])\n+ '@typescript-eslint/parser': 5.60.1([email protected])([email protected])\n array-includes: 3.1.6\n array.prototype.flat: 1.3.1\n array.prototype.flatmap: 1.3.1\n@@ -7739,7 +7573,7 @@ packages:\n doctrine: 2.1.0\n eslint: 8.43.0\n eslint-import-resolver-node: 0.3.7\n- eslint-module-utils: 2.8.0(@typescript-eslint/[email protected])([email protected])([email protected])\n+ eslint-module-utils: 2.8.0(@typescript-eslint/[email protected])([email protected])([email protected])\n has: 1.0.3\n is-core-module: 2.12.1\n is-glob: 4.0.3\n@@ -7773,8 +7607,8 @@ packages:\n - supports-color\n dev: false\n \n- /[email protected]([email protected]):\n- resolution: {integrity: sha512-zIaK3zbSrKuH12bP+SPybPgcHSM6MFzh3HFeaODzmsF1N8C1l8dzJ22cW1aq4g0+nayU1VMjmNf7hg0dpShLrA==}\n+ /[email protected]([email protected]):\n+ resolution: {integrity: sha512-nfSvsR8YJRZyKrWwcXPSQyQC8jllfdEjcRhTXFr7RxfB5Wyl7AxrfjCUz72WwalkXMF4u+R6F/oDoW46ah69HQ==}\n engines: {node: '>=16'}\n peerDependencies:\n eslint: ^7.0.0 || ^8.0.0\n@@ -7965,19 +7799,6 @@ packages:\n resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}\n engines: {node: '>=0.8.x'}\n \n- /[email protected]:\n- resolution: {integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==}\n- engines: {node: '>=4'}\n- dependencies:\n- cross-spawn: 5.1.0\n- get-stream: 3.0.0\n- is-stream: 1.1.0\n- npm-run-path: 2.0.2\n- p-finally: 1.0.0\n- signal-exit: 3.0.7\n- strip-eof: 1.0.0\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==}\n engines: {node: '>=10'}\n@@ -8401,11 +8222,6 @@ packages:\n engines: {node: '>=8'}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}\n- engines: {node: '>=4'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}\n engines: {node: '>=8'}\n@@ -8577,7 +8393,7 @@ packages:\n es6-error: 4.1.1\n matcher: 3.0.0\n roarr: 2.15.4\n- semver: 7.5.1\n+ semver: 7.5.3\n serialize-error: 7.0.1\n dev: true\n optional: true\n@@ -8935,11 +8751,6 @@ packages:\n resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}\n- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==}\n engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}\n@@ -8948,7 +8759,7 @@ packages:\n promzard: 1.0.0\n read: 2.1.0\n read-package-json: 6.0.4\n- semver: 7.5.1\n+ semver: 7.5.3\n validate-npm-package-license: 3.0.4\n validate-npm-package-name: 5.0.0\n dev: true\n@@ -8974,11 +8785,6 @@ packages:\n wrap-ansi: 7.0.0\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==}\n- engines: {node: '>= 0.10'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}\n engines: {node: '>= 0.4'}\n@@ -9050,13 +8856,6 @@ packages:\n engines: {node: '>= 0.4'}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==}\n- hasBin: true\n- dependencies:\n- ci-info: 1.6.0\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}\n hasBin: true\n@@ -9192,11 +8991,6 @@ packages:\n protocols: 2.0.1\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}\n- engines: {node: '>=0.10.0'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==}\n engines: {node: '>=8'}\n@@ -9644,25 +9438,20 @@ packages:\n engines: {node: '>=6'}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}\n- engines: {node: '>=6'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==}\n engines: {node: '>=0.10.0'}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-omFpf1pTiaObC2YOC7K+euaDwhQA9CyKN1kXxmlSwaSkh8b8QTs4SC8jp3oNeXfcHpVS1ttuuz98AvQvJD46wA==}\n+ /[email protected]:\n+ resolution: {integrity: sha512-fY1EctsuP21eR7F9zmnqcdtBRkzvsoAOVYzjrtQQXYt9hlyA14RvjQJIF7R54t+T60As7kFYNgw2PHsC3orV2w==}\n engines: {node: ^14.17.0 || >=16.0.0}\n hasBin: true\n dependencies:\n- '@lerna/child-process': 7.0.2\n- '@lerna/create': 7.0.2\n+ '@lerna/child-process': 7.1.0\n+ '@lerna/create': 7.1.0\n '@npmcli/run-script': 6.0.2\n- '@nx/devkit': 16.3.2([email protected])\n+ '@nx/devkit': 16.3.2([email protected])\n '@octokit/plugin-enterprise-rest': 6.0.1\n '@octokit/rest': 19.0.11\n byte-size: 8.1.1\n@@ -9704,7 +9493,7 @@ packages:\n npm-packlist: 5.1.1\n npm-registry-fetch: 14.0.5\n npmlog: 6.0.2\n- nx: 16.3.2\n+ nx: 16.4.0\n p-map: 4.0.0\n p-map-series: 2.1.0\n p-pipe: 3.1.0\n@@ -9768,7 +9557,7 @@ packages:\n npm-package-arg: 10.1.0\n npm-registry-fetch: 14.0.5\n proc-log: 3.0.0\n- semver: 7.5.1\n+ semver: 7.5.3\n sigstore: 1.5.2\n ssri: 10.0.4\n transitivePeerDependencies:\n@@ -9936,13 +9725,6 @@ packages:\n engines: {node: '>=8'}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}\n- dependencies:\n- pseudomap: 1.0.2\n- yallist: 2.1.2\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}\n dependencies:\n@@ -10453,7 +10235,7 @@ packages:\n nopt: 6.0.0\n npmlog: 6.0.2\n rimraf: 3.0.2\n- semver: 7.5.1\n+ semver: 7.5.3\n tar: 6.1.15\n which: 2.0.2\n transitivePeerDependencies:\n@@ -10535,7 +10317,7 @@ packages:\n dependencies:\n hosted-git-info: 4.1.0\n is-core-module: 2.12.1\n- semver: 7.5.1\n+ semver: 7.5.3\n validate-npm-package-license: 3.0.4\n dev: true\n \n@@ -10545,15 +10327,10 @@ packages:\n dependencies:\n hosted-git-info: 6.1.1\n is-core-module: 2.12.1\n- semver: 7.5.1\n+ semver: 7.5.3\n validate-npm-package-license: 3.0.4\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-7WyT0w8jhpDStXRq5836AMmihQwq2nrUVQrgjvUo/p/NZf9uy/MeJ246lBJVmWuYXMlJuG9BNZHF0hWjfTbQUA==}\n- engines: {node: '>=0.10.0'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}\n engines: {node: '>=0.10.0'}\n@@ -10581,7 +10358,7 @@ packages:\n resolution: {integrity: sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==}\n engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}\n dependencies:\n- semver: 7.5.1\n+ semver: 7.5.3\n dev: true\n \n /[email protected]:\n@@ -10599,7 +10376,7 @@ packages:\n dependencies:\n hosted-git-info: 6.1.1\n proc-log: 3.0.0\n- semver: 7.5.1\n+ semver: 7.5.3\n validate-npm-package-name: 5.0.0\n dev: true\n \n@@ -10608,7 +10385,7 @@ packages:\n engines: {node: '>=10'}\n dependencies:\n hosted-git-info: 3.0.8\n- semver: 7.5.1\n+ semver: 7.5.3\n validate-npm-package-name: 3.0.0\n dev: true\n \n@@ -10637,7 +10414,7 @@ packages:\n npm-install-checks: 6.1.1\n npm-normalize-package-bin: 3.0.1\n npm-package-arg: 10.1.0\n- semver: 7.5.1\n+ semver: 7.5.3\n dev: true\n \n /[email protected]:\n@@ -10655,13 +10432,6 @@ packages:\n - supports-color\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}\n- engines: {node: '>=4'}\n- dependencies:\n- path-key: 2.0.1\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}\n engines: {node: '>=8'}\n@@ -10708,8 +10478,8 @@ packages:\n - debug\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-fOzCVL7qoCJAcYTJwvJ9j+PSaL791ro4AICWuLxaphZsp2jcLoav4Ev7ONPks2Wlkt8FS9bee3nqQ3w1ya36Og==}\n+ /[email protected]:\n+ resolution: {integrity: sha512-HhJnOAm2wlaIVMmxK1HcdcKfX5DlnQc1RAHFf+QostvQQ/SmUg9f7LoStxpNm01JhQTehb01tH9zAsXKcKzO4A==}\n hasBin: true\n requiresBuild: true\n peerDependencies:\n@@ -10721,7 +10491,7 @@ packages:\n '@swc/core':\n optional: true\n dependencies:\n- '@nrwl/tao': 16.3.2\n+ '@nrwl/tao': 16.4.0\n '@parcel/watcher': 2.0.4\n '@yarnpkg/lockfile': 1.1.0\n '@yarnpkg/parsers': 3.0.0-rc.44\n@@ -10745,7 +10515,7 @@ packages:\n minimatch: 3.0.5\n npm-run-path: 4.0.1\n open: 8.4.2\n- semver: 7.3.4\n+ semver: 7.5.3\n string-width: 4.2.3\n strong-log-transformer: 2.1.0\n tar-stream: 2.2.0\n@@ -10756,16 +10526,16 @@ packages:\n yargs: 17.7.2\n yargs-parser: 21.1.1\n optionalDependencies:\n- '@nx/nx-darwin-arm64': 16.3.2\n- '@nx/nx-darwin-x64': 16.3.2\n- '@nx/nx-freebsd-x64': 16.3.2\n- '@nx/nx-linux-arm-gnueabihf': 16.3.2\n- '@nx/nx-linux-arm64-gnu': 16.3.2\n- '@nx/nx-linux-arm64-musl': 16.3.2\n- '@nx/nx-linux-x64-gnu': 16.3.2\n- '@nx/nx-linux-x64-musl': 16.3.2\n- '@nx/nx-win32-arm64-msvc': 16.3.2\n- '@nx/nx-win32-x64-msvc': 16.3.2\n+ '@nx/nx-darwin-arm64': 16.4.0\n+ '@nx/nx-darwin-x64': 16.4.0\n+ '@nx/nx-freebsd-x64': 16.4.0\n+ '@nx/nx-linux-arm-gnueabihf': 16.4.0\n+ '@nx/nx-linux-arm64-gnu': 16.4.0\n+ '@nx/nx-linux-arm64-musl': 16.4.0\n+ '@nx/nx-linux-x64-gnu': 16.4.0\n+ '@nx/nx-linux-x64-musl': 16.4.0\n+ '@nx/nx-win32-arm64-msvc': 16.4.0\n+ '@nx/nx-win32-x64-msvc': 16.4.0\n transitivePeerDependencies:\n - debug\n dev: true\n@@ -11147,11 +10917,6 @@ packages:\n resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}\n engines: {node: '>=0.10.0'}\n \n- /[email protected]:\n- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}\n- engines: {node: '>=4'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}\n engines: {node: '>=8'}\n@@ -11318,10 +11083,6 @@ packages:\n resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}\n \n@@ -11708,10 +11469,6 @@ packages:\n strip-indent: 3.0.0\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}\n engines: {node: '>=4'}\n@@ -12007,20 +11764,28 @@ packages:\n lru-cache: 6.0.0\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==}\n+ /[email protected]:\n+ resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}\n+ engines: {node: '>=10'}\n+ hasBin: true\n+ dependencies:\n+ lru-cache: 6.0.0\n+\n+ /[email protected]:\n+ resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==}\n engines: {node: '>=10'}\n hasBin: true\n dependencies:\n lru-cache: 6.0.0\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}\n+ /[email protected]:\n+ resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==}\n engines: {node: '>=10'}\n hasBin: true\n dependencies:\n lru-cache: 6.0.0\n+ dev: true\n \n /[email protected]:\n resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}\n@@ -12087,24 +11852,12 @@ packages:\n dependencies:\n kind-of: 6.0.3\n \n- /[email protected]:\n- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}\n- engines: {node: '>=0.10.0'}\n- dependencies:\n- shebang-regex: 1.0.0\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}\n engines: {node: '>=8'}\n dependencies:\n shebang-regex: 3.0.0\n \n- /[email protected]:\n- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}\n- engines: {node: '>=0.10.0'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}\n engines: {node: '>=8'}\n@@ -12408,21 +12161,11 @@ packages:\n engines: {node: '>=8'}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}\n- engines: {node: '>=0.10.0'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}\n engines: {node: '>=6'}\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==}\n- engines: {node: '>=4'}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}\n engines: {node: '>=8'}\n@@ -12563,7 +12306,7 @@ packages:\n webpack: 5.83.1([email protected])\n dev: false\n \n- /[email protected]([email protected]):\n+ /[email protected]([email protected]):\n resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}\n engines: {node: '>= 10.13.0'}\n peerDependencies:\n@@ -12584,7 +12327,7 @@ packages:\n schema-utils: 3.1.2\n serialize-javascript: 6.0.1\n terser: 5.17.4\n- webpack: 5.87.0([email protected])\n+ webpack: 5.88.0([email protected])\n \n /[email protected]:\n resolution: {integrity: sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==}\n@@ -12982,8 +12725,8 @@ packages:\n typescript: 5.1.3\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-KQTtfHnuRVfW55U5pjQGBJlvhrgWL2VwJ7WVo4HUTz74BlOk26Ca3Ngzk84BdJ9MvpFZ/fH+3OJYfSqJYJNZIw==}\n+ /[email protected]:\n+ resolution: {integrity: sha512-EcmquhfGEmEJOAezLZC6CzY0rPNzfXuky+Z3zoXULEEncW8e13aAjmC2r8ppT1bvvDekJj1TJ4xVhOdkjYtkUA==}\n hasBin: true\n dependencies:\n '@types/json-schema': 7.0.11\n@@ -13339,7 +13082,7 @@ packages:\n webpack-merge: 5.8.0\n dev: false\n \n- /[email protected]([email protected])([email protected]):\n+ /[email protected]([email protected])([email protected]):\n resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==}\n engines: {node: '>=14.15.0'}\n hasBin: true\n@@ -13357,9 +13100,9 @@ packages:\n optional: true\n dependencies:\n '@discoveryjs/json-ext': 0.5.7\n- '@webpack-cli/configtest': 2.1.1([email protected])([email protected])\n- '@webpack-cli/info': 2.0.2([email protected])([email protected])\n- '@webpack-cli/serve': 2.0.5([email protected])([email protected])\n+ '@webpack-cli/configtest': 2.1.1([email protected])([email protected])\n+ '@webpack-cli/info': 2.0.2([email protected])([email protected])\n+ '@webpack-cli/serve': 2.0.5([email protected])([email protected])\n colorette: 2.0.20\n commander: 10.0.1\n cross-spawn: 7.0.3\n@@ -13368,7 +13111,7 @@ packages:\n import-local: 3.1.0\n interpret: 3.1.1\n rechoir: 0.8.0\n- webpack: 5.87.0([email protected])\n+ webpack: 5.88.0([email protected])\n webpack-bundle-analyzer: 4.9.0\n webpack-merge: 5.8.0\n \n@@ -13424,8 +13167,8 @@ packages:\n - uglify-js\n dev: false\n \n- /[email protected]([email protected]):\n- resolution: {integrity: sha512-GOu1tNbQ7p1bDEoFRs2YPcfyGs8xq52yyPBZ3m2VGnXGtV9MxjrkABHm4V9Ia280OefsSLzvbVoXcfLxjKY/Iw==}\n+ /[email protected]([email protected]):\n+ resolution: {integrity: sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw==}\n engines: {node: '>=10.13.0'}\n hasBin: true\n peerDependencies:\n@@ -13455,7 +13198,7 @@ packages:\n neo-async: 2.6.2\n schema-utils: 3.3.0\n tapable: 2.2.1\n- terser-webpack-plugin: 5.3.9([email protected])\n+ terser-webpack-plugin: 5.3.9([email protected])\n watchpack: 2.4.0\n webpack-cli: 5.1.1([email protected])([email protected])\n webpack-sources: 3.2.3\n@@ -13465,8 +13208,8 @@ packages:\n - uglify-js\n dev: false\n \n- /[email protected]([email protected]):\n- resolution: {integrity: sha512-GOu1tNbQ7p1bDEoFRs2YPcfyGs8xq52yyPBZ3m2VGnXGtV9MxjrkABHm4V9Ia280OefsSLzvbVoXcfLxjKY/Iw==}\n+ /[email protected]([email protected]):\n+ resolution: {integrity: sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw==}\n engines: {node: '>=10.13.0'}\n hasBin: true\n peerDependencies:\n@@ -13496,9 +13239,9 @@ packages:\n neo-async: 2.6.2\n schema-utils: 3.3.0\n tapable: 2.2.1\n- terser-webpack-plugin: 5.3.9([email protected])\n+ terser-webpack-plugin: 5.3.9([email protected])\n watchpack: 2.4.0\n- webpack-cli: 5.1.4([email protected])([email protected])\n+ webpack-cli: 5.1.4([email protected])([email protected])\n webpack-sources: 3.2.3\n transitivePeerDependencies:\n - '@swc/core'\n@@ -13554,13 +13297,6 @@ packages:\n is-typed-array: 1.1.10\n dev: true\n \n- /[email protected]:\n- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}\n- hasBin: true\n- dependencies:\n- isexe: 2.0.0\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}\n engines: {node: '>= 8'}\n@@ -13740,10 +13476,6 @@ packages:\n resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}\n engines: {node: '>=10'}\n \n- /[email protected]:\n- resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}\n- dev: true\n-\n /[email protected]:\n resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}\n \n@@ -13853,14 +13585,3 @@ packages:\n resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}\n engines: {node: '>=12.20'}\n dev: true\n-\n- /[email protected]:\n- resolution: {integrity: sha512-jcKpkthap6x63MB4TxwCyuIGkV0oYP/YRyuQU5UO0Yz/E/ZAu+653/uov+phdmO54n6BcvFRyyt0RRrWdN2mpw==}\n- engines: {node: '>=4'}\n- requiresBuild: true\n- dependencies:\n- execa: 0.8.0\n- is-ci: 1.2.1\n- normalize-path: 1.0.0\n- strip-indent: 2.0.0\n- dev: true\n", "ByteStream.ts": "@@ -20,13 +20,11 @@ export class ByteStream {\n * @returns the string\n */\n getString(count: number): string {\n- let s = \"\";\n+ const slice = this.data.slice(this.pos, this.pos + count);\n \n- for (; --count >= 0; s += String.fromCharCode(this.data[this.pos++])) {\n- // do nothing\n- }\n+ this.pos += slice.length;\n \n- return s;\n+ return slice.reduce((acc, curr) => acc + String.fromCharCode(curr), \"\");\n }\n \n /**\n", "DisposalMethod.ts": "", "ApplicationExtension.ts": "", "Frame.ts": "@@ -1,4 +1,5 @@\n-import type { DisposalMethod } from \"./DisposalMethod\";\n+import type { DisposalMethod } from \"../Enums/DisposalMethod\";\n+import type { IRgb } from \"tsparticles-engine\";\n import type { PlainTextData } from \"./PlainTextData\";\n \n export interface Frame {\n@@ -40,7 +41,7 @@ export interface Frame {\n /**\n * the local color table for this frame\n */\n- localColorTable: [number, number, number][];\n+ localColorTable: IRgb[];\n \n /**\n * the text that will be displayed on screen with this frame (if not null)\n", "GIF.ts": "@@ -1,5 +1,6 @@\n import type { ApplicationExtension } from \"./ApplicationExtension\";\n import type { Frame } from \"./Frame\";\n+import type { IRgb } from \"tsparticles-engine\";\n \n export interface GIF {\n /**\n@@ -30,7 +31,7 @@ export interface GIF {\n /**\n * the global color table for the GIF\n */\n- globalColorTable: [number, number, number][];\n+ globalColorTable: IRgb[];\n \n /**\n * the height of the image in pixels (locical screen size)\n", "GIFDataHeaders.ts": "", "GIFProgressCallbackFunction.ts": "", "PlainTextData.ts": "@@ -1,3 +1,5 @@\n+import type { IDimension } from \"tsparticles-engine\";\n+\n export interface PlainTextData {\n /**\n * the index into the global color table for the background color of the text\n@@ -5,14 +7,9 @@ export interface PlainTextData {\n backgroundColor: number;\n \n /**\n- * the height (in pixels) of each cell (character) in text grid\n- */\n- charHeight: number;\n-\n- /**\n- * the width (in pixels) of each cell (character) in text grid\n+ * the size (in pixels) of each cell (character) in text grid\n */\n- charWidth: number;\n+ charSize: IDimension;\n \n /**\n * the index into the global color table for the foreground color of the text\n", "ImageDrawer.ts": "@@ -1,7 +1,7 @@\n import { type Container, type IDelta, type IShapeDrawer, errorPrefix } from \"tsparticles-engine\";\n import type { IImage, IParticleImage, ImageParticle } from \"./Utils\";\n import type { ImageContainer, ImageEngine } from \"./types\";\n-import { DisposalMethod } from \"./GifUtils/DisposalMethod\";\n+import { DisposalMethod } from \"./GifUtils/Enums/DisposalMethod\";\n import type { IImageShape } from \"./IImageShape\";\n import { replaceImageColor } from \"./Utils\";\n \n"}
refactor: remove psql_path from postgres data loading (#3071)
f9429987eea8a83b8126c450e5ff07c57312f59b
refactor
https://github.com/rohankumardubey/ibis/commit/f9429987eea8a83b8126c450e5ff07c57312f59b
remove psql_path from postgres data loading (#3071)
{"datamgr.py": "@@ -8,7 +8,6 @@ from pathlib import Path\n import click\n import pandas as pd\n import sqlalchemy as sa\n-from plumbum import local\n from toolz import dissoc\n \n SCRIPT_DIR = Path(__file__).parent.absolute()\n@@ -242,20 +241,12 @@ def parquet(tables, data_directory, ignore_missing_dependency, **params):\n path_type=Path,\n ),\n )\[email protected](\n- '-l',\n- '--psql-path',\n- type=click.Path(exists=True),\n- required=os.name == 'nt',\n- default=None if os.name == 'nt' else '/usr/bin/psql',\n-)\n @click.option(\n '--plpython/--no-plpython',\n help='Create PL/Python extension in database',\n default=True,\n )\n-def postgres(schema, tables, data_directory, psql_path, plpython, **params):\n- psql = local[psql_path]\n+def postgres(schema, tables, data_directory, plpython, **params):\n logger.info('Initializing PostgreSQL...')\n engine = init_database(\n 'postgresql', params, schema, isolation_level='AUTOCOMMIT'\n@@ -270,8 +261,6 @@ def postgres(schema, tables, data_directory, psql_path, plpython, **params):\n if plpython:\n engine.execute(\"CREATE EXTENSION IF NOT EXISTS PLPYTHONU\")\n \n- query = \"COPY {} FROM STDIN WITH (FORMAT CSV, HEADER TRUE, DELIMITER ',')\"\n- database = params['database']\n for table in tables:\n src = data_directory / f'{table}.csv'\n \n@@ -298,23 +287,21 @@ def postgres(schema, tables, data_directory, psql_path, plpython, **params):\n \"geo_multipolygon\": Geometry(\"MULTIPOLYGON\", srid=srid),\n },\n )\n- continue\n-\n- load = psql[\n- '--host',\n- params['host'],\n- '--port',\n- params['port'],\n- '--username',\n- params['user'],\n- '--dbname',\n- database,\n- '--command',\n- query.format(table),\n- ]\n- with local.env(PGPASSWORD=params['password']):\n- with src.open('r') as f:\n- load(stdin=f)\n+ else:\n+ # Here we insert rows using COPY table FROM STDIN, by way of\n+ # psycopg2's `copy_expert` API.\n+ #\n+ # We could use DataFrame.to_sql(method=callable), but that incurs\n+ # an unnecessary round trip and requires more code: the `data_iter`\n+ # argument would have to be turned back into a CSV before being\n+ # passed to `copy_expert`.\n+ sql = (\n+ f\"COPY {table} FROM STDIN \"\n+ \"WITH (FORMAT CSV, HEADER TRUE, DELIMITER ',')\"\n+ )\n+ with src.open('r') as file:\n+ with engine.begin() as con, con.connection.cursor() as cur:\n+ cur.copy_expert(sql=sql, file=file)\n \n engine.execute('VACUUM FULL ANALYZE')\n \n"}
chore(deps): lock numpy to latest version
afa7c61dcd5041bcff6fcb30bc24475743af67b8
chore
https://github.com/ibis-project/ibis/commit/afa7c61dcd5041bcff6fcb30bc24475743af67b8
lock numpy to latest version
{"poetry.lock": "@@ -1370,7 +1370,7 @@ python-versions = \">=3.5\"\n \n [[package]]\n name = \"numpy\"\n-version = \"1.22.4\"\n+version = \"1.23.1\"\n description = \"NumPy is the fundamental package for array computing with Python.\"\n category = \"main\"\n optional = false\n@@ -3372,28 +3372,28 @@ nest-asyncio = [\n {file = \"nest_asyncio-1.5.5.tar.gz\", hash = \"sha256:e442291cd942698be619823a17a86a5759eabe1f8613084790de189fe9e16d65\"},\n ]\n numpy = [\n- {file = \"numpy-1.22.4-cp310-cp310-macosx_10_14_x86_64.whl\", hash = \"sha256:ba9ead61dfb5d971d77b6c131a9dbee62294a932bf6a356e48c75ae684e635b3\"},\n- {file = \"numpy-1.22.4-cp310-cp310-macosx_10_15_x86_64.whl\", hash = \"sha256:1ce7ab2053e36c0a71e7a13a7475bd3b1f54750b4b433adc96313e127b870887\"},\n- {file = \"numpy-1.22.4-cp310-cp310-macosx_11_0_arm64.whl\", hash = \"sha256:7228ad13744f63575b3a972d7ee4fd61815b2879998e70930d4ccf9ec721dce0\"},\n- {file = \"numpy-1.22.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\", hash = \"sha256:43a8ca7391b626b4c4fe20aefe79fec683279e31e7c79716863b4b25021e0e74\"},\n- {file = \"numpy-1.22.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:a911e317e8c826ea632205e63ed8507e0dc877dcdc49744584dfc363df9ca08c\"},\n- {file = \"numpy-1.22.4-cp310-cp310-win32.whl\", hash = \"sha256:9ce7df0abeabe7fbd8ccbf343dc0db72f68549856b863ae3dd580255d009648e\"},\n- {file = \"numpy-1.22.4-cp310-cp310-win_amd64.whl\", hash = \"sha256:3e1ffa4748168e1cc8d3cde93f006fe92b5421396221a02f2274aab6ac83b077\"},\n- {file = \"numpy-1.22.4-cp38-cp38-macosx_10_15_x86_64.whl\", hash = \"sha256:59d55e634968b8f77d3fd674a3cf0b96e85147cd6556ec64ade018f27e9479e1\"},\n- {file = \"numpy-1.22.4-cp38-cp38-macosx_11_0_arm64.whl\", hash = \"sha256:c1d937820db6e43bec43e8d016b9b3165dcb42892ea9f106c70fb13d430ffe72\"},\n- {file = \"numpy-1.22.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\", hash = \"sha256:d4c5d5eb2ec8da0b4f50c9a843393971f31f1d60be87e0fb0917a49133d257d6\"},\n- {file = \"numpy-1.22.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:64f56fc53a2d18b1924abd15745e30d82a5782b2cab3429aceecc6875bd5add0\"},\n- {file = \"numpy-1.22.4-cp38-cp38-win32.whl\", hash = \"sha256:fb7a980c81dd932381f8228a426df8aeb70d59bbcda2af075b627bbc50207cba\"},\n- {file = \"numpy-1.22.4-cp38-cp38-win_amd64.whl\", hash = \"sha256:e96d7f3096a36c8754207ab89d4b3282ba7b49ea140e4973591852c77d09eb76\"},\n- {file = \"numpy-1.22.4-cp39-cp39-macosx_10_14_x86_64.whl\", hash = \"sha256:4c6036521f11a731ce0648f10c18ae66d7143865f19f7299943c985cdc95afb5\"},\n- {file = \"numpy-1.22.4-cp39-cp39-macosx_10_15_x86_64.whl\", hash = \"sha256:b89bf9b94b3d624e7bb480344e91f68c1c6c75f026ed6755955117de00917a7c\"},\n- {file = \"numpy-1.22.4-cp39-cp39-macosx_11_0_arm64.whl\", hash = \"sha256:2d487e06ecbf1dc2f18e7efce82ded4f705f4bd0cd02677ffccfb39e5c284c7e\"},\n- {file = \"numpy-1.22.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\", hash = \"sha256:f3eb268dbd5cfaffd9448113539e44e2dd1c5ca9ce25576f7c04a5453edc26fa\"},\n- {file = \"numpy-1.22.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:37431a77ceb9307c28382c9773da9f306435135fae6b80b62a11c53cfedd8802\"},\n- {file = \"numpy-1.22.4-cp39-cp39-win32.whl\", hash = \"sha256:cc7f00008eb7d3f2489fca6f334ec19ca63e31371be28fd5dad955b16ec285bd\"},\n- {file = \"numpy-1.22.4-cp39-cp39-win_amd64.whl\", hash = \"sha256:f0725df166cf4785c0bc4cbfb320203182b1ecd30fee6e541c8752a92df6aa32\"},\n- {file = \"numpy-1.22.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:0791fbd1e43bf74b3502133207e378901272f3c156c4df4954cad833b1380207\"},\n- {file = \"numpy-1.22.4.zip\", hash = \"sha256:425b390e4619f58d8526b3dcf656dde069133ae5c240229821f01b5f44ea07af\"},\n+ {file = \"numpy-1.23.1-cp310-cp310-macosx_10_9_x86_64.whl\", hash = \"sha256:b15c3f1ed08df4980e02cc79ee058b788a3d0bef2fb3c9ca90bb8cbd5b8a3a04\"},\n+ {file = \"numpy-1.23.1-cp310-cp310-macosx_11_0_arm64.whl\", hash = \"sha256:9ce242162015b7e88092dccd0e854548c0926b75c7924a3495e02c6067aba1f5\"},\n+ {file = \"numpy-1.23.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\", hash = \"sha256:e0d7447679ae9a7124385ccf0ea990bb85bb869cef217e2ea6c844b6a6855073\"},\n+ {file = \"numpy-1.23.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:3119daed207e9410eaf57dcf9591fdc68045f60483d94956bee0bfdcba790953\"},\n+ {file = \"numpy-1.23.1-cp310-cp310-win32.whl\", hash = \"sha256:3ab67966c8d45d55a2bdf40701536af6443763907086c0a6d1232688e27e5447\"},\n+ {file = \"numpy-1.23.1-cp310-cp310-win_amd64.whl\", hash = \"sha256:1865fdf51446839ca3fffaab172461f2b781163f6f395f1aed256b1ddc253622\"},\n+ {file = \"numpy-1.23.1-cp38-cp38-macosx_10_9_x86_64.whl\", hash = \"sha256:aeba539285dcf0a1ba755945865ec61240ede5432df41d6e29fab305f4384db2\"},\n+ {file = \"numpy-1.23.1-cp38-cp38-macosx_11_0_arm64.whl\", hash = \"sha256:7e8229f3687cdadba2c4faef39204feb51ef7c1a9b669247d49a24f3e2e1617c\"},\n+ {file = \"numpy-1.23.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\", hash = \"sha256:68b69f52e6545af010b76516f5daaef6173e73353e3295c5cb9f96c35d755641\"},\n+ {file = \"numpy-1.23.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:1408c3527a74a0209c781ac82bde2182b0f0bf54dea6e6a363fe0cc4488a7ce7\"},\n+ {file = \"numpy-1.23.1-cp38-cp38-win32.whl\", hash = \"sha256:47f10ab202fe4d8495ff484b5561c65dd59177949ca07975663f4494f7269e3e\"},\n+ {file = \"numpy-1.23.1-cp38-cp38-win_amd64.whl\", hash = \"sha256:37e5ebebb0eb54c5b4a9b04e6f3018e16b8ef257d26c8945925ba8105008e645\"},\n+ {file = \"numpy-1.23.1-cp39-cp39-macosx_10_9_x86_64.whl\", hash = \"sha256:173f28921b15d341afadf6c3898a34f20a0569e4ad5435297ba262ee8941e77b\"},\n+ {file = \"numpy-1.23.1-cp39-cp39-macosx_11_0_arm64.whl\", hash = \"sha256:876f60de09734fbcb4e27a97c9a286b51284df1326b1ac5f1bf0ad3678236b22\"},\n+ {file = \"numpy-1.23.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\", hash = \"sha256:35590b9c33c0f1c9732b3231bb6a72d1e4f77872390c47d50a615686ae7ed3fd\"},\n+ {file = \"numpy-1.23.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:a35c4e64dfca659fe4d0f1421fc0f05b8ed1ca8c46fb73d9e5a7f175f85696bb\"},\n+ {file = \"numpy-1.23.1-cp39-cp39-win32.whl\", hash = \"sha256:c2f91f88230042a130ceb1b496932aa717dcbd665350beb821534c5c7e15881c\"},\n+ {file = \"numpy-1.23.1-cp39-cp39-win_amd64.whl\", hash = \"sha256:37ece2bd095e9781a7156852e43d18044fd0d742934833335599c583618181b9\"},\n+ {file = \"numpy-1.23.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl\", hash = \"sha256:8002574a6b46ac3b5739a003b5233376aeac5163e5dcd43dd7ad062f3e186129\"},\n+ {file = \"numpy-1.23.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\", hash = \"sha256:5d732d17b8a9061540a10fda5bfeabca5785700ab5469a5e9b93aca5e2d3a5fb\"},\n+ {file = \"numpy-1.23.1-pp38-pypy38_pp73-win_amd64.whl\", hash = \"sha256:55df0f7483b822855af67e38fb3a526e787adf189383b4934305565d71c4b148\"},\n+ {file = \"numpy-1.23.1.tar.gz\", hash = \"sha256:d748ef349bfef2e1194b59da37ed5a29c19ea8d7e6342019921ba2ba4fd8b624\"},\n ]\n packaging = [\n {file = \"packaging-21.3-py3-none-any.whl\", hash = \"sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522\"},\n", "requirements.txt": "@@ -102,7 +102,7 @@ nbclient==0.6.6; python_full_version >= \"3.7.1\" and python_version < \"4\" and pyt\n nbconvert==6.5.0; python_full_version >= \"3.7.1\" and python_version < \"4\" and python_version >= \"3.7\"\n nbformat==5.4.0; python_version >= \"3.7\" and python_version < \"4.0\" and python_full_version >= \"3.7.1\"\n nest-asyncio==1.5.5; python_full_version >= \"3.7.1\" and python_version < \"4\" and python_version >= \"3.7\"\n-numpy==1.22.4; python_version >= \"3.8\"\n+numpy==1.23.1; python_version >= \"3.8\"\n packaging==21.3; python_version >= \"3.6\"\n pandas==1.4.3; python_version >= \"3.8\"\n pandocfilters==1.5.0; python_full_version >= \"3.7.1\" and python_version < \"4\" and python_version >= \"3.7\"\n"}
feat: Add `Time` type. (#427) It was originally from the `git-actor` crate.
cfb6a726ddb763f7c22688f8ef309e719c2dfce4
feat
https://github.com/Byron/gitoxide/commit/cfb6a726ddb763f7c22688f8ef309e719c2dfce4
Add `Time` type. (#427) It was originally from the `git-actor` crate.
{"Cargo.lock": "@@ -970,6 +970,13 @@ dependencies = [\n [[package]]\n name = \"git-date\"\n version = \"0.0.0\"\n+dependencies = [\n+ \"bstr\",\n+ \"document-features\",\n+ \"git-testtools\",\n+ \"itoa 1.0.2\",\n+ \"serde\",\n+]\n \n [[package]]\n name = \"git-diff\"\n", "Makefile": "@@ -97,6 +97,7 @@ check: ## Build all code in suitable configurations\n \tcd git-mailmap && cargo check --features serde1\n \tcd git-worktree && cargo check --features serde1\n \tcd git-actor && cargo check --features serde1\n+\tcd git-date && cargo check --features serde1\n \tcd git-pack && cargo check --features serde1 \\\n \t\t\t && cargo check --features pack-cache-lru-static \\\n \t\t\t && cargo check --features pack-cache-lru-dynamic \\\n", "README.md": "@@ -125,12 +125,12 @@ Crates that seem feature complete and need to see some more use before they can\n * [git-index](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-index)\n * [git-worktree](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-worktree)\n * [git-bitmap](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-bitmap)\n- * [git-revision](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-revision)\n * [git-attributes](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-attributes)\n+ * [git-revision](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-revision)\n+ * [git-date](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-date)\n * **idea**\n * [git-note](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-note)\n * [git-filter](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-filter)\n- * [git-date](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-date)\n * [git-lfs](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-lfs)\n * [git-rebase](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-rebase)\n * [git-sequencer](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-sequencer)\n", "crate-status.md": "@@ -252,6 +252,7 @@ A mechanism to associate metadata with any object, and keep revisions of it usin\n \n ### git-date\n * [ ] parse git dates\n+* [ ] serialize `Time`\n \n ### git-credentials\n * [x] launch git credentials helpers with a given action\n", "Cargo.toml": "@@ -12,4 +12,20 @@ doctest = false\n \n # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html\n \n+[features]\n+## Data structures implement `serde::Serialize` and `serde::Deserialize`.\n+serde1 = [\"serde\"]\n+\n [dependencies]\n+serde = { version = \"1.0.114\", optional = true, default-features = false, features = [\"derive\"]}\n+itoa = \"1.0.1\"\n+\n+document-features = { version = \"0.2.0\", optional = true }\n+\n+[dev-dependencies]\n+git-testtools = { path = \"../tests/tools\"}\n+bstr = { version = \"0.2.13\", default-features = false, features = [\"std\", \"unicode\"]}\n+\n+[package.metadata.docs.rs]\n+features = [\"document-features\"]\n+all-features = true\n", "lib.rs": "@@ -1 +1,25 @@\n-#![forbid(unsafe_code, rust_2018_idioms)]\n+//! Date and time parsing similar to what git can do.\n+//!\n+//! Note that this is not a general purpose time library.\n+//! ## Feature Flags\n+#![cfg_attr(\n+ feature = \"document-features\",\n+ cfg_attr(doc, doc = ::document_features::document_features!())\n+)]\n+#![forbid(unsafe_code)]\n+#![deny(missing_docs, rust_2018_idioms)]\n+\n+///\n+pub mod time;\n+\n+/// A timestamp with timezone.\n+#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]\n+#[cfg_attr(feature = \"serde1\", derive(serde::Serialize, serde::Deserialize))]\n+pub struct Time {\n+ /// time in seconds since epoch.\n+ pub seconds_since_unix_epoch: u32,\n+ /// time offset in seconds, may be negative to match the `sign` field.\n+ pub offset_in_seconds: i32,\n+ /// the sign of `offset`, used to encode `-0000` which would otherwise loose sign information.\n+ pub sign: time::Sign,\n+}\n", "time.rs": "@@ -0,0 +1,103 @@\n+use std::io;\n+\n+use crate::Time;\n+\n+/// Indicates if a number is positive or negative for use in [`Time`].\n+#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]\n+#[cfg_attr(feature = \"serde1\", derive(serde::Serialize, serde::Deserialize))]\n+#[allow(missing_docs)]\n+pub enum Sign {\n+ Plus,\n+ Minus,\n+}\n+\n+impl From<i32> for Sign {\n+ fn from(v: i32) -> Self {\n+ if v < 0 {\n+ Sign::Minus\n+ } else {\n+ Sign::Plus\n+ }\n+ }\n+}\n+\n+impl Default for Time {\n+ fn default() -> Self {\n+ Time {\n+ seconds_since_unix_epoch: 0,\n+ offset_in_seconds: 0,\n+ sign: Sign::Plus,\n+ }\n+ }\n+}\n+\n+impl Time {\n+ /// Create a new instance from seconds and offset.\n+ pub fn new(seconds_since_unix_epoch: u32, offset_in_seconds: i32) -> Self {\n+ Time {\n+ seconds_since_unix_epoch,\n+ offset_in_seconds,\n+ sign: offset_in_seconds.into(),\n+ }\n+ }\n+\n+ /// Return the passed seconds since epoch since this signature was made.\n+ pub fn seconds(&self) -> u32 {\n+ self.seconds_since_unix_epoch\n+ }\n+\n+ /// Serialize this instance to `out` in a format suitable for use in header fields of serialized git commits or tags.\n+ pub fn write_to(&self, mut out: impl io::Write) -> io::Result<()> {\n+ let mut itoa = itoa::Buffer::new();\n+ out.write_all(itoa.format(self.seconds_since_unix_epoch).as_bytes())?;\n+ out.write_all(b\" \")?;\n+ out.write_all(match self.sign {\n+ Sign::Plus => b\"+\",\n+ Sign::Minus => b\"-\",\n+ })?;\n+\n+ const ZERO: &[u8; 1] = b\"0\";\n+\n+ const SECONDS_PER_HOUR: i32 = 60 * 60;\n+ let offset = self.offset_in_seconds.abs();\n+ let hours = offset / SECONDS_PER_HOUR;\n+ assert!(hours < 25, \"offset is more than a day: {}\", hours);\n+ let minutes = (offset - (hours * SECONDS_PER_HOUR)) / 60;\n+\n+ if hours < 10 {\n+ out.write_all(ZERO)?;\n+ }\n+ out.write_all(itoa.format(hours).as_bytes())?;\n+\n+ if minutes < 10 {\n+ out.write_all(ZERO)?;\n+ }\n+ out.write_all(itoa.format(minutes).as_bytes()).map(|_| ())\n+ }\n+ /// Computes the number of bytes necessary to render this time\n+ pub fn size(&self) -> usize {\n+ // TODO: this is not year 2038 safe\u2026but we also can't parse larger numbers (or represent them) anyway. It's a trap nonetheless\n+ // that can be fixed by increasing the size to usize.\n+ (if self.seconds_since_unix_epoch >= 1_000_000_000 {\n+ 10\n+ } else if self.seconds_since_unix_epoch >= 100_000_000 {\n+ 9\n+ } else if self.seconds_since_unix_epoch >= 10_000_000 {\n+ 8\n+ } else if self.seconds_since_unix_epoch >= 1_000_000 {\n+ 7\n+ } else if self.seconds_since_unix_epoch >= 100_000 {\n+ 6\n+ } else if self.seconds_since_unix_epoch >= 10_000 {\n+ 5\n+ } else if self.seconds_since_unix_epoch >= 1_000 {\n+ 4\n+ } else if self.seconds_since_unix_epoch >= 100 {\n+ 3\n+ } else if self.seconds_since_unix_epoch >= 10 {\n+ 2\n+ } else {\n+ 1\n+ }) + 2 /*space + sign*/ + 2 /*hours*/ + 2 /*minutes*/\n+ }\n+}\n", "date.rs": "@@ -0,0 +1,3 @@\n+pub use git_testtools::hex_to_id;\n+\n+mod time;\n", "mod.rs": "@@ -0,0 +1,37 @@\n+use bstr::ByteSlice;\n+use git_date::{time::Sign, Time};\n+\n+#[test]\n+fn write_to() -> Result<(), Box<dyn std::error::Error>> {\n+ for (time, expected) in &[\n+ (\n+ Time {\n+ seconds_since_unix_epoch: 500,\n+ offset_in_seconds: 9000,\n+ sign: Sign::Plus,\n+ },\n+ \"500 +0230\",\n+ ),\n+ (\n+ Time {\n+ seconds_since_unix_epoch: 189009009,\n+ offset_in_seconds: 36000,\n+ sign: Sign::Minus,\n+ },\n+ \"189009009 -1000\",\n+ ),\n+ (\n+ Time {\n+ seconds_since_unix_epoch: 0,\n+ offset_in_seconds: 0,\n+ sign: Sign::Minus,\n+ },\n+ \"0 -0000\",\n+ ),\n+ ] {\n+ let mut output = Vec::new();\n+ time.write_to(&mut output)?;\n+ assert_eq!(output.as_bstr(), expected);\n+ }\n+ Ok(())\n+}\n"}
build(docker): simplify risingwave docker setup (#8126) Remove risingwave-specific minio service in favor of existing minio service.
f2ff173c1467c5921edfb0ac9790ff8b0340bfc9
build
https://github.com/ibis-project/ibis/commit/f2ff173c1467c5921edfb0ac9790ff8b0340bfc9
simplify risingwave docker setup (#8126) Remove risingwave-specific minio service in favor of existing minio service.
{"compose.yaml": "@@ -104,9 +104,10 @@ services:\n retries: 20\n test:\n - CMD-SHELL\n- - mc ready data && mc mb --ignore-existing data/trino\n+ - mc ready data && mc mb --ignore-existing data/trino data/risingwave\n networks:\n - trino\n+ - risingwave\n volumes:\n - $PWD/docker/minio/config.json:/.mc/config.json:ro\n \n@@ -537,74 +538,26 @@ services:\n networks:\n - impala\n \n- risingwave-minio:\n- image: \"quay.io/minio/minio:latest\"\n- command:\n- - server\n- - \"--address\"\n- - \"0.0.0.0:9301\"\n- - \"--console-address\"\n- - \"0.0.0.0:9400\"\n- - /data\n- expose:\n- - \"9301\"\n- - \"9400\"\n- ports:\n- - \"9301:9301\"\n- - \"9400:9400\"\n- depends_on: []\n- volumes:\n- - \"risingwave-minio:/data\"\n- entrypoint: /bin/sh -c \"set -e; mkdir -p \\\"/data/hummock001\\\"; /usr/bin/docker-entrypoint.sh \\\"$$0\\\" \\\"$$@\\\" \"\n- environment:\n- MINIO_CI_CD: \"1\"\n- MINIO_ROOT_PASSWORD: hummockadmin\n- MINIO_ROOT_USER: hummockadmin\n- MINIO_DOMAIN: \"risingwave-minio\"\n- container_name: risingwave-minio\n- healthcheck:\n- test:\n- - CMD-SHELL\n- - bash -c 'printf \\\"GET / HTTP/1.1\\n\\n\\\" > /dev/tcp/127.0.0.1/9301; exit $$?;'\n- interval: 5s\n- timeout: 5s\n- retries: 20\n- restart: always\n- networks:\n- - risingwave\n-\n risingwave:\n image: ghcr.io/risingwavelabs/risingwave:nightly-20240122\n command: \"standalone --meta-opts=\\\" \\\n --advertise-addr 0.0.0.0:5690 \\\n --backend mem \\\n- --state-store hummock+minio://hummockadmin:hummockadmin@risingwave-minio:9301/hummock001 \\\n- --data-directory hummock_001 \\\n- --config-path /risingwave.toml\\\" \\\n- --compute-opts=\\\" \\\n- --config-path /risingwave.toml \\\n- --advertise-addr 0.0.0.0:5688 \\\n- --role both \\\" \\\n- --frontend-opts=\\\" \\\n- --config-path /risingwave.toml \\\n- --listen-addr 0.0.0.0:4566 \\\n- --advertise-addr 0.0.0.0:4566 \\\" \\\n- --compactor-opts=\\\" \\\n- --advertise-addr 0.0.0.0:6660 \\\"\"\n- expose:\n- - \"4566\"\n+ --state-store hummock+minio://accesskey:secretkey@minio:9000/risingwave \\\n+ --data-directory hummock_001\\\" \\\n+ --compute-opts=\\\"--advertise-addr 0.0.0.0:5688 --role both\\\" \\\n+ --frontend-opts=\\\"--listen-addr 0.0.0.0:4566 --advertise-addr 0.0.0.0:4566\\\" \\\n+ --compactor-opts=\\\"--advertise-addr 0.0.0.0:6660\\\"\"\n ports:\n- - \"4566:4566\"\n+ - 4566:4566\n depends_on:\n- - risingwave-minio\n+ minio:\n+ condition: service_healthy\n volumes:\n- - \"./docker/risingwave/risingwave.toml:/risingwave.toml\"\n - risingwave:/data\n environment:\n RUST_BACKTRACE: \"1\"\n- # If ENABLE_TELEMETRY is not set, telemetry will start by default\n- ENABLE_TELEMETRY: ${ENABLE_TELEMETRY:-true}\n- container_name: risingwave\n+ ENABLE_TELEMETRY: \"false\"\n healthcheck:\n test:\n - CMD-SHELL\n@@ -612,10 +565,9 @@ services:\n - bash -c 'printf \\\"GET / HTTP/1.1\\n\\n\\\" > /dev/tcp/127.0.0.1/5688; exit $$?;'\n - bash -c 'printf \\\"GET / HTTP/1.1\\n\\n\\\" > /dev/tcp/127.0.0.1/4566; exit $$?;'\n - bash -c 'printf \\\"GET / HTTP/1.1\\n\\n\\\" > /dev/tcp/127.0.0.1/5690; exit $$?;'\n- interval: 5s\n- timeout: 5s\n+ interval: 1s\n retries: 20\n- restart: always\n+ restart: on-failure\n networks:\n - risingwave\n \n@@ -646,5 +598,4 @@ volumes:\n postgres:\n exasol:\n impala:\n- risingwave-minio:\n risingwave:\n", "risingwave.toml": "@@ -1,2 +0,0 @@\n-# RisingWave config file to be mounted into the Docker containers.\n-# See https://github.com/risingwavelabs/risingwave/blob/main/src/config/example.toml for example\n", "test_json.py": "@@ -41,8 +41,7 @@ pytestmark = [\n reason=\"https://github.com/ibis-project/ibis/pull/6920#discussion_r1373212503\",\n )\n @pytest.mark.broken(\n- [\"risingwave\"],\n- reason=\"TODO(Kexiang): order mismatch in array\",\n+ [\"risingwave\"], reason=\"TODO(Kexiang): order mismatch in array\", strict=False\n )\n def test_json_getitem(json_t, expr_fn, expected):\n expr = expr_fn(json_t)\n"}
fix(setup.py): set the correct version number for 2.1.0
f3d267b96b9f14d3616c17b8f7bdeb8d0a6fc2cf
fix
https://github.com/ibis-project/ibis/commit/f3d267b96b9f14d3616c17b8f7bdeb8d0a6fc2cf
set the correct version number for 2.1.0
{"setup.py": "@@ -129,7 +129,7 @@ entry_points = {\n \n setup_kwargs = {\n \"name\": \"ibis-framework\",\n- \"version\": \"2.0.0\",\n+ \"version\": \"2.1.0\",\n \"description\": \"Productivity-centric Python Big Data Framework\",\n \"long_description\": \"# Ibis: Python data analysis framework for Hadoop and SQL engines\\n\\n|Service|Status|\\n| -------------: | :---- |\\n| Documentation | [![Documentation Status](https://img.shields.io/badge/docs-docs.ibis--project.org-blue.svg)](http://ibis-project.org) |\\n| Conda packages | [![Anaconda-Server Badge](https://anaconda.org/conda-forge/ibis-framework/badges/version.svg)](https://anaconda.org/conda-forge/ibis-framework) |\\n| PyPI | [![PyPI](https://img.shields.io/pypi/v/ibis-framework.svg)](https://pypi.org/project/ibis-framework) |\\n| Ibis CI | [![Build status](https://github.com/ibis-project/ibis/actions/workflows/ibis-main.yml/badge.svg)](https://github.com/ibis-project/ibis/actions/workflows/ibis-main.yml?query=branch%3Amaster) |\\n| Backend CI | [![Build status](https://github.com/ibis-project/ibis/actions/workflows/ibis-backends.yml/badge.svg)](https://github.com/ibis-project/ibis/actions/workflows/ibis-backends.yml?query=branch%3Amaster) |\\n| Coverage | [![Codecov branch](https://img.shields.io/codecov/c/github/ibis-project/ibis/master.svg)](https://codecov.io/gh/ibis-project/ibis) |\\n\\n\\nIbis is a toolbox to bridge the gap between local Python environments, remote\\nstorage, execution systems like Hadoop components (HDFS, Impala, Hive, Spark)\\nand SQL databases. Its goal is to simplify analytical workflows and make you\\nmore productive.\\n\\nInstall Ibis from PyPI with:\\n\\n```sh\\npip install ibis-framework\\n```\\n\\nor from conda-forge with\\n\\n```sh\\nconda install ibis-framework -c conda-forge\\n```\\n\\nIbis currently provides tools for interacting with the following systems:\\n\\n- [Apache Impala](https://impala.apache.org/)\\n- [Apache Kudu](https://kudu.apache.org/)\\n- [Hadoop Distributed File System (HDFS)](https://hadoop.apache.org/)\\n- [PostgreSQL](https://www.postgresql.org/)\\n- [MySQL](https://www.mysql.com/)\\n- [SQLite](https://www.sqlite.org/)\\n- [Pandas](https://pandas.pydata.org/) [DataFrames](http://pandas.pydata.org/pandas-docs/stable/dsintro.html#dataframe)\\n- [Clickhouse](https://clickhouse.yandex)\\n- [BigQuery](https://cloud.google.com/bigquery)\\n- [OmniSciDB](https://www.omnisci.com)\\n- [PySpark](https://spark.apache.org)\\n- [Dask](https://dask.org/) (Experimental)\\n\\nLearn more about using the library at http://ibis-project.org.\\n\",\n \"author\": \"Ibis Contributors\",\n"}
refactor(clickhouse): clean up parsing rules
673177267ee23dc344da62235fb3252eed8b4650
refactor
https://github.com/rohankumardubey/ibis/commit/673177267ee23dc344da62235fb3252eed8b4650
clean up parsing rules
{"datatypes.py": "@@ -13,6 +13,7 @@ from ibis.common.parsing import (\n LPAREN,\n NUMBER,\n PRECISION,\n+ RAW_NUMBER,\n RAW_STRING,\n RPAREN,\n SCALE,\n@@ -26,8 +27,6 @@ def _bool_type():\n \n \n def parse(text: str) -> dt.DataType:\n- parened_string = LPAREN.then(RAW_STRING).skip(RPAREN)\n-\n datetime64_args = LPAREN.then(\n parsy.seq(\n scale=parsy.decimal_digit.map(int).optional(),\n@@ -42,9 +41,9 @@ def parse(text: str) -> dt.DataType:\n )\n \n datetime = spaceless_string(\"datetime\").then(\n- parsy.seq(timezone=parened_string.optional()).combine_dict(\n- partial(dt.Timestamp, nullable=False)\n- )\n+ parsy.seq(\n+ timezone=LPAREN.then(RAW_STRING).skip(RPAREN).optional()\n+ ).combine_dict(partial(dt.Timestamp, nullable=False))\n )\n \n primitive = (\n@@ -84,116 +83,97 @@ def parse(text: str) -> dt.DataType:\n ).result(dt.String(nullable=False))\n )\n \n- @parsy.generate\n- def nullable():\n- yield spaceless_string(\"nullable\")\n- yield LPAREN\n- parsed_ty = yield ty\n- yield RPAREN\n- return parsed_ty(nullable=True)\n-\n- @parsy.generate\n- def fixed_string():\n- yield spaceless_string(\"fixedstring\")\n- yield LPAREN\n- yield NUMBER\n- yield RPAREN\n- return dt.String(nullable=False)\n-\n- @parsy.generate\n- def decimal():\n- yield spaceless_string(\"decimal\", \"numeric\")\n- precision, scale = yield LPAREN.then(\n- parsy.seq(PRECISION.skip(COMMA), SCALE)\n- ).skip(RPAREN)\n- return dt.Decimal(precision, scale, nullable=False)\n-\n- @parsy.generate\n- def paren_type():\n- yield LPAREN\n- value_type = yield ty\n- yield RPAREN\n- return value_type\n-\n- @parsy.generate\n- def array():\n- yield spaceless_string(\"array\")\n- value_type = yield paren_type\n- return dt.Array(value_type, nullable=False)\n-\n- @parsy.generate\n- def map():\n- yield spaceless_string(\"map\")\n- yield LPAREN\n- key_type = yield ty\n- yield COMMA\n- value_type = yield ty\n- yield RPAREN\n- return dt.Map(key_type, value_type, nullable=False)\n+ ty = parsy.forward_declaration()\n \n- at_least_one_space = parsy.regex(r\"\\s+\")\n+ nullable = (\n+ spaceless_string(\"nullable\")\n+ .then(LPAREN)\n+ .then(ty.map(lambda ty: ty.copy(nullable=True)))\n+ .skip(RPAREN)\n+ )\n+\n+ fixed_string = (\n+ spaceless_string(\"fixedstring\")\n+ .then(LPAREN)\n+ .then(NUMBER)\n+ .then(RPAREN)\n+ .result(dt.String(nullable=False))\n+ )\n \n- @parsy.generate\n- def nested():\n- yield spaceless_string(\"nested\")\n- yield LPAREN\n+ decimal = (\n+ spaceless_string(\"decimal\", \"numeric\")\n+ .then(LPAREN)\n+ .then(\n+ parsy.seq(precision=PRECISION.skip(COMMA), scale=SCALE).combine_dict(\n+ partial(dt.Decimal(nullable=False))\n+ )\n+ )\n+ .skip(RPAREN)\n+ )\n \n- field_names_types = yield (\n+ array = spaceless_string(\"array\").then(\n+ LPAREN.then(ty.map(partial(dt.Array, nullable=False))).skip(RPAREN)\n+ )\n+\n+ map = (\n+ spaceless_string(\"map\")\n+ .then(LPAREN)\n+ .then(parsy.seq(ty, COMMA.then(ty)).combine(partial(dt.Map, nullable=False)))\n+ .skip(RPAREN)\n+ )\n+\n+ at_least_one_space = parsy.regex(r\"\\s+\")\n+\n+ nested = (\n+ spaceless_string(\"nested\")\n+ .then(LPAREN)\n+ .then(\n parsy.seq(SPACES.then(FIELD.skip(at_least_one_space)), ty)\n .combine(lambda field, ty: (field, dt.Array(ty, nullable=False)))\n .sep_by(COMMA)\n+ .map(partial(dt.Struct.from_tuples, nullable=False))\n )\n- yield RPAREN\n- return dt.Struct.from_tuples(field_names_types, nullable=False)\n-\n- @parsy.generate\n- def struct():\n- yield spaceless_string(\"tuple\")\n- yield LPAREN\n- field_names_types = yield (\n+ .skip(RPAREN)\n+ )\n+\n+ struct = (\n+ spaceless_string(\"tuple\")\n+ .then(LPAREN)\n+ .then(\n parsy.seq(\n SPACES.then(FIELD.skip(at_least_one_space).optional()),\n ty,\n )\n- .combine(lambda field, ty: (field, ty))\n .sep_by(COMMA)\n+ .map(\n+ lambda field_names_types: dt.Struct.from_tuples(\n+ [\n+ (field_name if field_name is not None else f\"f{i:d}\", typ)\n+ for i, (field_name, typ) in enumerate(field_names_types)\n+ ],\n+ nullable=False,\n+ )\n+ )\n )\n- yield RPAREN\n- return dt.Struct.from_tuples(\n- [\n- (field_name if field_name is not None else f\"f{i:d}\", typ)\n- for i, (field_name, typ) in enumerate(field_names_types)\n- ],\n- nullable=False,\n- )\n+ .skip(RPAREN)\n+ )\n+\n+ enum_value = SPACES.then(RAW_STRING).skip(spaceless_string(\"=\")).then(RAW_NUMBER)\n+\n+ lowcardinality = (\n+ spaceless_string(\"lowcardinality\").then(LPAREN).then(ty).skip(RPAREN)\n+ )\n+\n+ enum = (\n+ spaceless_string('enum')\n+ .then(RAW_NUMBER)\n+ .then(LPAREN)\n+ .then(enum_value.sep_by(COMMA))\n+ .skip(RPAREN)\n+ .result(dt.String(nullable=False))\n+ )\n \n- @parsy.generate\n- def enum_value():\n- yield SPACES\n- key = yield RAW_STRING\n- yield spaceless_string('=')\n- value = yield parsy.digit.at_least(1).concat()\n- return (key, int(value))\n-\n- @parsy.generate\n- def lowcardinality():\n- yield spaceless_string('LowCardinality')\n- yield LPAREN\n- r = yield ty\n- yield RPAREN\n- return r\n-\n- @parsy.generate\n- def enum():\n- yield spaceless_string('enum')\n- enumsz = yield parsy.digit.at_least(1).concat()\n- enumsz = int(enumsz)\n- yield LPAREN\n- yield enum_value.sep_by(COMMA).map(dict) # ignore values\n- yield RPAREN\n- return dt.String(nullable=False)\n-\n- ty = (\n+ ty.become(\n nullable\n | nested\n | primitive\n@@ -204,9 +184,8 @@ def parse(text: str) -> dt.DataType:\n | struct\n | enum\n | lowcardinality\n- | spaceless_string(\"IPv4\", \"IPv6\").result(dt.inet(nullable=False))\n- | spaceless_string(\"Object('json')\").result(dt.json(nullable=False))\n- | spaceless_string(\"JSON\").result(dt.json(nullable=False))\n+ | spaceless_string(\"IPv4\", \"IPv6\").result(dt.INET(nullable=False))\n+ | spaceless_string(\"Object('json')\", \"JSON\").result(dt.JSON(nullable=False))\n )\n return ty.parse(text)\n \n"}
fix: improve error message when no default route provided
04c3b6ac2fd151379d57e95bde085e2a098d1b76
fix
https://github.com/Hardeepex/crawlee/commit/04c3b6ac2fd151379d57e95bde085e2a098d1b76
improve error message when no default route provided
{"router.ts": "@@ -88,7 +88,8 @@ export class Router<Context extends CrawlingContext> {\n }\n \n if (!label) {\n- throw new MissingRouteError(`No default route set up!`);\n+ // eslint-disable-next-line max-len\n+ throw new MissingRouteError(`No default route set up. Please specify 'requestHandler' option or provide default route via 'crawler.router.addDefaultRoute()'.`);\n }\n \n throw new MissingRouteError(`Route not found for label '${String(label)}' and no default route set up!`);\n", "cheerio_crawler.test.ts": "@@ -268,6 +268,19 @@ describe('CheerioCrawler', () => {\n });\n });\n \n+ test('should throw when no requestHandler nor default route provided', async () => {\n+ const requestList = await getRequestListForMirror(port);\n+\n+ const cheerioCrawler = new CheerioCrawler({\n+ requestList,\n+ minConcurrency: 2,\n+ maxConcurrency: 2,\n+ });\n+\n+ // eslint-disable-next-line max-len\n+ await expect(cheerioCrawler.run()).rejects.toThrow(`No default route set up. Please specify 'requestHandler' option or provide default route via 'crawler.router.addDefaultRoute()'.`);\n+ });\n+\n test('should ignore ssl by default', async () => {\n const sources = [\n { url: 'http://example.com/?q=1' },\n"}
chore: fix phrasing of clickhouse intro
897129cfa32d32f09d41014506cf98b593069af3
chore
https://github.com/rohankumardubey/ibis/commit/897129cfa32d32f09d41014506cf98b593069af3
fix phrasing of clickhouse intro
{"clickhouse.qmd": "@@ -6,7 +6,7 @@ title: ClickHouse\n [ClickHouse](https://clickhouse.com/) as a backend.\n \n In this example we'll demonstrate using Ibis to connect to a ClickHouse server,\n-and executing a few queries.\n+and to execute a few queries.\n \n ```{python}\n from ibis.interactive import *\n"}
chore: move infer impl for Mapping to datatypes module
3c51ba1cabe4268dc1637f9eb373c82966e58346
chore
https://github.com/ibis-project/ibis/commit/3c51ba1cabe4268dc1637f9eb373c82966e58346
move infer impl for Mapping to datatypes module
{"client.py": "@@ -7,7 +7,6 @@ import pandas as pd\n import toolz\n from pandas.api.types import CategoricalDtype, DatetimeTZDtype\n \n-import ibis.common.exceptions as com\n import ibis.expr.datatypes as dt\n import ibis.expr.operations as ops\n import ibis.expr.schema as sch\n@@ -142,16 +141,9 @@ def _infer_pandas_series_contents(s: pd.Series) -> dt.DataType:\n if inferred_dtype == 'mixed':\n # We need to inspect an element to determine the Ibis dtype\n value = s.iloc[0]\n- if isinstance(value, (np.ndarray, pd.Series, Sequence)):\n+ if isinstance(value, (np.ndarray, pd.Series, Sequence, Mapping)):\n # Defer to individual `infer` functions for these\n return dt.infer(value)\n- elif isinstance(value, Mapping):\n- try:\n- return dt.infer(value)\n- except com.IbisTypeError:\n- return dt.Struct.from_tuples(\n- (k, dt.infer(v)) for k, v in value.items()\n- )\n else:\n return dt.dtype('binary')\n else:\n", "core.py": "@@ -23,6 +23,7 @@ from typing import (\n import numpy as np\n import pandas as pd\n import parsy as p\n+import toolz\n from multipledispatch import Dispatcher\n from public import public\n \n@@ -1267,10 +1268,15 @@ def infer_map(value: Mapping[typing.Any, typing.Any]) -> Map:\n \"\"\"Infer the [`Map`][ibis.expr.datatypes.Map] type of `value`.\"\"\"\n if not value:\n return Map(null, null)\n- return Map(\n- highest_precedence(map(infer, value.keys())),\n- highest_precedence(map(infer, value.values())),\n- )\n+ try:\n+ return Map(\n+ highest_precedence(map(infer, value.keys())),\n+ highest_precedence(map(infer, value.values())),\n+ )\n+ except IbisTypeError:\n+ return Struct.from_dict(\n+ toolz.valmap(infer, value, factory=type(value))\n+ )\n \n \n @infer.register((list, tuple))\n"}
refactor: make "transition.key" always exist This lets us avoid ternary operators more
043b93656414c3cc8423bb2a4b233e1fd29a8852
refactor
https://github.com/pmndrs/react-spring/commit/043b93656414c3cc8423bb2a4b233e1fd29a8852
make "transition.key" always exist This lets us avoid ternary operators more
{"useTransition.tsx": "@@ -26,8 +26,8 @@ export function useTransition<T>(\n const items = toArray(data)\n const transitions: Transition[] = []\n \n- // Explicit keys are used to associate transitions with immutable items.\n- const keys = is.und(key) ? key : is.fun(key) ? items.map(key) : toArray(key)\n+ // Keys help with reusing transitions between renders.\n+ const keys = is.und(key) ? items : is.fun(key) ? items.map(key) : toArray(key)\n \n // The \"onRest\" callbacks need a ref to the latest transitions.\n const usedTransitions = useRef<Transition[] | null>(null)\n@@ -46,7 +46,7 @@ export function useTransition<T>(\n if (prevTransitions && !reset)\n each(prevTransitions, t => {\n if (is.und(t.expiresBy)) {\n- prevKeys.push(keys ? t.key : t.item)\n+ prevKeys.push(t.key)\n transitions.push(t)\n } else {\n clearTimeout(t.expirationId)\n@@ -55,8 +55,8 @@ export function useTransition<T>(\n \n // Append new transitions for new items.\n each(items, (item, i) => {\n- const key = keys && keys[i]\n- if (prevKeys.indexOf(keys ? key : item) < 0) {\n+ const key = keys[i]\n+ if (prevKeys.indexOf(key) < 0) {\n const spring = new Controller()\n transitions.push({ id: spring.id, key, item, phase: MOUNT, spring })\n }\n@@ -88,7 +88,7 @@ export function useTransition<T>(\n from = props.from\n }\n } else {\n- const isDeleted = (keys || items).indexOf(keys ? t.key : t.item) < 0\n+ const isDeleted = keys.indexOf(t.key) < 0\n if (t.phase < LEAVE) {\n if (isDeleted) {\n to = props.leave\n@@ -192,7 +192,7 @@ interface Change {\n \n interface Transition<T = any> {\n id: number\n- key?: keyof any\n+ key: any\n item: T\n phase: Phase\n spring: Controller\n"}
fix(duckdb): free memtables based on operation lifetime (#10042)
a121ab35ece43d8cf2724dca86f1bbbbd8e047a5
fix
https://github.com/ibis-project/ibis/commit/a121ab35ece43d8cf2724dca86f1bbbbd8e047a5
free memtables based on operation lifetime (#10042)
{"__init__.py": "@@ -7,6 +7,7 @@ import contextlib\n import os\n import urllib\n import warnings\n+import weakref\n from operator import itemgetter\n from pathlib import Path\n from typing import TYPE_CHECKING, Any\n@@ -1605,6 +1606,12 @@ class Backend(SQLBackend, CanCreateDatabase, CanCreateSchema, UrlFromPath):\n # only register if we haven't already done so\n self.con.register(name, op.data.to_pyarrow(op.schema))\n \n+ # if we don't aggressively unregister tables duckdb will keep a\n+ # reference to every memtable ever registered, even if there's no\n+ # way for a user to access the operation anymore, resulting in a\n+ # memory leak\n+ weakref.finalize(op, self.con.unregister, name)\n+\n def _register_udfs(self, expr: ir.Expr) -> None:\n con = self.con\n \n", "test_client.py": "@@ -417,3 +417,12 @@ lat,lon,geom\n path.write_bytes(data)\n t = con.read_csv(path, all_varchar=all_varchar, **input)\n assert t.schema()[\"geom\"].is_geospatial()\n+\n+\n+def test_memtable_doesnt_leak(con, monkeypatch):\n+ monkeypatch.setattr(ibis.options, \"default_backend\", con)\n+ name = \"memtable_doesnt_leak\"\n+ assert name not in con.list_tables()\n+ df = ibis.memtable({\"a\": [1, 2, 3]}, name=name).execute()\n+ assert name not in con.list_tables()\n+ assert len(df) == 3\n"}
fix(core): return managed entity from `em.refresh()` This method was previously returning unmanaged entity which was only used internally to get the new data.
0bf5363ef8fff4b3b965d744d18d51af55eb45cf
fix
https://github.com/mikro-orm/mikro-orm/commit/0bf5363ef8fff4b3b965d744d18d51af55eb45cf
return managed entity from `em.refresh()` This method was previously returning unmanaged entity which was only used internally to get the new data.
{"upgrading-v5-to-v6.md": "@@ -477,7 +477,7 @@ class User {\n }\n ```\n \n-This does not apply to virtual properties:\n+This does not apply to [virtual properties](./defining-entities.md#virtual-properties):\n \n ```ts\n @Entity()\n@@ -489,7 +489,7 @@ class User {\n @ManyToOne(() => User, { name: 'parent_id' })\n parent!: User;\n \n- @Property({ name: 'parent_id', })\n+ @Property({ name: 'parent_id', persist: false })\n parentId!: number;\n \n }\n"}
feat: Simple serialization for `Instruction` and `RefSpecRef` type. (#450) It's also a way to normalize input strings as there is only one way to serialize instructions, which themselves are already normalized towards what's possible.
abdf83f494e2a9fba4a8d9fcb776f2c84baebd3e
feat
https://github.com/Byron/gitoxide/commit/abdf83f494e2a9fba4a8d9fcb776f2c84baebd3e
Simple serialization for `Instruction` and `RefSpecRef` type. (#450) It's also a way to normalize input strings as there is only one way to serialize instructions, which themselves are already normalized towards what's possible.
{"lib.rs": "@@ -29,6 +29,8 @@ pub struct RefSpec {\n \n mod spec;\n \n+mod write;\n+\n ///\n pub mod matcher;\n \n", "write.rs": "@@ -0,0 +1,71 @@\n+use crate::instruction::{Fetch, Push};\n+use crate::{Instruction, RefSpecRef};\n+use bstr::BString;\n+\n+impl RefSpecRef<'_> {\n+ /// Reproduce ourselves in parseable form.\n+ pub fn to_bstring(&self) -> BString {\n+ let mut buf = Vec::with_capacity(128);\n+ self.write_to(&mut buf).expect(\"no io error\");\n+ buf.into()\n+ }\n+\n+ /// Serialize ourselves in a parseable format to `out`.\n+ pub fn write_to(&self, out: impl std::io::Write) -> std::io::Result<()> {\n+ self.instruction().write_to(out)\n+ }\n+}\n+\n+impl Instruction<'_> {\n+ /// Reproduce ourselves in parseable form.\n+ pub fn to_bstring(&self) -> BString {\n+ let mut buf = Vec::with_capacity(128);\n+ self.write_to(&mut buf).expect(\"no io error\");\n+ buf.into()\n+ }\n+\n+ /// Serialize ourselves in a parseable format to `out`.\n+ pub fn write_to(&self, mut out: impl std::io::Write) -> std::io::Result<()> {\n+ match self {\n+ Instruction::Push(Push::Matching {\n+ src,\n+ dst,\n+ allow_non_fast_forward,\n+ }) => {\n+ if *allow_non_fast_forward {\n+ out.write_all(&[b'+'])?;\n+ }\n+ out.write_all(src)?;\n+ out.write_all(&[b':'])?;\n+ out.write_all(dst)\n+ }\n+ Instruction::Push(Push::AllMatchingBranches { allow_non_fast_forward }) => {\n+ if *allow_non_fast_forward {\n+ out.write_all(&[b'+'])?;\n+ }\n+ out.write_all(&[b':'])\n+ }\n+ Instruction::Push(Push::Delete { ref_or_pattern }) => {\n+ out.write_all(&[b':'])?;\n+ out.write_all(ref_or_pattern)\n+ }\n+ Instruction::Fetch(Fetch::Only { src }) => out.write_all(src),\n+ Instruction::Fetch(Fetch::Exclude { src }) => {\n+ out.write_all(&[b'^'])?;\n+ out.write_all(src)\n+ }\n+ Instruction::Fetch(Fetch::AndUpdate {\n+ src,\n+ dst,\n+ allow_non_fast_forward,\n+ }) => {\n+ if *allow_non_fast_forward {\n+ out.write_all(&[b'+'])?;\n+ }\n+ out.write_all(src)?;\n+ out.write_all(&[b':'])?;\n+ out.write_all(dst)\n+ }\n+ }\n+ }\n+}\n", "refspec.rs": "@@ -6,3 +6,4 @@ mod impls;\n mod matcher;\n mod matching;\n mod parse;\n+mod write;\n", "mod.rs": "@@ -0,0 +1,98 @@\n+mod push {\n+ use git_refspec::{instruction, Instruction};\n+\n+ #[test]\n+ fn all_matching_branches() {\n+ assert_eq!(\n+ Instruction::Push(instruction::Push::AllMatchingBranches {\n+ allow_non_fast_forward: false\n+ })\n+ .to_bstring(),\n+ \":\"\n+ );\n+ assert_eq!(\n+ Instruction::Push(instruction::Push::AllMatchingBranches {\n+ allow_non_fast_forward: true\n+ })\n+ .to_bstring(),\n+ \"+:\"\n+ );\n+ }\n+\n+ #[test]\n+ fn delete() {\n+ assert_eq!(\n+ Instruction::Push(instruction::Push::Delete {\n+ ref_or_pattern: \"for-deletion\".into(),\n+ })\n+ .to_bstring(),\n+ \":for-deletion\"\n+ );\n+ }\n+\n+ #[test]\n+ fn matching() {\n+ assert_eq!(\n+ Instruction::Push(instruction::Push::Matching {\n+ src: \"from\".into(),\n+ dst: \"to\".into(),\n+ allow_non_fast_forward: false\n+ })\n+ .to_bstring(),\n+ \"from:to\"\n+ );\n+ assert_eq!(\n+ Instruction::Push(instruction::Push::Matching {\n+ src: \"from\".into(),\n+ dst: \"to\".into(),\n+ allow_non_fast_forward: true\n+ })\n+ .to_bstring(),\n+ \"+from:to\"\n+ );\n+ }\n+}\n+\n+mod fetch {\n+ use git_refspec::{instruction, Instruction};\n+ #[test]\n+ fn only() {\n+ assert_eq!(\n+ Instruction::Fetch(instruction::Fetch::Only {\n+ src: \"refs/heads/main\".into(),\n+ })\n+ .to_bstring(),\n+ \"refs/heads/main\"\n+ );\n+ }\n+\n+ #[test]\n+ fn exclude() {\n+ assert_eq!(\n+ Instruction::Fetch(instruction::Fetch::Exclude { src: \"excluded\".into() }).to_bstring(),\n+ \"^excluded\"\n+ );\n+ }\n+\n+ #[test]\n+ fn and_update() {\n+ assert_eq!(\n+ Instruction::Fetch(instruction::Fetch::AndUpdate {\n+ src: \"from\".into(),\n+ dst: \"to\".into(),\n+ allow_non_fast_forward: false\n+ })\n+ .to_bstring(),\n+ \"from:to\"\n+ );\n+ assert_eq!(\n+ Instruction::Fetch(instruction::Fetch::AndUpdate {\n+ src: \"from\".into(),\n+ dst: \"to\".into(),\n+ allow_non_fast_forward: true\n+ })\n+ .to_bstring(),\n+ \"+from:to\"\n+ );\n+ }\n+}\n"}
chore: add `ModuleGraph::display`
2f924527f03d3ad6593e57b75bd0d1137159cf2c
chore
https://github.com/erg-lang/erg/commit/2f924527f03d3ad6593e57b75bd0d1137159cf2c
add `ModuleGraph::display`
{"build_package.rs": "@@ -336,6 +336,7 @@ impl<ASTBuilder: ASTBuildable, HIRBuilder: Buildable>\n log!(info \"Start dependency resolution process\");\n let _ = self.resolve(&mut ast, &cfg);\n log!(info \"Dependency resolution process completed\");\n+ log!(\"graph:\\n{}\", self.shared.graph.display());\n if self.parse_errors.errors.is_empty() {\n self.shared.warns.extend(self.parse_errors.warns.flush());\n } else {\n", "graph.rs": "@@ -160,6 +160,42 @@ impl ModuleGraph {\n pub fn initialize(&mut self) {\n self.0.clear();\n }\n+\n+ pub fn display_parents(\n+ &self,\n+ lev: usize,\n+ id: &NormalizedPathBuf,\n+ appeared: &mut Set<NormalizedPathBuf>,\n+ ) -> String {\n+ let mut s = String::new();\n+ let Some(parents) = self.parents(id) else {\n+ return s;\n+ };\n+ for parent in parents.iter() {\n+ s.push_str(&format!(\"{}-> {}\\n\", \" \".repeat(lev), parent.display()));\n+ if appeared.contains(parent) {\n+ continue;\n+ }\n+ s.push_str(&self.display_parents(lev + 1, parent, appeared));\n+ appeared.insert(parent.clone());\n+ }\n+ s\n+ }\n+\n+ pub fn display(&self) -> String {\n+ let mut s = String::new();\n+ let mut appeared = set! {};\n+ for node in self.0.iter() {\n+ let children = self.children(&node.id);\n+ if !children.is_empty() || appeared.contains(&node.id) {\n+ continue;\n+ }\n+ s.push_str(&format!(\"{}\\n\", node.id.display()));\n+ s.push_str(&self.display_parents(1, &node.id, &mut appeared));\n+ appeared.insert(node.id.clone());\n+ }\n+ s\n+ }\n }\n \n #[derive(Debug, Clone, Default)]\n@@ -248,4 +284,8 @@ impl SharedModuleGraph {\n pub fn clone_inner(&self) -> ModuleGraph {\n self.0.borrow().clone()\n }\n+\n+ pub fn display(&self) -> String {\n+ self.0.borrow().display()\n+ }\n }\n"}
refactor (#287) Re-use the index::integrity::Options for multi_index options as it's exactly the same. This opportunty was missed the previous we simplified these signatures.
6c066597f310b1bd5eb5611c1147b48846bc0ac0
refactor
https://github.com/Byron/gitoxide/commit/6c066597f310b1bd5eb5611c1147b48846bc0ac0
:integrity::Options for multi_index options as it's exactly the same. This opportunty was missed the previous we simplified these signatures.
{"mod.rs": "@@ -26,6 +26,11 @@ pub use file::{decode_entry, verify, ResolvedBase};\n ///\n pub mod header;\n \n+///\n+pub mod init {\n+ pub use super::header::decode::Error;\n+}\n+\n ///\n pub mod entry;\n \n", "verify.rs": "@@ -1,6 +1,7 @@\n use std::time::Instant;\n use std::{cmp::Ordering, sync::atomic::AtomicBool};\n \n+use crate::index;\n use git_features::progress::Progress;\n \n use crate::multi_index::File;\n@@ -48,29 +49,6 @@ pub mod integrity {\n /// The provided progress instance.\n pub progress: P,\n }\n-\n- /// Additional options to define how the integrity should be verified.\n- pub struct Options<F> {\n- /// The thoroughness of the verification\n- pub verify_mode: crate::index::verify::Mode,\n- /// The way to traverse packs\n- pub traversal: crate::index::traverse::Algorithm,\n- /// The amount of theads to use of `Some(N)`, with `None|Some(0)` using all available cores are used.\n- pub thread_limit: Option<usize>,\n- /// A function to create a pack cache\n- pub make_pack_lookup_cache: F,\n- }\n-\n- impl Default for Options<fn() -> crate::cache::Never> {\n- fn default() -> Self {\n- Options {\n- verify_mode: Default::default(),\n- traversal: Default::default(),\n- thread_limit: None,\n- make_pack_lookup_cache: || crate::cache::Never,\n- }\n- }\n- }\n }\n \n ///\n@@ -108,12 +86,17 @@ impl File {\n where\n P: Progress,\n {\n- self.verify_integrity_inner(progress, should_interrupt, false, integrity::Options::default())\n- .map_err(|err| match err {\n- crate::index::traverse::Error::Processor(err) => err,\n- _ => unreachable!(\"BUG: no other error type is possible\"),\n- })\n- .map(|o| (o.actual_index_checksum, o.progress))\n+ self.verify_integrity_inner(\n+ progress,\n+ should_interrupt,\n+ false,\n+ index::verify::integrity::Options::default(),\n+ )\n+ .map_err(|err| match err {\n+ index::traverse::Error::Processor(err) => err,\n+ _ => unreachable!(\"BUG: no other error type is possible\"),\n+ })\n+ .map(|o| (o.actual_index_checksum, o.progress))\n }\n \n /// Similar to [`crate::Bundle::verify_integrity()`] but checks all contained indices and their packs.\n@@ -123,8 +106,8 @@ impl File {\n &self,\n progress: P,\n should_interrupt: &AtomicBool,\n- options: integrity::Options<F>,\n- ) -> Result<integrity::Outcome<P>, crate::index::traverse::Error<integrity::Error>>\n+ options: index::verify::integrity::Options<F>,\n+ ) -> Result<integrity::Outcome<P>, index::traverse::Error<integrity::Error>>\n where\n P: Progress,\n C: crate::cache::DecodeEntry,\n@@ -138,13 +121,8 @@ impl File {\n mut progress: P,\n should_interrupt: &AtomicBool,\n deep_check: bool,\n- integrity::Options {\n- verify_mode,\n- traversal,\n- thread_limit,\n- make_pack_lookup_cache,\n- }: integrity::Options<F>,\n- ) -> Result<integrity::Outcome<P>, crate::index::traverse::Error<integrity::Error>>\n+ options: index::verify::integrity::Options<F>,\n+ ) -> Result<integrity::Outcome<P>, index::traverse::Error<integrity::Error>>\n where\n P: Progress,\n C: crate::cache::DecodeEntry,\n@@ -158,16 +136,16 @@ impl File {\n should_interrupt,\n )\n .map_err(integrity::Error::from)\n- .map_err(crate::index::traverse::Error::Processor)?;\n+ .map_err(index::traverse::Error::Processor)?;\n \n if let Some(first_invalid) = crate::verify::fan(&self.fan) {\n- return Err(crate::index::traverse::Error::Processor(integrity::Error::Fan {\n+ return Err(index::traverse::Error::Processor(integrity::Error::Fan {\n index: first_invalid,\n }));\n }\n \n if self.num_objects == 0 {\n- return Err(crate::index::traverse::Error::Processor(integrity::Error::Empty));\n+ return Err(index::traverse::Error::Processor(integrity::Error::Empty));\n }\n \n let mut pack_traverse_statistics = Vec::new();\n@@ -188,7 +166,7 @@ impl File {\n let rhs = self.oid_at_index(entry_index + 1);\n \n if rhs.cmp(lhs) != Ordering::Greater {\n- return Err(crate::index::traverse::Error::Processor(integrity::Error::OutOfOrder {\n+ return Err(index::traverse::Error::Processor(integrity::Error::OutOfOrder {\n index: entry_index,\n }));\n }\n@@ -230,14 +208,14 @@ impl File {\n let index = if deep_check {\n bundle = crate::Bundle::at(index_path, self.object_hash)\n .map_err(integrity::Error::from)\n- .map_err(crate::index::traverse::Error::Processor)?\n+ .map_err(index::traverse::Error::Processor)?\n .into();\n bundle.as_ref().map(|b| &b.index).expect(\"just set\")\n } else {\n index = Some(\n- crate::index::File::at(index_path, self.object_hash)\n+ index::File::at(index_path, self.object_hash)\n .map_err(|err| integrity::Error::BundleInit(crate::bundle::init::Error::Index(err)))\n- .map_err(crate::index::traverse::Error::Processor)?,\n+ .map_err(index::traverse::Error::Processor)?,\n );\n index.as_ref().expect(\"just set\")\n };\n@@ -251,11 +229,11 @@ impl File {\n let oid = self.oid_at_index(entry_id);\n let (_, expected_pack_offset) = self.pack_id_and_pack_offset_at_index(entry_id);\n let entry_in_bundle_index = index.lookup(oid).ok_or_else(|| {\n- crate::index::traverse::Error::Processor(integrity::Error::OidNotFound { id: oid.to_owned() })\n+ index::traverse::Error::Processor(integrity::Error::OidNotFound { id: oid.to_owned() })\n })?;\n let actual_pack_offset = index.pack_offset_at_index(entry_in_bundle_index);\n if actual_pack_offset != expected_pack_offset {\n- return Err(crate::index::traverse::Error::Processor(\n+ return Err(index::traverse::Error::Processor(\n integrity::Error::PackOffsetMismatch {\n id: oid.to_owned(),\n expected_pack_offset,\n@@ -266,7 +244,7 @@ impl File {\n offsets_progress.inc();\n }\n if should_interrupt.load(std::sync::atomic::Ordering::Relaxed) {\n- return Err(crate::index::traverse::Error::Processor(integrity::Error::Interrupted));\n+ return Err(index::traverse::Error::Processor(integrity::Error::Interrupted));\n }\n }\n \n@@ -280,18 +258,9 @@ impl File {\n pack_traverse_outcome,\n progress: _,\n } = bundle\n- .verify_integrity(\n- progress,\n- should_interrupt,\n- crate::index::verify::integrity::Options {\n- verify_mode,\n- traversal,\n- make_pack_lookup_cache: make_pack_lookup_cache.clone(),\n- thread_limit,\n- },\n- )\n+ .verify_integrity(progress, should_interrupt, options.clone())\n .map_err(|err| {\n- use crate::index::traverse::Error::*;\n+ use index::traverse::Error::*;\n match err {\n Processor(err) => Processor(integrity::Error::IndexIntegrity(err)),\n VerifyChecksum(err) => VerifyChecksum(err),\n"}
chore: change internal dependencies to use `~` instead of `^`
f8bf4932511d449e7a7a8d2b9eed5c2322e3fb2f
chore
https://github.com/mikro-orm/mikro-orm/commit/f8bf4932511d449e7a7a8d2b9eed5c2322e3fb2f
change internal dependencies to use `~` instead of `^`
{"package.json": "@@ -59,13 +59,13 @@\n \"access\": \"public\"\n },\n \"dependencies\": {\n- \"@mikro-orm/knex\": \"^5.4.1\",\n+ \"@mikro-orm/knex\": \"~5.4.1\",\n \"fs-extra\": \"10.1.0\",\n \"sqlite3\": \"5.0.11\",\n \"sqlstring-sqlite\": \"0.1.1\"\n },\n \"devDependencies\": {\n- \"@mikro-orm/core\": \"^5.4.1\"\n+ \"@mikro-orm/core\": \"~5.4.1\"\n },\n \"peerDependencies\": {\n \"@mikro-orm/core\": \"^5.0.0\",\n"}
fix(sql): walk right join trees and substitute joins with right-side joins with views
02315927b93762ab045a11629d3144fbff8545c1
fix
https://github.com/ibis-project/ibis/commit/02315927b93762ab045a11629d3144fbff8545c1
walk right join trees and substitute joins with right-side joins with views
{"query_builder.py": "@@ -61,21 +61,16 @@ class TableSetFormatter:\n if isinstance(left, ops.Join):\n self._walk_join_tree(left)\n self.join_tables.append(self._format_table(op.right))\n- self.join_types.append(jname)\n- self.join_predicates.append(op.predicates)\n elif isinstance(right, ops.Join):\n- # When rewrites are possible at the expression IR stage, we should\n- # do them. Otherwise subqueries might be necessary in some cases\n- # here\n- raise NotImplementedError(\n- 'not allowing joins on right ' 'side yet'\n- )\n+ self.join_tables.append(self._format_table(op.left))\n+ self._walk_join_tree(right)\n else:\n # Both tables\n self.join_tables.append(self._format_table(op.left))\n self.join_tables.append(self._format_table(op.right))\n- self.join_types.append(jname)\n- self.join_predicates.append(op.predicates)\n+\n+ self.join_types.append(jname)\n+ self.join_predicates.append(op.predicates)\n \n # Placeholder; revisit when supporting other databases\n _non_equijoin_supported = True\n", "relations.py": "@@ -95,14 +95,25 @@ class SQLQueryResult(TableNode, sch.HasSchema):\n \n \n def _make_distinct_join_predicates(left, right, predicates):\n- # see GH #667\n-\n- # If left and right table have a common parent expression (e.g. they\n- # have different filters), must add a self-reference and make the\n- # appropriate substitution in the join predicates\n+ import ibis.expr.analysis as L\n \n if left.equals(right):\n+ # GH #667: If left and right table have a common parent expression,\n+ # e.g. they have different filters, we need to add a self-reference and\n+ # make the appropriate substitution in the join predicates\n right = right.view()\n+ elif isinstance(right.op(), Join):\n+ # for joins with joins on the right side we turn the right side into a\n+ # view, otherwise the join tree is incorrectly flattened and tables on\n+ # the right are incorrectly scoped\n+ old = right\n+ new = right = right.view()\n+ predicates = [\n+ L.sub_for(pred, [(old, new)])\n+ if isinstance(pred, ir.Expr)\n+ else pred\n+ for pred in predicates\n+ ]\n \n predicates = _clean_join_predicates(left, right, predicates)\n return left, right, predicates\n@@ -113,9 +124,6 @@ def _clean_join_predicates(left, right, predicates):\n \n result = []\n \n- if not isinstance(predicates, (list, tuple)):\n- predicates = [predicates]\n-\n for pred in predicates:\n if isinstance(pred, tuple):\n if len(pred) != 2:\n@@ -162,7 +170,7 @@ class Join(TableNode):\n \n def __init__(self, left, right, predicates, **kwargs):\n left, right, predicates = _make_distinct_join_predicates(\n- left, right, predicates\n+ left, right, util.promote_list(predicates)\n )\n super().__init__(\n left=left, right=right, predicates=predicates, **kwargs\n@@ -241,7 +249,7 @@ class AsOfJoin(Join):\n tolerance = rlz.optional(rlz.interval)\n \n def __init__(self, left, right, by, predicates, **kwargs):\n- by = _clean_join_predicates(left, right, by)\n+ by = _clean_join_predicates(left, right, util.promote_list(by))\n super().__init__(\n left=left, right=right, by=by, predicates=predicates, **kwargs\n )\n", "test_sqlalchemy.py": "@@ -901,3 +901,124 @@ def test_no_cross_join(person, visited, survey):\n ]\n ).select_from(from_)\n _check(expr, ex)\n+\n+\[email protected]\n+def test1():\n+ return ibis.table(name=\"test1\", schema=dict(id1=\"int32\", val1=\"float32\"))\n+\n+\[email protected]\n+def test2():\n+ return ibis.table(\n+ name=\"test2\",\n+ schema=ibis.schema(dict(id2a=\"int32\", id2b=\"int64\", val2=\"float64\")),\n+ )\n+\n+\[email protected]\n+def test3():\n+ return ibis.table(\n+ name=\"test3\",\n+ schema=dict(id3=\"string\", val2=\"float64\", dt=\"timestamp\"),\n+ )\n+\n+\n+def test_gh_1045(test1, test2, test3):\n+ t1 = test1\n+ t2 = test2\n+ t3 = test3\n+\n+ t3 = t3[[c for c in t3.columns if c != \"id3\"]].mutate(\n+ id3=t3.id3.cast('int64')\n+ )\n+\n+ t3 = t3[[c for c in t3.columns if c != \"val2\"]].mutate(t3_val2=t3.id3)\n+ t4 = t3.join(t2, t2.id2b == t3.id3)\n+\n+ t1 = t1[[t1[c].name(f\"t1_{c}\") for c in t1.columns]]\n+\n+ expr = t1.left_join(t4, t1.t1_id1 == t4.id2a)\n+\n+ test3 = sa.table(\n+ \"test3\", sa.column(\"id3\"), sa.column(\"val2\"), sa.column(\"dt\")\n+ )\n+ test2 = sa.table(\n+ \"test2\", sa.column(\"id2a\"), sa.column(\"id2b\"), sa.column(\"val2\")\n+ )\n+ test1 = sa.table(\"test1\", sa.column(\"id1\"), sa.column(\"val1\"))\n+\n+ t2 = test1.alias(\"t2\")\n+ t0 = sa.select(\n+ t2.c.id1.label(\"t1_id1\"),\n+ t2.c.val1.label(\"t1_val1\"),\n+ ).alias(\"t0\")\n+\n+ t5 = test3.alias(\"t5\")\n+ t4 = sa.select(\n+ t5.c.val2,\n+ t5.c.dt,\n+ sa.cast(t5.c.id3, sa.BigInteger()).label(\"id3\"),\n+ ).alias(\"t4\")\n+ t3 = test2.alias(\"t3\")\n+ t2 = sa.select(t4.c.dt, t4.c.id3, t4.c.id3.label(\"t3_val2\")).alias(\"t2\")\n+ t1 = (\n+ sa.select(\n+ t2.c.dt,\n+ t2.c.id3,\n+ t2.c.t3_val2,\n+ t3.c.id2a,\n+ t3.c.id2b,\n+ t3.c.val2,\n+ )\n+ .select_from(t2.join(t3, onclause=t3.c.id2b == t2.c.id3))\n+ .alias(\"t1\")\n+ )\n+\n+ ex = sa.select(\n+ t0.c.t1_id1,\n+ t0.c.t1_val1,\n+ t1.c.dt,\n+ t1.c.id3,\n+ t1.c.t3_val2,\n+ t1.c.id2a,\n+ t1.c.id2b,\n+ t1.c.val2,\n+ ).select_from(t0.join(t1, isouter=True, onclause=t0.c.t1_id1 == t1.c.id2a))\n+\n+ _check(expr, ex)\n+\n+\n+def test_multi_join():\n+ t1 = ibis.table(dict(x1=\"int64\", y1=\"int64\"), name=\"t1\")\n+ t2 = ibis.table(dict(x2=\"int64\"), name=\"t2\")\n+ t3 = ibis.table(dict(x3=\"int64\", y2=\"int64\"), name=\"t3\")\n+ t4 = ibis.table(dict(x4=\"int64\"), name=\"t4\")\n+\n+ j1 = t1.join(t2, t1.x1 == t2.x2)\n+ j2 = t3.join(t4, t3.x3 == t4.x4)\n+ expr = j1.join(j2, j1.y1 == j2.y2)\n+\n+ t0 = sa.table(\"t1\", sa.column(\"x1\"), sa.column(\"y1\")).alias(\"t0\")\n+ t1 = sa.table(\"t2\", sa.column(\"x2\")).alias(\"t1\")\n+\n+ t3 = sa.table(\"t3\", sa.column(\"x3\"), sa.column(\"y2\")).alias(\"t3\")\n+ t4 = sa.table(\"t4\", sa.column(\"x4\")).alias(\"t4\")\n+ t2 = (\n+ sa.select(t3.c.x3, t3.c.y2, t4.c.x4)\n+ .select_from(t3.join(t4, onclause=t3.c.x3 == t4.c.x4))\n+ .alias(\"t2\")\n+ )\n+ ex = sa.select(\n+ t0.c.x1,\n+ t0.c.y1,\n+ t1.c.x2,\n+ t2.c.x3,\n+ t2.c.y2,\n+ t2.c.x4,\n+ ).select_from(\n+ t0.join(t1, onclause=t0.c.x1 == t1.c.x2).join(\n+ t2, onclause=t0.c.y1 == t2.c.y2\n+ )\n+ )\n+ _check(expr, ex)\n"}
build: try to fix npm dev builds publishing
aff5d13c07b34181ad70b0d8e4e834184b4ca7f2
build
https://github.com/mikro-orm/mikro-orm/commit/aff5d13c07b34181ad70b0d8e4e834184b4ca7f2
try to fix npm dev builds publishing
{"nightly.yml": "@@ -23,8 +23,12 @@ jobs:\n - name: Install libkrb5-dev (for mongo)\n run: sudo apt install libkrb5-dev\n \n+ - name: Install\n+ run: |\n+ yarn\n+ echo \"//registry.npmjs.org/:_authToken=$NPM_TOKEN\" >> ~/.npmrc\n+\n - name: Release nightly\n- - run: yarn\n- - run: yarn release:next --yes --loglevel silly\n+ run: yarn release:next --yes --loglevel silly\n env:\n NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n"}
build: removed some warnings chore(engine): removed exported Utils alias imports and exported functions instead
7b6b5e2fb21dfbf441672b86e60e56becefa5db4
build
https://github.com/tsparticles/tsparticles/commit/7b6b5e2fb21dfbf441672b86e60e56becefa5db4
removed some warnings chore(engine): removed exported Utils alias imports and exported functions instead
{"LifeUpdater.ts": "@@ -6,7 +6,7 @@ import { getRangeValue, randomInRange, setRangeValue } from \"../../Utils\";\n export class LifeUpdater implements IParticleUpdater {\n constructor(private readonly container: Container) {}\n \n- init(particle: Particle): void {\n+ init(): void {\n // nothing\n }\n \n", "OutOfCanvasUpdater.ts": "@@ -8,7 +8,7 @@ import { bounceHorizontal, bounceVertical } from \"./Utils\";\n export class OutOfCanvasUpdater implements IParticleUpdater {\n constructor(private readonly container: Container) {}\n \n- init(particle: Particle): void {\n+ init(): void {\n // nothing\n }\n \n", "SizeUpdater.ts": "@@ -70,7 +70,7 @@ function updateSize(particle: Particle, delta: IDelta): void {\n }\n \n export class SizeUpdater implements IParticleUpdater {\n- init(particle: Particle): void {\n+ init(): void {\n // nothing\n }\n \n", "CanvasUtils.ts": "@@ -468,7 +468,7 @@ export function drawEllipse(\n context.stroke();\n }\n \n-export function alterHsl(color: IHsl, type: AlterType, value: number) {\n+export function alterHsl(color: IHsl, type: AlterType, value: number): IHsl {\n return {\n h: color.h,\n s: color.s,\n", "index.slim.ts": "@@ -1,8 +1,4 @@\n import { initPjs } from \"./pjs\";\n-import * as CanvasUtils from \"./Utils/CanvasUtils\";\n-import * as ColorUtils from \"./Utils/ColorUtils\";\n-import * as NumberUtils from \"./Utils/NumberUtils\";\n-import * as Utils from \"./Utils/Utils\";\n import { Circle, CircleWarp, Constants, Point, Rectangle } from \"./Utils\";\n import type { IOptions } from \"./Options/Interfaces/IOptions\";\n import type { RecursivePartial } from \"./Types\";\n@@ -22,7 +18,11 @@ const { particlesJS, pJSDom } = initPjs(tsParticles);\n export * from \"./Core/Particle/Vector\";\n export * from \"./Core/Container\";\n export * from \"./Enums\";\n-export { CanvasUtils, Circle, CircleWarp, ColorUtils, Constants, NumberUtils, Point, Rectangle, Utils, Main, loadSlim };\n+export { Circle, CircleWarp, Constants, Point, Rectangle, Main, loadSlim };\n+export * from \"./Utils/CanvasUtils\";\n+export * from \"./Utils/ColorUtils\";\n+export * from \"./Utils/NumberUtils\";\n+export * from \"./Utils/Utils\";\n export * from \"./Types\";\n export * from \"./Core/Interfaces\";\n export * from \"./Core/Particle\";\n", "index.ts": "@@ -1,9 +1,5 @@\n import { initPjs } from \"./pjs\";\n import { Main } from \"./main\";\n-import * as CanvasUtils from \"./Utils/CanvasUtils\";\n-import * as ColorUtils from \"./Utils/ColorUtils\";\n-import * as NumberUtils from \"./Utils/NumberUtils\";\n-import * as Utils from \"./Utils/Utils\";\n import { Circle, CircleWarp, Constants, Point, Rectangle } from \"./Utils\";\n import type { IOptions as ISlimOptions } from \"./Options/Interfaces/IOptions\";\n import type { IAbsorberOptions } from \"./Plugins/Absorbers/Options/Interfaces/IAbsorberOptions\";\n@@ -27,7 +23,11 @@ export * from \"./Enums\";\n export * from \"./Plugins/Absorbers/Enums\";\n export * from \"./Plugins/Emitters/Enums\";\n export * from \"./Plugins/PolygonMask/Enums\";\n-export { CanvasUtils, Circle, CircleWarp, ColorUtils, Constants, NumberUtils, Point, Rectangle, Utils, Main, loadFull };\n+export { Circle, CircleWarp, Constants, Point, Rectangle, Main, loadFull };\n+export * from \"./Utils/CanvasUtils\";\n+export * from \"./Utils/ColorUtils\";\n+export * from \"./Utils/NumberUtils\";\n+export * from \"./Utils/Utils\";\n export * from \"./Types\";\n export * from \"./Core/Interfaces\";\n export * from \"./Core/Particle\";\n", "ExternalLighter.ts": "@@ -1,4 +1,4 @@\n-import { ExternalInteractorBase, HoverMode, Utils } from \"tsparticles\";\n+import { ExternalInteractorBase, HoverMode, isInArray } from \"tsparticles\";\n import type { Container } from \"tsparticles\";\n import { drawLight } from \"./Utils\";\n \n@@ -33,7 +33,7 @@ export class ExternalLighter extends ExternalInteractorBase {\n return false;\n }\n \n- return Utils.isInArray(HoverMode.light, events.onHover.mode);\n+ return isInArray(HoverMode.light, events.onHover.mode);\n }\n \n reset(): void {\n", "ParticlesLighter.ts": "@@ -1,4 +1,4 @@\n-import { HoverMode, ParticlesInteractorBase, Utils } from \"tsparticles\";\n+import { HoverMode, ParticlesInteractorBase, isInArray } from \"tsparticles\";\n import type { Container, Particle } from \"tsparticles\";\n import { drawParticleShadow } from \"./Utils\";\n \n@@ -31,7 +31,7 @@ export class ParticlesLighter extends ParticlesInteractorBase {\n return false;\n }\n \n- return Utils.isInArray(HoverMode.light, events.onHover.mode);\n+ return isInArray(HoverMode.light, events.onHover.mode);\n }\n \n reset(): void {\n", "Utils.ts": "@@ -1,4 +1,4 @@\n-import { ColorUtils, Container, ICoordinates, Particle } from \"tsparticles\";\n+import { Container, ICoordinates, Particle, colorToRgb, getStyleFromRgb } from \"tsparticles\";\n \n export function drawLight(container: Container, context: CanvasRenderingContext2D, mousePos: ICoordinates): void {\n const lightOptions = container.actualOptions.interactivity.modes.light.area;\n@@ -17,16 +17,16 @@ export function drawLight(container: Container, context: CanvasRenderingContext2\n \n const lightGradient = lightOptions.gradient;\n const gradientRgb = {\n- start: ColorUtils.colorToRgb(lightGradient.start),\n- stop: ColorUtils.colorToRgb(lightGradient.stop),\n+ start: colorToRgb(lightGradient.start),\n+ stop: colorToRgb(lightGradient.stop),\n };\n \n if (!gradientRgb.start || !gradientRgb.stop) {\n return;\n }\n \n- gradientAmbientLight.addColorStop(0, ColorUtils.getStyleFromRgb(gradientRgb.start));\n- gradientAmbientLight.addColorStop(1, ColorUtils.getStyleFromRgb(gradientRgb.stop));\n+ gradientAmbientLight.addColorStop(0, getStyleFromRgb(gradientRgb.start));\n+ gradientAmbientLight.addColorStop(1, getStyleFromRgb(gradientRgb.stop));\n context.fillStyle = gradientAmbientLight;\n context.fill();\n }\n@@ -73,13 +73,13 @@ export function drawParticleShadow(\n });\n }\n \n- const shadowRgb = ColorUtils.colorToRgb(shadowOptions.color);\n+ const shadowRgb = colorToRgb(shadowOptions.color);\n \n if (!shadowRgb) {\n return;\n }\n \n- const shadowColor = ColorUtils.getStyleFromRgb(shadowRgb);\n+ const shadowColor = getStyleFromRgb(shadowRgb);\n \n for (let i = points.length - 1; i >= 0; i--) {\n const n = i == points.length - 1 ? 0 : i + 1;\n", "Repulser.ts": "@@ -1,5 +1,5 @@\n import type { Container, IParticle } from \"tsparticles\";\n-import { NumberUtils, Particle, ParticlesInteractorBase, Vector } from \"tsparticles\";\n+import { Particle, ParticlesInteractorBase, Vector, getDistances, clamp } from \"tsparticles\";\n \n export class Repulser extends ParticlesInteractorBase {\n constructor(container: Container) {\n@@ -27,14 +27,10 @@ export class Repulser extends ParticlesInteractorBase {\n }\n \n const pos2 = p2.getPosition();\n- const { dx, dy, distance } = NumberUtils.getDistances(pos2, pos1);\n+ const { dx, dy, distance } = getDistances(pos2, pos1);\n const velocity = repulseOpt1.speed * repulseOpt1.factor;\n if (distance > 0) {\n- const repulseFactor = NumberUtils.clamp(\n- (1 - Math.pow(distance / repulseOpt1.distance, 2)) * velocity,\n- 0,\n- velocity\n- );\n+ const repulseFactor = clamp((1 - Math.pow(distance / repulseOpt1.distance, 2)) * velocity, 0, velocity);\n const normVec = Vector.create((dx / distance) * repulseFactor, (dy / distance) * repulseFactor);\n \n p2.position.addTo(normVec);\n", "InfectionInstance.ts": "@@ -1,6 +1,6 @@\n import type { IColor, IContainerPlugin, Particle } from \"tsparticles\";\n import { Infecter } from \"./Infecter\";\n-import { Utils } from \"tsparticles\";\n+import { itemFromArray } from \"tsparticles\";\n import type { InfectableContainer, InfectableParticle } from \"./Types\";\n import type { IInfectionOptions } from \"./Options/Interfaces/IInfectionOptions\";\n \n@@ -23,7 +23,7 @@ export class InfectionInstance implements IContainerPlugin {\n return infP.infection.stage === undefined;\n });\n \n- const infected = Utils.itemFromArray(notInfected) as InfectableParticle;\n+ const infected = itemFromArray(notInfected) as InfectableParticle;\n \n this.container.infecter?.startInfection(infected, 0);\n }\n", "MultilineTextDrawer.ts": "@@ -1,4 +1,4 @@\n-import { Utils } from \"tsparticles\";\n+import { isInArray, itemFromArray, loadFont } from \"tsparticles\";\n import type { IShapeDrawer } from \"tsparticles/Core/Interfaces/IShapeDrawer\";\n import type { Container, SingleOrMultiple, IParticle } from \"tsparticles\";\n import type { IShapeValues } from \"tsparticles/Options/Interfaces/Particles/Shape/IShapeValues\";\n@@ -19,15 +19,15 @@ export class MultilineTextDrawer implements IShapeDrawer {\n const options = container.options;\n const shapeType = \"multiline-text\";\n \n- if (Utils.isInArray(shapeType, options.particles.shape.type)) {\n+ if (isInArray(shapeType, options.particles.shape.type)) {\n const shapeOptions = options.particles.shape.options[shapeType] as SingleOrMultiple<IMultilineTextShape>;\n if (shapeOptions instanceof Array) {\n for (const character of shapeOptions) {\n- await Utils.loadFont(character);\n+ await loadFont(character);\n }\n } else {\n if (shapeOptions !== undefined) {\n- await Utils.loadFont(shapeOptions);\n+ await loadFont(shapeOptions);\n }\n }\n }\n@@ -50,7 +50,7 @@ export class MultilineTextDrawer implements IShapeDrawer {\n \n if (textParticle.text === undefined) {\n textParticle.text =\n- textData instanceof Array ? Utils.itemFromArray(textData, particle.randomIndexData) : textData;\n+ textData instanceof Array ? itemFromArray(textData, particle.randomIndexData) : textData;\n }\n \n const text = textParticle.text;\n", "GradientUpdater.ts": "@@ -5,7 +5,18 @@ import type {\n Particle,\n IParticleNumericValueAnimation,\n } from \"tsparticles\";\n-import { AnimationStatus, RotateDirection, StartValueType, Utils, ColorUtils, NumberUtils } from \"tsparticles\";\n+import {\n+ AnimationStatus,\n+ RotateDirection,\n+ StartValueType,\n+ colorToHsl,\n+ getHslAnimationFromHsl,\n+ getRangeMax,\n+ getRangeMin,\n+ getRangeValue,\n+ itemFromArray,\n+ randomInRange,\n+} from \"tsparticles\";\n \n function updateColorOpacity(delta: IDelta, value: IParticleNumericValueAnimation) {\n if (!value.enable) {\n@@ -124,7 +135,7 @@ export class GradientUpdater implements IParticleUpdater {\n init(particle: Particle): void {\n const gradient =\n particle.options.gradient instanceof Array\n- ? Utils.itemFromArray(particle.options.gradient)\n+ ? itemFromArray(particle.options.gradient)\n : particle.options.gradient;\n \n if (gradient) {\n@@ -159,10 +170,10 @@ export class GradientUpdater implements IParticleUpdater {\n const reduceDuplicates = particle.options.reduceDuplicates;\n \n for (const grColor of gradient.colors) {\n- const grHslColor = ColorUtils.colorToHsl(grColor.value, particle.id, reduceDuplicates);\n+ const grHslColor = colorToHsl(grColor.value, particle.id, reduceDuplicates);\n \n if (grHslColor) {\n- const grHslAnimation = ColorUtils.getHslAnimationFromHsl(\n+ const grHslAnimation = getHslAnimationFromHsl(\n grHslColor,\n grColor.value.animation,\n particle.container.retina.reduceFactor\n@@ -174,10 +185,10 @@ export class GradientUpdater implements IParticleUpdater {\n opacity: grColor.opacity\n ? {\n enable: grColor.opacity.animation.enable,\n- max: NumberUtils.getRangeMax(grColor.opacity.value),\n- min: NumberUtils.getRangeMin(grColor.opacity.value),\n+ max: getRangeMax(grColor.opacity.value),\n+ min: getRangeMin(grColor.opacity.value),\n status: AnimationStatus.increasing,\n- value: NumberUtils.getRangeValue(grColor.opacity.value),\n+ value: getRangeValue(grColor.opacity.value),\n velocity:\n (grColor.opacity.animation.speed / 100) * particle.container.retina.reduceFactor,\n }\n@@ -187,8 +198,8 @@ export class GradientUpdater implements IParticleUpdater {\n if (grColor.opacity && addColor.opacity) {\n const opacityRange = grColor.opacity.value;\n \n- addColor.opacity.min = NumberUtils.getRangeMin(opacityRange);\n- addColor.opacity.max = NumberUtils.getRangeMax(opacityRange);\n+ addColor.opacity.min = getRangeMin(opacityRange);\n+ addColor.opacity.max = getRangeMax(opacityRange);\n \n const opacityAnimation = grColor.opacity.animation;\n \n@@ -200,7 +211,7 @@ export class GradientUpdater implements IParticleUpdater {\n break;\n \n case StartValueType.random:\n- addColor.opacity.value = NumberUtils.randomInRange(addColor.opacity);\n+ addColor.opacity.value = randomInRange(addColor.opacity);\n addColor.opacity.status =\n Math.random() >= 0.5 ? AnimationStatus.increasing : AnimationStatus.decreasing;\n \n", "OrbitUpdater.ts": "@@ -1,5 +1,5 @@\n import type { Container, IDelta, IParticleUpdater, Particle, IHsl, IParticleRetinaProps } from \"tsparticles\";\n-import { CanvasUtils, ColorUtils, NumberUtils, OrbitType } from \"tsparticles\";\n+import { colorToHsl, drawEllipse, getRangeValue, OrbitType } from \"tsparticles\";\n \n type OrbitParticle = Particle & {\n orbitColor?: IHsl;\n@@ -18,9 +18,9 @@ export class OrbitUpdater implements IParticleUpdater {\n const orbitOptions = particlesOptions.orbit;\n \n if (orbitOptions.enable) {\n- particle.orbitRotation = NumberUtils.getRangeValue(orbitOptions.rotation.value);\n+ particle.orbitRotation = getRangeValue(orbitOptions.rotation.value);\n \n- particle.orbitColor = ColorUtils.colorToHsl(orbitOptions.color);\n+ particle.orbitColor = colorToHsl(orbitOptions.color);\n \n particle.retina.orbitRadius =\n orbitOptions?.radius !== undefined ? orbitOptions.radius * this.container.retina.pixelRatio : undefined;\n@@ -85,7 +85,7 @@ export class OrbitUpdater implements IParticleUpdater {\n }\n \n container.canvas.draw((ctx) => {\n- CanvasUtils.drawEllipse(\n+ drawEllipse(\n ctx,\n particle,\n particle.orbitColor ?? particle.getFillColor(),\n"}
build: added typedoc config to all packages for the website generation
2226d500c9e5c8f187393b17c533900a99ed5dfd
build
https://github.com/tsparticles/tsparticles/commit/2226d500c9e5c8f187393b17c533900a99ed5dfd
added typedoc config to all packages for the website generation
{"typedoc.json": "@@ -1,5 +1,4 @@\n {\n- \"gaID\": \"UA-161253125-1\",\n \"includes\": \"./markdown\",\n \"entryPoints\": [\n \"./src/\"\n@@ -9,33 +8,6 @@\n \"includeVersion\": true,\n \"hideGenerator\": true,\n \"out\": \"./docs\",\n- \"clarityId\": \"8q4bxin4tm\",\n- \"carbonServe\": \"CEAI6KJL\",\n- \"carbonPlacement\": \"particlesjsorg\",\n- \"keywords\": [\n- \"html\",\n- \"css\",\n- \"javascript\",\n- \"typescript\",\n- \"particles\",\n- \"js\",\n- \"ts\",\n- \"jsx\",\n- \"tsx\",\n- \"canvas\",\n- \"confetti\",\n- \"fireworks\",\n- \"animations\",\n- \"react\",\n- \"vue\",\n- \"angular\",\n- \"svelte\",\n- \"libraries\",\n- \"how\",\n- \"to\",\n- \"create\",\n- \"add\"\n- ],\n \"validation\": {\n \"invalidLink\": true,\n \"notDocumented\": true\n"}
docs: fix `memtable` docstrings
72bc0f5172c0a3d17bde29cfc00db4c60d2fee3a
docs
https://github.com/rohankumardubey/ibis/commit/72bc0f5172c0a3d17bde29cfc00db4c60d2fee3a
fix `memtable` docstrings
{"api.py": "@@ -403,15 +403,21 @@ def memtable(\n >>> import ibis\n >>> t = ibis.memtable([{\"a\": 1}, {\"a\": 2}])\n >>> t\n+ PandasInMemoryTable\n+ data:\n+ DataFrameProxy:\n+ a\n+ 0 1\n+ 1 2\n \n >>> t = ibis.memtable([{\"a\": 1, \"b\": \"foo\"}, {\"a\": 2, \"b\": \"baz\"}])\n >>> t\n PandasInMemoryTable\n data:\n- ((1, 'foo'), (2, 'baz'))\n- schema:\n- a int8\n- b string\n+ DataFrameProxy:\n+ a b\n+ 0 1 foo\n+ 1 2 baz\n \n Create a table literal without column names embedded in the data and pass\n `columns`\n@@ -420,10 +426,22 @@ def memtable(\n >>> t\n PandasInMemoryTable\n data:\n- ((1, 'foo'), (2, 'baz'))\n- schema:\n- a int8\n- b string\n+ DataFrameProxy:\n+ a b\n+ 0 1 foo\n+ 1 2 baz\n+\n+ Create a table literal without column names embedded in the data. Ibis\n+ generates column names if none are provided.\n+\n+ >>> t = ibis.memtable([(1, \"foo\"), (2, \"baz\")])\n+ >>> t\n+ PandasInMemoryTable\n+ data:\n+ DataFrameProxy:\n+ col0 col1\n+ 0 1 foo\n+ 1 2 baz\n \"\"\"\n if columns is not None and schema is not None:\n raise NotImplementedError(\n"}
test: make enqueue links tests more stable
55182cec06bd6d70dfd3c87457fd28f4e3029402
test
https://github.com/Hardeepex/crawlee/commit/55182cec06bd6d70dfd3c87457fd28f4e3029402
make enqueue links tests more stable
{"main.js": "@@ -26,5 +26,5 @@ await Actor.main(async () => {\n },\n });\n \n- await crawler.run(['https://apify.com/about']);\n+ await crawler.run(['https://apify.com/press-kit', 'https://apify.com/about']);\n }, mainOptions);\n"}
chore(release): v6.1.11 [skip ci]
43fd97e9bb68135d3d9e8648d130baa50aec9125
chore
https://github.com/mikro-orm/mikro-orm/commit/43fd97e9bb68135d3d9e8648d130baa50aec9125
v6.1.11 [skip ci]
{"CHANGELOG.md": "@@ -3,6 +3,14 @@\n All notable changes to this project will be documented in this file.\n See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n \n+## [6.1.11](https://github.com/mikro-orm/mikro-orm/compare/v6.1.10...v6.1.11) (2024-03-18)\n+\n+**Note:** Version bump only for package @mikro-orm/sqlite\n+\n+\n+\n+\n+\n ## [6.1.10](https://github.com/mikro-orm/mikro-orm/compare/v6.1.9...v6.1.10) (2024-03-14)\n \n **Note:** Version bump only for package @mikro-orm/sqlite\n", "lerna.json": "@@ -2,7 +2,7 @@\n \"packages\": [\n \"packages/*\"\n ],\n- \"version\": \"6.1.10\",\n+ \"version\": \"6.1.11\",\n \"command\": {\n \"version\": {\n \"conventionalCommits\": true,\n", "package.json": "@@ -1,6 +1,6 @@\n {\n \"name\": \"@mikro-orm/sqlite\",\n- \"version\": \"6.1.10\",\n+ \"version\": \"6.1.11\",\n \"description\": \"TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.\",\n \"main\": \"dist/index.js\",\n \"module\": \"dist/index.mjs\",\n@@ -58,13 +58,13 @@\n \"access\": \"public\"\n },\n \"dependencies\": {\n- \"@mikro-orm/knex\": \"6.1.10\",\n+ \"@mikro-orm/knex\": \"^6.1.11\",\n \"fs-extra\": \"11.2.0\",\n \"sqlite3\": \"5.1.7\",\n \"sqlstring-sqlite\": \"0.1.1\"\n },\n \"devDependencies\": {\n- \"@mikro-orm/core\": \"^6.1.10\"\n+ \"@mikro-orm/core\": \"^6.1.11\"\n },\n \"peerDependencies\": {\n \"@mikro-orm/core\": \"^6.0.0\"\n", "yarn.lock": "Binary files a/yarn.lock and b/yarn.lock differ\n"}
build(macos): update optional mimalloc patch
34e64954d4c26d4a35ef72c697271e334a99d379
build
https://github.com/ibis-project/ibis/commit/34e64954d4c26d4a35ef72c697271e334a99d379
update optional mimalloc patch
{"datafusion-macos.patch": "@@ -1,147 +1,369 @@\n diff --git a/Cargo.lock b/Cargo.lock\n-index d73083f..489f301 100644\n+index e71932b..37f6b15 100644\n --- a/Cargo.lock\n +++ b/Cargo.lock\n-@@ -277,9 +277,9 @@ dependencies = [\n+@@ -14,7 +14,7 @@ version = \"0.7.6\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+ checksum = \"fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47\"\n+ dependencies = [\n+- \"getrandom 0.2.6\",\n++ \"getrandom 0.2.7\",\n+ \"once_cell\",\n+ \"version_check\",\n+ ]\n+@@ -83,9 +83,9 @@ dependencies = [\n \n [[package]]\n- name = \"datafusion\"\n--version = \"7.0.0\"\n-+version = \"7.1.0\"\n+ name = \"async-trait\"\n+-version = \"0.1.53\"\n++version = \"0.1.56\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"30cf8e6735817bb021748d72cecc33e468d8775bf749470c52aa7f55ee5cdf9e\"\n-+checksum = \"79a0ea0a500cbfb6b683ad8cc6f403faa7c897432cc8ad0da40c09a9a705255f\"\n+-checksum = \"ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600\"\n++checksum = \"96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716\"\n dependencies = [\n- \"ahash\",\n- \"arrow\",\n-@@ -384,9 +384,9 @@ dependencies = [\n+ \"proc-macro2\",\n+ \"quote\",\n+@@ -291,7 +291,7 @@ dependencies = [\n+ \"datafusion-physical-expr\",\n+ \"datafusion-row\",\n+ \"futures\",\n+- \"hashbrown 0.12.1\",\n++ \"hashbrown\",\n+ \"lazy_static\",\n+ \"log\",\n+ \"num_cpus\",\n+@@ -307,7 +307,7 @@ dependencies = [\n+ \"tempfile\",\n+ \"tokio\",\n+ \"tokio-stream\",\n+- \"uuid 1.0.0\",\n++ \"uuid 1.1.2\",\n+ ]\n+ \n+ [[package]]\n+@@ -364,7 +364,7 @@ dependencies = [\n+ \"datafusion-common\",\n+ \"datafusion-expr\",\n+ \"datafusion-row\",\n+- \"hashbrown 0.12.1\",\n++ \"hashbrown\",\n+ \"lazy_static\",\n+ \"md-5\",\n+ \"ordered-float 3.0.0\",\n+@@ -434,13 +434,11 @@ dependencies = [\n \n [[package]]\n name = \"flate2\"\n--version = \"1.0.22\"\n-+version = \"1.0.23\"\n+-version = \"1.0.23\"\n++version = \"1.0.24\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f\"\n-+checksum = \"b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af\"\n+-checksum = \"b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af\"\n++checksum = \"f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6\"\n dependencies = [\n- \"cfg-if\",\n+- \"cfg-if\",\n \"crc32fast\",\n-@@ -701,9 +701,9 @@ dependencies = [\n+- \"libc\",\n+ \"miniz_oxide\",\n+ ]\n+ \n+@@ -556,13 +554,13 @@ dependencies = [\n \n [[package]]\n- name = \"libc\"\n--version = \"0.2.121\"\n-+version = \"0.2.124\"\n+ name = \"getrandom\"\n+-version = \"0.2.6\"\n++version = \"0.2.7\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f\"\n-+checksum = \"21a41fed9d98f27ab1c6d161da622a4fa35e8a54a8adc24bbf3ddd0ef70b0e50\"\n+-checksum = \"9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad\"\n++checksum = \"4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6\"\n+ dependencies = [\n+ \"cfg-if\",\n+ \"libc\",\n+- \"wasi 0.10.2+wasi-snapshot-preview1\",\n++ \"wasi 0.11.0+wasi-snapshot-preview1\",\n+ ]\n+ \n+ [[package]]\n+@@ -577,12 +575,6 @@ version = \"1.8.2\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+ checksum = \"eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7\"\n \n+-[[package]]\n+-name = \"hashbrown\"\n+-version = \"0.11.2\"\n+-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e\"\n+-\n [[package]]\n- name = \"libmimalloc-sys\"\n-@@ -779,12 +779,11 @@ dependencies = [\n+ name = \"hashbrown\"\n+ version = \"0.12.1\"\n+@@ -618,12 +610,12 @@ checksum = \"7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70\"\n+ \n+ [[package]]\n+ name = \"indexmap\"\n+-version = \"1.8.1\"\n++version = \"1.9.0\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee\"\n++checksum = \"6c6392766afd7964e2531940894cffe4bd8d7d17dbc3c1c4857040fd4b33bdb3\"\n+ dependencies = [\n+ \"autocfg\",\n+- \"hashbrown 0.11.2\",\n++ \"hashbrown\",\n+ ]\n+ \n+ [[package]]\n+@@ -676,9 +668,9 @@ checksum = \"e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646\"\n+ \n+ [[package]]\n+ name = \"lexical-core\"\n+-version = \"0.8.3\"\n++version = \"0.8.5\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"92912c4af2e7d9075be3e5e3122c4d7263855fa6cce34fbece4dd08e5884624d\"\n++checksum = \"2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46\"\n+ dependencies = [\n+ \"lexical-parse-float\",\n+ \"lexical-parse-integer\",\n+@@ -689,9 +681,9 @@ dependencies = [\n+ \n+ [[package]]\n+ name = \"lexical-parse-float\"\n+-version = \"0.8.3\"\n++version = \"0.8.5\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"f518eed87c3be6debe6d26b855c97358d8a11bf05acec137e5f53080f5ad2dd8\"\n++checksum = \"683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f\"\n+ dependencies = [\n+ \"lexical-parse-integer\",\n+ \"lexical-util\",\n+@@ -700,9 +692,9 @@ dependencies = [\n+ \n+ [[package]]\n+ name = \"lexical-parse-integer\"\n+-version = \"0.8.3\"\n++version = \"0.8.6\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"afc852ec67c6538bbb2b9911116a385b24510e879a69ab516e6a151b15a79168\"\n++checksum = \"6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9\"\n+ dependencies = [\n+ \"lexical-util\",\n+ \"static_assertions\",\n+@@ -710,18 +702,18 @@ dependencies = [\n+ \n+ [[package]]\n+ name = \"lexical-util\"\n+-version = \"0.8.3\"\n++version = \"0.8.5\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"c72a9d52c5c4e62fa2cdc2cb6c694a39ae1382d9c2a17a466f18e272a0930eb1\"\n++checksum = \"5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc\"\n+ dependencies = [\n+ \"static_assertions\",\n+ ]\n+ \n+ [[package]]\n+ name = \"lexical-write-float\"\n+-version = \"0.8.4\"\n++version = \"0.8.5\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"8a89ec1d062e481210c309b672f73a0567b7855f21e7d2fae636df44d12e97f9\"\n++checksum = \"accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862\"\n+ dependencies = [\n+ \"lexical-util\",\n+ \"lexical-write-integer\",\n+@@ -730,9 +722,9 @@ dependencies = [\n+ \n+ [[package]]\n+ name = \"lexical-write-integer\"\n+-version = \"0.8.3\"\n++version = \"0.8.5\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"094060bd2a7c2ff3a16d5304a6ae82727cb3cc9d1c70f813cc73f744c319337e\"\n++checksum = \"e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446\"\n+ dependencies = [\n+ \"lexical-util\",\n+ \"static_assertions\",\n+@@ -818,9 +810,9 @@ dependencies = [\n \n [[package]]\n name = \"miniz_oxide\"\n--version = \"0.4.4\"\n-+version = \"0.5.1\"\n+-version = \"0.5.1\"\n++version = \"0.5.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b\"\n-+checksum = \"d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082\"\n+-checksum = \"d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082\"\n++checksum = \"6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc\"\n dependencies = [\n \"adler\",\n-- \"autocfg\",\n ]\n+@@ -933,9 +925,9 @@ dependencies = [\n+ \n+ [[package]]\n+ name = \"once_cell\"\n+-version = \"1.10.0\"\n++version = \"1.12.0\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9\"\n++checksum = \"7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225\"\n \n [[package]]\n-@@ -1047,18 +1046,18 @@ checksum = \"dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5\"\n+ name = \"ordered-float\"\n+@@ -957,9 +949,9 @@ dependencies = [\n \n [[package]]\n- name = \"proc-macro2\"\n--version = \"1.0.36\"\n-+version = \"1.0.37\"\n+ name = \"parking_lot\"\n+-version = \"0.12.0\"\n++version = \"0.12.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029\"\n-+checksum = \"ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1\"\n+-checksum = \"87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58\"\n++checksum = \"3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f\"\n dependencies = [\n- \"unicode-xid\",\n+ \"lock_api\",\n+ \"parking_lot_core\",\n+@@ -1169,7 +1161,7 @@ version = \"0.6.3\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+ checksum = \"d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7\"\n+ dependencies = [\n+- \"getrandom 0.2.6\",\n++ \"getrandom 0.2.7\",\n ]\n \n [[package]]\n- name = \"pyo3\"\n--version = \"0.15.1\"\n-+version = \"0.15.2\"\n+@@ -1192,9 +1184,9 @@ dependencies = [\n+ \n+ [[package]]\n+ name = \"regex\"\n+-version = \"1.5.5\"\n++version = \"1.5.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"7cf01dbf1c05af0a14c7779ed6f3aa9deac9c3419606ac9de537a2d649005720\"\n-+checksum = \"d41d50a7271e08c7c8a54cd24af5d62f73ee3a6f6a314215281ebdec421d5752\"\n+-checksum = \"1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286\"\n++checksum = \"d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1\"\n dependencies = [\n- \"cfg-if\",\n- \"indoc\",\n-@@ -1072,18 +1071,18 @@ dependencies = [\n+ \"aho-corasick\",\n+ \"memchr\",\n+@@ -1209,9 +1201,9 @@ checksum = \"6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132\"\n+ \n+ [[package]]\n+ name = \"regex-syntax\"\n+-version = \"0.6.25\"\n++version = \"0.6.26\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b\"\n++checksum = \"49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64\"\n+ \n+ [[package]]\n+ name = \"remove_dir_all\"\n+@@ -1340,9 +1332,9 @@ checksum = \"6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601\"\n+ \n+ [[package]]\n+ name = \"syn\"\n+-version = \"1.0.95\"\n++version = \"1.0.96\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942\"\n++checksum = \"0748dd251e24453cb8717f0354206b91557e4ec8703673a4b30208f2abaf1ebf\"\n+ dependencies = [\n+ \"proc-macro2\",\n+ \"quote\",\n+@@ -1351,9 +1343,9 @@ dependencies = [\n \n [[package]]\n- name = \"pyo3-build-config\"\n--version = \"0.15.1\"\n-+version = \"0.15.2\"\n+ name = \"target-lexicon\"\n+-version = \"0.12.3\"\n++version = \"0.12.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"dbf9e4d128bfbddc898ad3409900080d8d5095c379632fbbfbb9c8cfb1fb852b\"\n-+checksum = \"779239fc40b8e18bc8416d3a37d280ca9b9fb04bda54b98037bb6748595c2410\"\n+-checksum = \"d7fa7e55043acb85fca6b3c01485a2eeb6b69c5d21002e273c79e465f43b7ac1\"\n++checksum = \"c02424087780c9b71cc96799eaeddff35af2bc513278cda5c99fc1f5d026d3c1\"\n+ \n+ [[package]]\n+ name = \"tempfile\"\n+@@ -1413,9 +1405,9 @@ dependencies = [\n+ \n+ [[package]]\n+ name = \"tokio\"\n+-version = \"1.18.2\"\n++version = \"1.19.2\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395\"\n++checksum = \"c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439\"\n dependencies = [\n+ \"num_cpus\",\n \"once_cell\",\n- ]\n+@@ -1426,9 +1418,9 @@ dependencies = [\n \n [[package]]\n- name = \"pyo3-macros\"\n--version = \"0.15.1\"\n-+version = \"0.15.2\"\n+ name = \"tokio-macros\"\n+-version = \"1.7.0\"\n++version = \"1.8.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"67701eb32b1f9a9722b4bc54b548ff9d7ebfded011c12daece7b9063be1fd755\"\n-+checksum = \"00b247e8c664be87998d8628e86f282c25066165f1f8dda66100c48202fdb93a\"\n+-checksum = \"b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7\"\n++checksum = \"9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484\"\n dependencies = [\n- \"pyo3-macros-backend\",\n+ \"proc-macro2\",\n \"quote\",\n-@@ -1092,9 +1091,9 @@ dependencies = [\n+@@ -1437,9 +1429,9 @@ dependencies = [\n \n [[package]]\n- name = \"pyo3-macros-backend\"\n--version = \"0.15.1\"\n-+version = \"0.15.2\"\n+ name = \"tokio-stream\"\n+-version = \"0.1.8\"\n++version = \"0.1.9\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"f44f09e825ee49a105f2c7b23ebee50886a9aee0746f4dd5a704138a64b0218a\"\n-+checksum = \"5a8c2812c412e00e641d99eeb79dd478317d981d938aa60325dfa7157b607095\"\n+-checksum = \"50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3\"\n++checksum = \"df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9\"\n dependencies = [\n- \"proc-macro2\",\n- \"pyo3-build-config\",\n-@@ -1104,9 +1103,9 @@ dependencies = [\n+ \"futures-core\",\n+ \"pin-project-lite\",\n+@@ -1454,9 +1446,9 @@ checksum = \"dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987\"\n+ \n+ [[package]]\n+ name = \"unicode-ident\"\n+-version = \"1.0.0\"\n++version = \"1.0.1\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee\"\n++checksum = \"5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c\"\n \n [[package]]\n- name = \"quote\"\n--version = \"1.0.17\"\n-+version = \"1.0.18\"\n+ name = \"unicode-segmentation\"\n+@@ -1482,16 +1474,16 @@ version = \"0.8.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"632d02bff7f874a36f33ea8bb416cd484b90cc66c1194b1a1110d067a7013f58\"\n-+checksum = \"a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1\"\n+ checksum = \"bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7\"\n dependencies = [\n- \"proc-macro2\",\n+- \"getrandom 0.2.6\",\n++ \"getrandom 0.2.7\",\n ]\n-@@ -1341,9 +1340,9 @@ checksum = \"6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601\"\n \n [[package]]\n- name = \"syn\"\n--version = \"1.0.90\"\n-+version = \"1.0.91\"\n+ name = \"uuid\"\n+-version = \"1.0.0\"\n++version = \"1.1.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n--checksum = \"704df27628939572cd88d33f171cd6f896f4eaca85252c6e0a72d8d8287ee86f\"\n-+checksum = \"b683b2b825c8eef438b77c36a06dc262294da3d5a5813fac20da149241dcd44d\"\n+-checksum = \"8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0\"\n++checksum = \"dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f\"\n dependencies = [\n- \"proc-macro2\",\n- \"quote\",\n+- \"getrandom 0.2.6\",\n++ \"getrandom 0.2.7\",\n+ ]\n+ \n+ [[package]]\n+@@ -1508,9 +1500,9 @@ checksum = \"cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519\"\n+ \n+ [[package]]\n+ name = \"wasi\"\n+-version = \"0.10.2+wasi-snapshot-preview1\"\n++version = \"0.11.0+wasi-snapshot-preview1\"\n+ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+-checksum = \"fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6\"\n++checksum = \"9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423\"\n+ \n+ [[package]]\n+ name = \"winapi\"\n diff --git a/Cargo.toml b/Cargo.toml\n-index ba2f337..40cba00 100644\n+index 3d1a98c..4b7e6fd 100644\n --- a/Cargo.toml\n +++ b/Cargo.toml\n-@@ -35,7 +35,7 @@ datafusion = { version = \"^7.0.0\", features = [\"pyarrow\"] }\n- datafusion-expr = { version = \"^7.0.0\" }\n- datafusion-common = { version = \"^7.0.0\", features = [\"pyarrow\"] }\n+@@ -35,7 +35,7 @@ datafusion = { version = \"^8.0.0\", features = [\"pyarrow\"] }\n+ datafusion-expr = { version = \"^8.0.0\" }\n+ datafusion-common = { version = \"^8.0.0\", features = [\"pyarrow\"] }\n uuid = { version = \"0.8\", features = [\"v4\"] }\n -mimalloc = { version = \"*\", default-features = false }\n +mimalloc = { version = \"*\", optional = true, default-features = false }\n@@ -149,7 +371,7 @@ index ba2f337..40cba00 100644\n [lib]\n name = \"datafusion_python\"\n diff --git a/src/lib.rs b/src/lib.rs\n-index 977d9e8..ca1cd17 100644\n+index 7ad12cc..25b63e8 100644\n --- a/src/lib.rs\n +++ b/src/lib.rs\n @@ -15,6 +15,7 @@\n"}
test(snowflake): fix failing big timestamp tests
1f51910a2947724e1ec4099edaffce35a0eb05e6
test
https://github.com/ibis-project/ibis/commit/1f51910a2947724e1ec4099edaffce35a0eb05e6
fix failing big timestamp tests
{"test_temporal.py": "@@ -937,7 +937,6 @@ def test_integer_cast_to_timestamp_scalar(alltypes, df):\n [\"pyspark\"],\n reason=\"PySpark doesn't handle big timestamps\",\n )\[email protected]([\"snowflake\"])\n @pytest.mark.notimpl([\"bigquery\"], reason=\"bigquery returns a datetime with a timezone\")\n def test_big_timestamp(con):\n # TODO: test with a timezone\n@@ -993,11 +992,6 @@ def test_timestamp_date_comparison(backend, alltypes, df, left_fn, right_fn):\n \n \n @pytest.mark.broken([\"clickhouse\"], reason=\"returns incorrect results\")\[email protected](\n- [\"snowflake\"],\n- reason=\"ibis returns a string for the timestamp, only for snowflake\",\n- raises=TypeError,\n-)\n @pytest.mark.notimpl([\"polars\", \"datafusion\", \"pyspark\"])\n def test_large_timestamp(con):\n huge_timestamp = datetime.datetime(year=4567, month=1, day=1)\n"}
build: fixing demos
3a1281b21209c26bd8623a3910c3eff9cafaa4bc
build
https://github.com/tsparticles/tsparticles/commit/3a1281b21209c26bd8623a3910c3eff9cafaa4bc
fixing demos
{"package.json": "@@ -64,6 +64,7 @@\n \"tsparticles-interaction-particles-links\": \"^2.0.5\",\n \"tsparticles-move-base\": \"^2.0.5\",\n \"tsparticles-move-parallax\": \"^2.0.5\",\n+ \"tsparticles-particles.js\": \"^2.0.5\",\n \"tsparticles-plugin-absorbers\": \"^2.0.5\",\n \"tsparticles-plugin-emitters\": \"^2.0.5\",\n \"tsparticles-plugin-polygon-mask\": \"^2.0.5\",\n"}
fix(core): expose filters in some repository methods Closes #1236
a1e1553fa96188c0ec7e2e841611cbdfa2f9b01c
fix
https://github.com/mikro-orm/mikro-orm/commit/a1e1553fa96188c0ec7e2e841611cbdfa2f9b01c
expose filters in some repository methods Closes #1236
{"EntityRepository.ts": "@@ -1,7 +1,7 @@\n import { EntityManager } from '../EntityManager';\n import { EntityData, EntityName, AnyEntity, Primary, Populate, Loaded, New, FilterQuery } from '../typings';\n import { QueryOrderMap } from '../enums';\n-import { CountOptions, FindOneOptions, FindOneOrFailOptions, FindOptions } from '../drivers/IDatabaseDriver';\n+import { CountOptions, DeleteOptions, FindOneOptions, FindOneOrFailOptions, FindOptions, UpdateOptions } from '../drivers/IDatabaseDriver';\n import { IdentifiedReference, Reference } from './Reference';\n \n export class EntityRepository<T extends AnyEntity<T>> {\n@@ -177,15 +177,15 @@ export class EntityRepository<T extends AnyEntity<T>> {\n /**\n * Fires native update query. Calling this has no side effects on the context (identity map).\n */\n- async nativeUpdate(where: FilterQuery<T>, data: EntityData<T>): Promise<number> {\n- return this.em.nativeUpdate(this.entityName, where, data);\n+ async nativeUpdate(where: FilterQuery<T>, data: EntityData<T>, options?: UpdateOptions<T>): Promise<number> {\n+ return this.em.nativeUpdate(this.entityName, where, data, options);\n }\n \n /**\n * Fires native delete query. Calling this has no side effects on the context (identity map).\n */\n- async nativeDelete(where: FilterQuery<T> | any): Promise<number> {\n- return this.em.nativeDelete(this.entityName, where);\n+ async nativeDelete(where: FilterQuery<T>, options?: DeleteOptions<T>): Promise<number> {\n+ return this.em.nativeDelete(this.entityName, where, options);\n }\n \n /**\n", "EntityRepository.test.ts": "@@ -77,9 +77,9 @@ describe('EntityRepository', () => {\n await repo.nativeInsert({ name: 'bar' });\n expect(methods.nativeInsert.mock.calls[0]).toEqual([Publisher, { name: 'bar' }]);\n await repo.nativeUpdate({ name: 'bar' }, { name: 'baz' });\n- expect(methods.nativeUpdate.mock.calls[0]).toEqual([Publisher, { name: 'bar' }, { name: 'baz' }]);\n+ expect(methods.nativeUpdate.mock.calls[0]).toEqual([Publisher, { name: 'bar' }, { name: 'baz' }, undefined]);\n await repo.nativeDelete({ name: 'bar' });\n- expect(methods.nativeDelete.mock.calls[0]).toEqual([Publisher, { name: 'bar' }]);\n+ expect(methods.nativeDelete.mock.calls[0]).toEqual([Publisher, { name: 'bar' }, undefined]);\n await repoMongo.aggregate([{ name: 'bar' }]);\n expect(methods.aggregate.mock.calls[0]).toEqual([Publisher, [{ name: 'bar' }]]);\n });\n", "filters.postgres.test.ts": "@@ -37,7 +37,6 @@ describe('filters [postgres]', () => {\n entities: [Employee, Benefit],\n dbName: `mikro_orm_test_gh_1232`,\n type: 'postgresql',\n- debug: true,\n });\n await orm.getSchemaGenerator().ensureDatabase();\n await orm.getSchemaGenerator().dropSchema();\n"}
feat: args expansion
d433bcbcce0675fadb9c6099508987bebff93c88
feat
https://github.com/erg-lang/erg/commit/d433bcbcce0675fadb9c6099508987bebff93c88
args expansion
{"opcode309.rs": "@@ -113,8 +113,10 @@ impl_u8_enum! {Opcode309;\n BUILD_TUPLE_UNPACK_WITH_CALL = 158,\n LOAD_METHOD = 160,\n CALL_METHOD = 161,\n- CALL_FINALLY = 162,\n- POP_FINALLY = 163,\n+ LIST_EXTEND = 162,\n+ SET_UPDATE = 163,\n+ DICT_MERGE = 164,\n+ DICT_UPDATE = 165,\n // Erg-specific opcodes (must have a unary `ERG_`)\n // Define in descending order from 219, 255\n ERG_POP_NTH = 196,\n", "opcode310.rs": "@@ -111,6 +111,9 @@ impl_u8_enum! {Opcode310;\n LOAD_METHOD = 160,\n CALL_METHOD = 161,\n LIST_EXTEND = 162,\n+ SET_UPDATE = 163,\n+ DICT_MERGE = 164,\n+ DICT_UPDATE = 165,\n // Erg-specific opcodes (must have a unary `ERG_`)\n // Define in descending order from 219, 255\n ERG_POP_NTH = 196,\n", "opcode311.rs": "@@ -101,6 +101,9 @@ impl_u8_enum! {Opcode311;\n BUILD_STRING = 157,\n LOAD_METHOD = 160,\n LIST_EXTEND = 162,\n+ SET_UPDATE = 163,\n+ DICT_MERGE = 164,\n+ DICT_UPDATE = 165,\n PRECALL = 166,\n CALL = 171,\n KW_NAMES = 172,\n", "codegen.rs": "@@ -609,7 +609,7 @@ impl PyCodeGenerator {\n }\n \n fn stack_dec_n(&mut self, n: usize) {\n- if n > 0 && self.stack_len() == 0 {\n+ if n as u32 > self.stack_len() {\n let lasti = self.lasti();\n let last = self.cur_block_codeobj().code.last().unwrap();\n self.crash(&format!(\n@@ -2825,6 +2825,19 @@ impl PyCodeGenerator {\n self.write_instr(Opcode310::LIST_TO_TUPLE);\n self.write_arg(0);\n }\n+ self.stack_dec();\n+ }\n+\n+ fn emit_kw_var_args_311(&mut self, pos_len: usize, kw_var: &PosArg) {\n+ self.write_instr(BUILD_TUPLE);\n+ self.write_arg(pos_len);\n+ self.stack_dec_n(pos_len.saturating_sub(1));\n+ self.write_instr(BUILD_MAP);\n+ self.write_arg(0);\n+ self.emit_expr(kw_var.expr.clone());\n+ self.write_instr(Opcode311::DICT_MERGE);\n+ self.write_arg(1);\n+ self.stack_dec();\n }\n \n fn emit_var_args_308(&mut self, pos_len: usize, var_args: &PosArg) {\n@@ -2839,6 +2852,14 @@ impl PyCodeGenerator {\n }\n }\n \n+ fn emit_kw_var_args_308(&mut self, pos_len: usize, kw_var: &PosArg) {\n+ self.write_instr(BUILD_TUPLE);\n+ self.write_arg(pos_len);\n+ self.emit_expr(kw_var.expr.clone());\n+ self.stack_dec_n(pos_len.saturating_sub(1));\n+ self.stack_dec();\n+ }\n+\n fn emit_args_311(&mut self, mut args: Args, kind: AccessKind) {\n let argc = args.len();\n let pos_len = args.pos_args.len();\n@@ -2857,6 +2878,13 @@ impl PyCodeGenerator {\n kws.push(ValueObj::Str(arg.keyword.content));\n self.emit_expr(arg.expr);\n }\n+ if let Some(kw_var) = &args.kw_var {\n+ if self.py_version.minor >= Some(10) {\n+ self.emit_kw_var_args_311(pos_len, kw_var);\n+ } else {\n+ self.emit_kw_var_args_308(pos_len, kw_var);\n+ }\n+ }\n let kwsc = if !kws.is_empty() {\n self.emit_call_kw_instr(argc, kws);\n #[allow(clippy::bool_to_int_with_if)]\n@@ -2866,9 +2894,9 @@ impl PyCodeGenerator {\n 1\n }\n } else {\n- if args.var_args.is_some() {\n+ if args.var_args.is_some() || args.kw_var.is_some() {\n self.write_instr(CALL_FUNCTION_EX);\n- if kws.is_empty() {\n+ if kws.is_empty() && args.kw_var.is_none() {\n self.write_arg(0);\n } else {\n self.write_arg(1);\n", "inquire.rs": "@@ -1081,12 +1081,14 @@ impl Context {\n }\n \n // returns callee's type, not the return type\n+ #[allow(clippy::too_many_arguments)]\n fn search_callee_info(\n &self,\n obj: &hir::Expr,\n attr_name: &Option<Identifier>,\n pos_args: &[hir::PosArg],\n kw_args: &[hir::KwArg],\n+ (var_args, kw_var_args): (Option<&hir::PosArg>, Option<&hir::PosArg>),\n input: &Input,\n namespace: &Context,\n ) -> SingleTyCheckResult<VarInfo> {\n@@ -1107,10 +1109,24 @@ impl Context {\n if let Some(attr_name) = attr_name.as_ref() {\n let mut vi =\n self.search_method_info(obj, attr_name, pos_args, kw_args, input, namespace)?;\n- vi.t = self.resolve_overload(obj, vi.t, pos_args, kw_args, attr_name)?;\n+ vi.t = self.resolve_overload(\n+ obj,\n+ vi.t,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ attr_name,\n+ )?;\n Ok(vi)\n } else {\n- let t = self.resolve_overload(obj, obj.t(), pos_args, kw_args, obj)?;\n+ let t = self.resolve_overload(\n+ obj,\n+ obj.t(),\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ obj,\n+ )?;\n Ok(VarInfo {\n t,\n ..VarInfo::default()\n@@ -1155,6 +1171,7 @@ impl Context {\n instance: Type,\n pos_args: &[hir::PosArg],\n kw_args: &[hir::KwArg],\n+ (var_args, kw_var_args): (Option<&hir::PosArg>, Option<&hir::PosArg>),\n loc: &impl Locational,\n ) -> SingleTyCheckResult<Type> {\n let intersecs = instance.intersection_types();\n@@ -1195,7 +1212,15 @@ impl Context {\n if self.subtype_of(ty, &input_t) {\n if let Ok(instance) = self.instantiate(ty.clone(), obj) {\n let subst = self\n- .substitute_call(obj, &None, &instance, pos_args, kw_args, self)\n+ .substitute_call(\n+ obj,\n+ &None,\n+ &instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ self,\n+ )\n .is_ok();\n let eval = self.eval_t_params(instance, self.level, obj).is_ok();\n if subst && eval {\n@@ -1641,7 +1666,7 @@ impl Context {\n )\n })?;\n let op = hir::Expr::Accessor(hir::Accessor::private(symbol, t));\n- self.get_call_t(&op, &None, args, &[], input, namespace)\n+ self.get_call_t(&op, &None, args, &[], (None, None), input, namespace)\n .map_err(|(_, errs)| {\n let hir::Expr::Accessor(hir::Accessor::Ident(op_ident)) = op else {\n return errs;\n@@ -1695,7 +1720,7 @@ impl Context {\n )\n })?;\n let op = hir::Expr::Accessor(hir::Accessor::private(symbol, vi));\n- self.get_call_t(&op, &None, args, &[], input, namespace)\n+ self.get_call_t(&op, &None, args, &[], (None, None), input, namespace)\n .map_err(|(_, errs)| {\n let hir::Expr::Accessor(hir::Accessor::Ident(op_ident)) = op else {\n return errs;\n@@ -1787,6 +1812,7 @@ impl Context {\n /// \u2193 don't substitute `Int` to `self`\n /// substitute_call(obj: Int, instance: ((self: Int, other: Int) -> Int), [1, 2]) => instance: (Int, Int) -> Int\n /// ```\n+ #[allow(clippy::too_many_arguments)]\n fn substitute_call(\n &self,\n obj: &hir::Expr,\n@@ -1794,6 +1820,7 @@ impl Context {\n instance: &Type,\n pos_args: &[hir::PosArg],\n kw_args: &[hir::KwArg],\n+ (var_args, kw_var_args): (Option<&hir::PosArg>, Option<&hir::PosArg>),\n namespace: &Context,\n ) -> TyCheckResult<SubstituteResult> {\n match instance {\n@@ -1803,6 +1830,7 @@ impl Context {\n fv.unsafe_crack(),\n pos_args,\n kw_args,\n+ (var_args, kw_var_args),\n namespace,\n ),\n Type::FreeVar(fv) => {\n@@ -1816,12 +1844,24 @@ impl Context {\n if instance.is_quantified_subr() {\n let instance = self.instantiate(instance.clone(), obj)?;\n self.substitute_call(\n- obj, attr_name, &instance, pos_args, kw_args, namespace,\n+ obj,\n+ attr_name,\n+ &instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n )?;\n return Ok(SubstituteResult::Coerced(instance));\n } else if get_hash(instance) != hash {\n return self.substitute_call(\n- obj, attr_name, instance, pos_args, kw_args, namespace,\n+ obj,\n+ attr_name,\n+ instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n );\n }\n }\n@@ -1852,17 +1892,36 @@ impl Context {\n Ok(SubstituteResult::Ok)\n }\n }\n- Type::Refinement(refine) => {\n- self.substitute_call(obj, attr_name, &refine.t, pos_args, kw_args, namespace)\n- }\n+ Type::Refinement(refine) => self.substitute_call(\n+ obj,\n+ attr_name,\n+ &refine.t,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n+ ),\n // instance must be instantiated\n Type::Quantified(_) => unreachable_error!(TyCheckErrors, TyCheckError, self),\n Type::Subr(subr) => {\n- let res = self.substitute_subr_call(obj, attr_name, subr, pos_args, kw_args);\n+ let res = self.substitute_subr_call(\n+ obj,\n+ attr_name,\n+ subr,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ );\n // TODO: change polymorphic type syntax\n if res.is_err() && subr.return_t.is_class_type() {\n self.substitute_dunder_call(\n- obj, attr_name, instance, pos_args, kw_args, namespace,\n+ obj,\n+ attr_name,\n+ instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n )\n .or(res)\n } else {\n@@ -1870,14 +1929,34 @@ impl Context {\n }\n }\n Type::And(_, _) => {\n- let instance =\n- self.resolve_overload(obj, instance.clone(), pos_args, kw_args, &obj)?;\n- self.substitute_call(obj, attr_name, &instance, pos_args, kw_args, namespace)\n+ let instance = self.resolve_overload(\n+ obj,\n+ instance.clone(),\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ &obj,\n+ )?;\n+ self.substitute_call(\n+ obj,\n+ attr_name,\n+ &instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n+ )\n }\n Type::Failure => Ok(SubstituteResult::Ok),\n- _ => {\n- self.substitute_dunder_call(obj, attr_name, instance, pos_args, kw_args, namespace)\n- }\n+ _ => self.substitute_dunder_call(\n+ obj,\n+ attr_name,\n+ instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n+ ),\n }\n }\n \n@@ -1888,6 +1967,7 @@ impl Context {\n subr: &SubrType,\n pos_args: &[hir::PosArg],\n kw_args: &[hir::KwArg],\n+ (var_args, kw_var_args): (Option<&hir::PosArg>, Option<&hir::PosArg>),\n ) -> TyCheckResult<SubstituteResult> {\n let mut errs = TyCheckErrors::empty();\n // method: obj: 1, subr: (self: Int, other: Int) -> Int\n@@ -1911,7 +1991,10 @@ impl Context {\n } else {\n subr.non_default_params.len() + subr.default_params.len()\n };\n- if (params_len < pos_args.len() || params_len < pos_args.len() + kw_args.len())\n+ let there_var = var_args.is_some() || kw_var_args.is_some();\n+ if (params_len < pos_args.len()\n+ || params_len < pos_args.len() + kw_args.len()\n+ || (params_len == pos_args.len() + kw_args.len() && there_var))\n && subr.is_no_var()\n {\n return Err(self.gen_too_many_args_error(&callee, subr, is_method, pos_args, kw_args));\n@@ -2047,7 +2130,59 @@ impl Context {\n .into()\n })\n .collect::<Vec<_>>();\n- if !missing_params.is_empty() {\n+ if let Some(var_args) = var_args {\n+ if !self.subtype_of(\n+ var_args.expr.ref_t(),\n+ &poly(\"Iterable\", vec![TyParam::t(Obj)]),\n+ ) {\n+ let err = TyCheckError::type_mismatch_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ var_args.loc(),\n+ self.caused_by(),\n+ \"_\",\n+ None,\n+ &poly(\"Iterable\", vec![TyParam::t(Obj)]),\n+ var_args.expr.ref_t(),\n+ None,\n+ None,\n+ );\n+ errs.push(err);\n+ }\n+ }\n+ if let Some(kw_var_args) = kw_var_args {\n+ if !self.subtype_of(\n+ kw_var_args.expr.ref_t(),\n+ &poly(\"Mapping\", vec![TyParam::t(Obj), TyParam::t(Obj)]),\n+ ) {\n+ let err = TyCheckError::type_mismatch_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ kw_var_args.loc(),\n+ self.caused_by(),\n+ \"_\",\n+ None,\n+ &poly(\"Mapping\", vec![TyParam::t(Obj), TyParam::t(Obj)]),\n+ kw_var_args.expr.ref_t(),\n+ None,\n+ None,\n+ );\n+ errs.push(err);\n+ }\n+ }\n+ if missing_params.is_empty() && (var_args.is_some() || kw_var_args.is_some()) {\n+ return Err(TyCheckErrors::from(TyCheckError::too_many_args_error(\n+ self.cfg.input.clone(),\n+ line!() as usize,\n+ callee.loc(),\n+ &callee.to_string(),\n+ self.caused_by(),\n+ params_len,\n+ pos_args.len(),\n+ kw_args.len(),\n+ )));\n+ }\n+ if !missing_params.is_empty() && var_args.is_none() && kw_var_args.is_none() {\n return Err(TyCheckErrors::from(TyCheckError::args_missing_error(\n self.cfg.input.clone(),\n line!() as usize,\n@@ -2068,6 +2203,7 @@ impl Context {\n }\n }\n \n+ #[allow(clippy::too_many_arguments)]\n fn substitute_dunder_call(\n &self,\n obj: &hir::Expr,\n@@ -2075,6 +2211,7 @@ impl Context {\n instance: &Type,\n pos_args: &[hir::PosArg],\n kw_args: &[hir::KwArg],\n+ (var_args, kw_var_args): (Option<&hir::PosArg>, Option<&hir::PosArg>),\n namespace: &Context,\n ) -> TyCheckResult<SubstituteResult> {\n let ctxs = self\n@@ -2121,9 +2258,15 @@ impl Context {\n )?;\n }\n let instance = self.instantiate_def_type(&call_vi.t)?;\n- let instance = match self\n- .substitute_call(obj, attr_name, &instance, pos_args, kw_args, namespace)?\n- {\n+ let instance = match self.substitute_call(\n+ obj,\n+ attr_name,\n+ &instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n+ )? {\n SubstituteResult::__Call__(instance)\n | SubstituteResult::Coerced(instance) => instance,\n SubstituteResult::Ok => instance,\n@@ -2138,9 +2281,15 @@ impl Context {\n })\n {\n let instance = self.instantiate_def_type(&call_vi.t)?;\n- let instance = match self\n- .substitute_call(obj, attr_name, &instance, pos_args, kw_args, namespace)?\n- {\n+ let instance = match self.substitute_call(\n+ obj,\n+ attr_name,\n+ &instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n+ )? {\n SubstituteResult::__Call__(instance) | SubstituteResult::Coerced(instance) => {\n instance\n }\n@@ -2469,12 +2618,14 @@ impl Context {\n Ok(res)\n }\n \n+ #[allow(clippy::too_many_arguments)]\n pub(crate) fn get_call_t(\n &self,\n obj: &hir::Expr,\n attr_name: &Option<Identifier>,\n pos_args: &[hir::PosArg],\n kw_args: &[hir::KwArg],\n+ (var_args, kw_var_args): (Option<&hir::PosArg>, Option<&hir::PosArg>),\n input: &Input,\n namespace: &Context,\n ) -> FailableOption<VarInfo> {\n@@ -2492,7 +2643,15 @@ impl Context {\n }\n }\n let found = self\n- .search_callee_info(obj, attr_name, pos_args, kw_args, input, namespace)\n+ .search_callee_info(\n+ obj,\n+ attr_name,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ input,\n+ namespace,\n+ )\n .map_err(|err| (None, TyCheckErrors::from(err)))?;\n log!(\n \"Found:\\ncallee: {obj}{}\\nfound: {found}\",\n@@ -2507,7 +2666,15 @@ impl Context {\n fmt_slice(kw_args)\n );\n let instance = match self\n- .substitute_call(obj, attr_name, &instance, pos_args, kw_args, namespace)\n+ .substitute_call(\n+ obj,\n+ attr_name,\n+ &instance,\n+ pos_args,\n+ kw_args,\n+ (var_args, kw_var_args),\n+ namespace,\n+ )\n .map_err(|errs| {\n (\n Some(VarInfo {\n", "hir.rs": "@@ -290,7 +290,8 @@ impl Args {\n pub fn len(&self) -> usize {\n #[allow(clippy::bool_to_int_with_if)]\n let var_argc = if self.var_args.is_none() { 0 } else { 1 };\n- self.pos_args.len() + var_argc + self.kw_args.len()\n+ let kw_var_argc = if self.kw_var.is_none() { 0 } else { 1 };\n+ self.pos_args.len() + var_argc + self.kw_args.len() + kw_var_argc\n }\n \n #[inline]\n", "lower.rs": "@@ -1409,6 +1409,7 @@ impl<A: ASTBuildable> GenericASTLowerer<A> {\n &call.attr_name,\n &hir_args.pos_args,\n &hir_args.kw_args,\n+ (hir_args.var_args.as_deref(), hir_args.kw_var.as_deref()),\n &self.cfg.input,\n &self.module.context,\n ) {\n@@ -1566,6 +1567,7 @@ impl<A: ASTBuildable> GenericASTLowerer<A> {\n &Some(attr_name.clone()),\n &args,\n &[],\n+ (None, None),\n &self.cfg.input,\n &self.module.context,\n ) {\n", "args_expansion.er": "@@ -0,0 +1,12 @@\n+foo first: Int, second: Int, third: Int = log first, second, third\n+\n+foo(*[1, 2, 3])\n+foo(1, *[2, 3])\n+foo(1, 2, *[3])\n+data = {\"first\": 1, \"second\": 2, \"third\": 3}\n+foo(**data)\n+foo(1, **{\"second\": 2, \"third\": 3})\n+# FIXME:\n+# foo(1, 2, **{\"third\": 3})\n+\n+print! \"OK\"\n", "test.rs": "@@ -16,6 +16,11 @@ fn exec_advanced_type_spec() -> Result<(), ()> {\n expect_success(\"tests/should_ok/advanced_type_spec.er\", 5)\n }\n \n+#[test]\n+fn exec_args_expansion() -> Result<(), ()> {\n+ expect_success(\"tests/should_ok/args_expansion.er\", 0)\n+}\n+\n #[test]\n fn exec_list_test() -> Result<(), ()> {\n expect_success(\"tests/should_ok/list.er\", 0)\n@@ -502,6 +507,11 @@ fn exec_args() -> Result<(), ()> {\n expect_failure(\"tests/should_err/args.er\", 0, 19)\n }\n \n+#[test]\n+fn exec_args_expansion_err() -> Result<(), ()> {\n+ expect_failure(\"tests/should_err/args_expansion.er\", 0, 4)\n+}\n+\n #[test]\n fn exec_list_err() -> Result<(), ()> {\n expect_failure(\"examples/list.er\", 0, 1)\n"}
chore: remove gdal_2 patch
e57be908b85bbc6231f9eb1f9775635b8faa1ded
chore
https://github.com/rohankumardubey/ibis/commit/e57be908b85bbc6231f9eb1f9775635b8faa1ded
remove gdal_2 patch
{"default.nix": "@@ -60,21 +60,6 @@ import sources.nixpkgs {\n '';\n };\n \n- gdal_2 = super.gdal_2.overrideAttrs (attrs: {\n- patches = (attrs.patches or [ ]) ++ [\n- (pkgs.fetchpatch {\n- url = \"https://github.com/OSGeo/gdal/commit/7a18e2669a733ebe3544e4f5c735fd4d2ded5fa3.patch\";\n- sha256 = \"sha256-rBgIxJcgRzZR1gyzDWK/Sh7MdPWeczxEYVELbYEV8JY=\";\n- relative = \"gdal\";\n- # this doesn't apply correctly because of line endings\n- excludes = [ \"third_party/LercLib/Lerc2.h\" ];\n- })\n- ];\n- # TODO: remove this when in nixos-unstable-small (the fix is merged, but not in\n- # nixos-unstable-small yet)\n- meta.broken = false;\n- });\n-\n aws-sdk-cpp = (super.aws-sdk-cpp.overrideAttrs (attrs: {\n patches = (attrs.patches or [ ]) ++ [\n # https://github.com/aws/aws-sdk-cpp/pull/1912\n"}
feat: add `attributes` feature to allow ignore-only stacks.
477a1d9089d831cd9ed81f109fc2c89333026965
feat
https://github.com/Byron/gitoxide/commit/477a1d9089d831cd9ed81f109fc2c89333026965
add `attributes` feature to allow ignore-only stacks.
{"Cargo.toml": "@@ -17,7 +17,7 @@ path = \"integrate.rs\"\n gix-features-parallel = [\"gix-features/parallel\"]\n \n [dev-dependencies]\n-gix-worktree = { path = \"..\" }\n+gix-worktree = { path = \"..\", features = [\"attributes\"] }\n gix-index = { path = \"../../gix-index\" }\n gix-fs = { path = \"../../gix-fs\" }\n gix-hash = { path = \"../../gix-hash\" }\n", "delegate.rs": "@@ -27,6 +27,7 @@ pub(crate) type FindFn<'a> = dyn for<'b> FnMut(\n pub(crate) struct StackDelegate<'a, 'find> {\n pub state: &'a mut State,\n pub buf: &'a mut Vec<u8>,\n+ #[cfg_attr(not(feature = \"attributes\"), allow(dead_code))]\n pub is_dir: bool,\n pub id_mappings: &'a Vec<PathIdMapping>,\n pub find: &'find mut FindFn<'find>,\n@@ -54,6 +55,7 @@ impl<'a, 'find> gix_fs::stack::Delegate for StackDelegate<'a, 'find> {\n rela_dir_cow.as_ref()\n };\n match &mut self.state {\n+ #[cfg(feature = \"attributes\")]\n State::CreateDirectoryAndAttributesStack { attributes, .. } => {\n attributes.push_directory(\n stack.root(),\n@@ -65,6 +67,7 @@ impl<'a, 'find> gix_fs::stack::Delegate for StackDelegate<'a, 'find> {\n &mut self.statistics.attributes,\n )?;\n }\n+ #[cfg(feature = \"attributes\")]\n State::AttributesAndIgnoreStack { ignore, attributes } => {\n attributes.push_directory(\n stack.root(),\n@@ -86,6 +89,7 @@ impl<'a, 'find> gix_fs::stack::Delegate for StackDelegate<'a, 'find> {\n &mut self.statistics.ignore,\n )?\n }\n+ #[cfg(feature = \"attributes\")]\n State::AttributesStack(attributes) => attributes.push_directory(\n stack.root(),\n stack.current(),\n@@ -109,9 +113,11 @@ impl<'a, 'find> gix_fs::stack::Delegate for StackDelegate<'a, 'find> {\n Ok(())\n }\n \n+ #[cfg_attr(not(feature = \"attributes\"), allow(unused_variables))]\n fn push(&mut self, is_last_component: bool, stack: &gix_fs::Stack) -> std::io::Result<()> {\n self.statistics.delegate.push_element += 1;\n match &mut self.state {\n+ #[cfg(feature = \"attributes\")]\n State::CreateDirectoryAndAttributesStack {\n unlink_on_collision,\n attributes: _,\n@@ -122,7 +128,9 @@ impl<'a, 'find> gix_fs::stack::Delegate for StackDelegate<'a, 'find> {\n &mut self.statistics.delegate.num_mkdir_calls,\n *unlink_on_collision,\n )?,\n- State::AttributesAndIgnoreStack { .. } | State::IgnoreStack(_) | State::AttributesStack(_) => {}\n+ #[cfg(feature = \"attributes\")]\n+ State::AttributesAndIgnoreStack { .. } | State::AttributesStack(_) => {}\n+ State::IgnoreStack(_) => {}\n }\n Ok(())\n }\n@@ -130,23 +138,27 @@ impl<'a, 'find> gix_fs::stack::Delegate for StackDelegate<'a, 'find> {\n fn pop_directory(&mut self) {\n self.statistics.delegate.pop_directory += 1;\n match &mut self.state {\n+ #[cfg(feature = \"attributes\")]\n State::CreateDirectoryAndAttributesStack { attributes, .. } => {\n attributes.pop_directory();\n }\n+ #[cfg(feature = \"attributes\")]\n State::AttributesAndIgnoreStack { attributes, ignore } => {\n attributes.pop_directory();\n ignore.pop_directory();\n }\n- State::IgnoreStack(ignore) => {\n- ignore.pop_directory();\n- }\n+ #[cfg(feature = \"attributes\")]\n State::AttributesStack(attributes) => {\n attributes.pop_directory();\n }\n+ State::IgnoreStack(ignore) => {\n+ ignore.pop_directory();\n+ }\n }\n }\n }\n \n+#[cfg(feature = \"attributes\")]\n fn create_leading_directory(\n is_last_component: bool,\n stack: &gix_fs::Stack,\n", "mod.rs": "@@ -1,15 +1,15 @@\n-use std::path::PathBuf;\n-\n use bstr::{BString, ByteSlice};\n use gix_glob::pattern::Case;\n \n use crate::{stack::State, PathIdMapping};\n \n+#[cfg(feature = \"attributes\")]\n type AttributeMatchGroup = gix_attributes::Search;\n type IgnoreMatchGroup = gix_ignore::Search;\n \n /// State related to attributes associated with files in the repository.\n #[derive(Default, Clone)]\n+#[cfg(feature = \"attributes\")]\n pub struct Attributes {\n /// Attribute patterns which aren't tied to the repository root, hence are global, they contribute first.\n globals: AttributeMatchGroup,\n@@ -20,7 +20,7 @@ pub struct Attributes {\n stack: AttributeMatchGroup,\n /// The first time we push the root, we have to load additional information from this file if it exists along with the root attributes\n /// file if possible, and keep them there throughout.\n- info_attributes: Option<PathBuf>,\n+ info_attributes: Option<std::path::PathBuf>,\n /// A lookup table to accelerate searches.\n collection: gix_attributes::search::MetadataCollection,\n /// Where to read `.gitattributes` data from.\n@@ -50,6 +50,7 @@ pub struct Ignore {\n }\n \n ///\n+#[cfg(feature = \"attributes\")]\n pub mod attributes;\n ///\n pub mod ignore;\n@@ -57,6 +58,7 @@ pub mod ignore;\n /// Initialization\n impl State {\n /// Configure a state to be suitable for checking out files, which only needs access to attribute files read from the index.\n+ #[cfg(feature = \"attributes\")]\n pub fn for_checkout(unlink_on_collision: bool, attributes: Attributes) -> Self {\n State::CreateDirectoryAndAttributesStack {\n unlink_on_collision,\n@@ -65,6 +67,7 @@ impl State {\n }\n \n /// Configure a state for adding files, with support for ignore files and attribute files.\n+ #[cfg(feature = \"attributes\")]\n pub fn for_add(attributes: Attributes, ignore: Ignore) -> Self {\n State::AttributesAndIgnoreStack { attributes, ignore }\n }\n@@ -96,6 +99,7 @@ impl State {\n case: Case,\n ) -> Vec<PathIdMapping> {\n let a1_backing;\n+ #[cfg(feature = \"attributes\")]\n let a2_backing;\n let names = match self {\n State::IgnoreStack(ignore) => {\n@@ -105,6 +109,7 @@ impl State {\n )];\n a1_backing.as_ref()\n }\n+ #[cfg(feature = \"attributes\")]\n State::AttributesAndIgnoreStack { ignore, .. } => {\n a2_backing = [\n (\n@@ -115,6 +120,7 @@ impl State {\n ];\n a2_backing.as_ref()\n }\n+ #[cfg(feature = \"attributes\")]\n State::CreateDirectoryAndAttributesStack { .. } | State::AttributesStack(_) => {\n a1_backing = [(\".gitattributes\".into(), None)];\n a1_backing.as_ref()\n@@ -160,13 +166,16 @@ impl State {\n pub(crate) fn ignore_or_panic(&self) -> &Ignore {\n match self {\n State::IgnoreStack(v) => v,\n+ #[cfg(feature = \"attributes\")]\n State::AttributesAndIgnoreStack { ignore, .. } => ignore,\n+ #[cfg(feature = \"attributes\")]\n State::AttributesStack(_) | State::CreateDirectoryAndAttributesStack { .. } => {\n unreachable!(\"BUG: must not try to check excludes without it being setup\")\n }\n }\n }\n \n+ #[cfg(feature = \"attributes\")]\n pub(crate) fn attributes_or_panic(&self) -> &Attributes {\n match self {\n State::AttributesStack(attributes)\n", "platform.rs": "@@ -40,6 +40,7 @@ impl<'a> Platform<'a> {\n /// # Panics\n ///\n /// If the cache was configured without attributes.\n+ #[cfg(feature = \"attributes\")]\n pub fn matching_attributes(&self, out: &mut gix_attributes::search::Outcome) -> bool {\n let attrs = self.parent.state.attributes_or_panic();\n let relative_path =\n"}
perf: Make formatting method calls more efficient If a value must be reused later then it's better to pass it as a &str instead of cloning it, that means the clone happens in a central place (inside the method). By never passing a &String those instances of the method are not monomorphized. Saves only 0.5K, maybe not worth it in hindsight.
d1d9f75d53fae96c779080feca2ae126ad295eed
perf
https://github.com/jquepi/clap/commit/d1d9f75d53fae96c779080feca2ae126ad295eed
Make formatting method calls more efficient If a value must be reused later then it's better to pass it as a &str instead of cloning it, that means the clone happens in a central place (inside the method). By never passing a &String those instances of the method are not monomorphized. Saves only 0.5K, maybe not worth it in hindsight.
{"help.rs": "@@ -795,8 +795,8 @@ impl<'help, 'app, 'parser, 'writer> Help<'help, 'app, 'parser, 'writer> {\n if !first {\n self.none(\"\\n\\n\")?;\n }\n- self.warning(&*format!(\"{}:\\n\", heading))?;\n- self.write_args(&*args)?;\n+ self.warning(format!(\"{}:\\n\", heading))?;\n+ self.write_args(&args)?;\n first = false\n }\n }\n", "errors.rs": "@@ -582,14 +582,14 @@ impl Error {\n }\n 1 => {\n c.none(\" '\");\n- c.warning(others[0].clone());\n+ c.warning(&*others[0]);\n c.none(\"'\");\n }\n _ => {\n c.none(\":\");\n for v in &others {\n c.none(\"\\n \");\n- c.warning(v.clone());\n+ c.warning(&**v);\n }\n }\n }\n@@ -605,7 +605,7 @@ impl Error {\n let arg = arg.to_string();\n \n start_error(&mut c, \"The argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' requires a value but none was supplied\");\n put_usage(&mut c, usage);\n try_help(app, &mut c);\n@@ -617,7 +617,7 @@ impl Error {\n let mut c = Colorizer::new(true, app.get_color());\n \n start_error(&mut c, \"Equal sign is needed when assigning values to '\");\n- c.warning(&arg);\n+ c.warning(&*arg);\n c.none(\"'.\");\n \n put_usage(&mut c, usage);\n@@ -652,7 +652,7 @@ impl Error {\n start_error(&mut c, \"\");\n c.warning(format!(\"{:?}\", bad_val));\n c.none(\" isn't a valid value for '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"'\\n\\t[possible values: \");\n \n if let Some((last, elements)) = sorted.split_last() {\n@@ -691,7 +691,7 @@ impl Error {\n let mut c = Colorizer::new(true, app.get_color());\n \n start_error(&mut c, \"The subcommand '\");\n- c.warning(subcmd.clone());\n+ c.warning(&*subcmd);\n c.none(\"' wasn't recognized\\n\\n\\tDid you mean \");\n c.good(did_you_mean);\n c.none(\"\");\n@@ -711,7 +711,7 @@ impl Error {\n let mut c = Colorizer::new(true, app.get_color());\n \n start_error(&mut c, \" The subcommand '\");\n- c.warning(subcmd.clone());\n+ c.warning(&*subcmd);\n c.none(\"' wasn't recognized\\n\\n\");\n c.warning(\"USAGE:\");\n c.none(format!(\"\\n {} <subcommands>\", name));\n@@ -734,7 +734,7 @@ impl Error {\n \n for v in &required {\n c.none(\"\\n \");\n- c.good(v.clone());\n+ c.good(&**v);\n }\n \n put_usage(&mut c, usage);\n@@ -782,11 +782,11 @@ impl Error {\n let curr_occurs = curr_occurs.to_string();\n \n start_error(&mut c, \"The argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' allows at most \");\n- c.warning(max_occurs.clone());\n+ c.warning(&*max_occurs);\n c.none(\" occurrences, but \");\n- c.warning(curr_occurs.clone());\n+ c.warning(&*curr_occurs);\n c.none(were_provided);\n put_usage(&mut c, usage);\n try_help(app, &mut c);\n@@ -803,9 +803,9 @@ impl Error {\n let mut c = Colorizer::new(true, app.get_color());\n \n start_error(&mut c, \"The value '\");\n- c.warning(val.clone());\n+ c.warning(&*val);\n c.none(\"' was provided to '\");\n- c.warning(&arg);\n+ c.warning(&*arg);\n c.none(\"' but it wasn't expecting any more values\");\n put_usage(&mut c, usage);\n try_help(app, &mut c);\n@@ -827,11 +827,11 @@ impl Error {\n let curr_vals = curr_vals.to_string();\n \n start_error(&mut c, \"The argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' requires at least \");\n- c.warning(min_vals.clone());\n+ c.warning(&*min_vals);\n c.none(\" values, but only \");\n- c.warning(curr_vals.clone());\n+ c.warning(&*curr_vals);\n c.none(were_provided);\n put_usage(&mut c, usage);\n try_help(app, &mut c);\n@@ -895,7 +895,7 @@ impl Error {\n start_error(&mut c, \"Invalid value\");\n \n c.none(\" for '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"'\");\n \n c.none(format!(\": {}\", err));\n@@ -919,11 +919,11 @@ impl Error {\n let curr_vals = curr_vals.to_string();\n \n start_error(&mut c, \"The argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' requires \");\n- c.warning(num_vals.clone());\n+ c.warning(&*num_vals);\n c.none(\" values, but \");\n- c.warning(curr_vals.clone());\n+ c.warning(&*curr_vals);\n c.none(were_provided);\n put_usage(&mut c, usage);\n try_help(app, &mut c);\n@@ -941,7 +941,7 @@ impl Error {\n let arg = arg.to_string();\n \n start_error(&mut c, \"The argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' was provided more than once, but cannot be used multiple times\");\n put_usage(&mut c, usage);\n try_help(app, &mut c);\n@@ -958,7 +958,7 @@ impl Error {\n let mut c = Colorizer::new(true, app.get_color());\n \n start_error(&mut c, \"Found argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' which wasn't expected, or isn't valid in this context\");\n \n if let Some((flag, subcmd)) = did_you_mean {\n@@ -997,7 +997,7 @@ impl Error {\n let mut c = Colorizer::new(true, app.get_color());\n \n start_error(&mut c, \"Found argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' which wasn't expected, or isn't valid in this context\");\n \n c.none(format!(\n@@ -1014,7 +1014,7 @@ impl Error {\n let mut c = Colorizer::new(true, ColorChoice::Never);\n \n start_error(&mut c, \"The argument '\");\n- c.warning(arg.clone());\n+ c.warning(&*arg);\n c.none(\"' wasn't found\\n\");\n \n Self::new(c, ErrorKind::ArgumentNotFound, false).set_info(vec![arg])\n"}
docs(cloud): minor updates to Pricing page
009faefd14b16d4d80dfc961f931f8621db76096
docs
https://github.com/wzhiqing/cube/commit/009faefd14b16d4d80dfc961f931f8621db76096
minor updates to Pricing page
{"Pricing.mdx": "@@ -36,9 +36,10 @@ scope of support you may receive for your deployment.\n The Starter plan starts at a minimum of $99/month and targets low-scale\n production that is not business-critical.\n \n-It offers a Production Cluster, the ability to use third-party packages from the\n-npm registry, AWS and GCP support in select regions, pre-aggregations of upto\n-150GB in size, alerts, auto-suspend controls and a 50,000 queries per day limit.\n+It offers a [Production Cluster][ref-cloud-deployment-prod-cluster], the ability\n+to use third-party packages from the npm registry, AWS and GCP support in select\n+regions, pre-aggregations of upto 150GB in size, [alerts][ref-cloud-alerts],\n+auto-suspend controls and a 50,000 queries per day limit.\n \n ### Support\n \n@@ -81,8 +82,8 @@ high-scale or mission-critical production deployments with more significant\n security and compliance needs.\n \n It offers everything in the [Premium plan](#premium) as well as SAML/LDAP\n-support for single sign-on, VPC peering, logs/metrics export, and role-based\n-access control.\n+support for single sign-on, [VPC peering][ref-cloud-vpc-peering], [logs/metrics\n+export][ref-cloud-log-export], and [role-based access control][ref-cloud-acl].\n \n ### Support\n \n@@ -99,12 +100,13 @@ Cloud provides a 99.99% uptime SLA for this plan.\n \n ## Enterprise Premier\n \n-The Enterprise Premium Plan caters to high-scale, high-availability\n+The Enterprise Premium plan caters to high-scale, high-availability\n mission-critical production deployments with security and compliance needs.\n \n-It offers everything in the Enterprise plan as well as enabling the use of\n-Production Multi-Clusters, unlimited pre-aggregation sizes, support for\n-kSQL/Elasticsearch and custom domains.\n+It offers everything in the [Enterprise plan](#enterprise) as well as enabling the use of\n+[Production Multi-Clusters][ref-cloud-deployment-prod-multicluster], unlimited\n+pre-aggregation sizes, support for kSQL/Elasticsearch and [custom\n+domains][ref-cloud-custom-domains].\n \n ### Support\n \n@@ -153,3 +155,13 @@ CCUs into CCUs for the higher subscription plan at the CCU pricing for that plan\n subscription plan). Future purchases and upgrades are subject to the pricing\n that is in effect at the time of the order. No credit is allowed for downgrading\n CCUs to a lower subscription plan level.\n+\n+[ref-cloud-deployment-prod-cluster]:\n+ /cloud/configuration/deployment-types#production-cluster\n+[ref-cloud-alerts]: /cloud/workspace/alerts\n+[ref-cloud-log-export]: /cloud/workspace/logs\n+[ref-cloud-acl]: /cloud/access-control/\n+[ref-cloud-deployment-prod-multicluster]:\n+ /cloud/configuration/deployment-types#production-multi-cluster\n+[ref-cloud-custom-domains]: /cloud/configuration/custom-domains\n+[ref-cloud-vpc-peering]: /cloud/configuration/connecting-with-a-vpc\n"}
fix(snowflake): use `convert_timezone` for timezone conversion instead of invalid postgres `AT TIME ZONE` syntax
1595e7b7ceeeb29fc5305dbb243fc326393fec32
fix
https://github.com/ibis-project/ibis/commit/1595e7b7ceeeb29fc5305dbb243fc326393fec32
use `convert_timezone` for timezone conversion instead of invalid postgres `AT TIME ZONE` syntax
{"registry.py": "@@ -14,6 +14,8 @@ from ibis import util\n from ibis.backends.base.sql.alchemy.registry import (\n fixed_arity,\n geospatial_functions,\n+ get_col,\n+ get_sqla_table,\n reduction,\n unary,\n )\n@@ -66,6 +68,26 @@ def _literal(t, op):\n return _postgres_literal(t, op)\n \n \n+def _table_column(t, op):\n+ ctx = t.context\n+ table = op.table\n+\n+ sa_table = get_sqla_table(ctx, table)\n+ out_expr = get_col(sa_table, op)\n+\n+ if (dtype := op.output_dtype).is_timestamp() and (\n+ timezone := dtype.timezone\n+ ) is not None:\n+ out_expr = sa.func.convert_timezone(timezone, out_expr).label(op.name)\n+\n+ # If the column does not originate from the table set in the current SELECT\n+ # context, we should format as a subquery\n+ if t.permit_subquery and ctx.is_foreign_expr(table):\n+ return sa.select(out_expr)\n+\n+ return out_expr\n+\n+\n def _string_find(t, op):\n args = [t.translate(op.substr), t.translate(op.arg)]\n if (start := op.start) is not None:\n@@ -407,6 +429,7 @@ operation_registry.update(\n ops.Hash: unary(sa.func.hash),\n ops.ApproxMedian: reduction(lambda x: sa.func.approx_percentile(x, 0.5)),\n ops.Median: reduction(sa.func.median),\n+ ops.TableColumn: _table_column,\n }\n )\n \n", "test_client.py": "@@ -74,3 +74,13 @@ def test_repeated_memtable_registration(simple_con, mocker):\n \n # assert that we called _register_in_memory_table exactly n times\n assert spy.call_count == n\n+\n+\n+def test_timestamp_tz_column(simple_con):\n+ t = simple_con.create_table(\n+ ibis.util.gen_name(\"snowflake_timestamp_tz_column\"),\n+ schema=ibis.schema({\"ts\": \"string\"}),\n+ temp=True,\n+ ).mutate(ts=lambda t: t.ts.to_timestamp(\"YYYY-MM-DD HH24-MI-SS\"))\n+ expr = t.ts\n+ assert expr.execute().empty\n"}
feat: add `merge::tree::TreeFavor` similar to `*::FileFavor`. That way it's possible to control how tree-conflicts should be auto-resolved.
e17b3a9c93bd9fc5847c37b1f8e336bc4b1b1e39
feat
https://github.com/Byron/gitoxide/commit/e17b3a9c93bd9fc5847c37b1f8e336bc4b1b1e39
add `merge::tree::TreeFavor` similar to `*::FileFavor`. That way it's possible to control how tree-conflicts should be auto-resolved.
{"merge.rs": "@@ -160,6 +160,7 @@ pub mod tree {\n pub struct Options {\n inner: gix_merge::tree::Options,\n file_favor: Option<FileFavor>,\n+ tree_favor: Option<TreeFavor>,\n }\n \n impl From<gix_merge::tree::Options> for Options {\n@@ -167,6 +168,7 @@ pub mod tree {\n Options {\n inner: opts,\n file_favor: None,\n+ tree_favor: None,\n }\n }\n }\n@@ -190,6 +192,7 @@ pub mod tree {\n opts.blob_merge.resolve_binary_with = Some(resolve_binary);\n opts.blob_merge.text.conflict = resolve_text;\n }\n+ opts.tree_conflicts = value.tree_favor.map(Into::into);\n opts\n }\n }\n@@ -202,7 +205,7 @@ pub mod tree {\n /// * binary files\n /// * symlinks (a form of file after all)\n ///\n- /// Note that that union merges aren't available as they aren't available for binaries or symlinks.\n+ /// Note that *union* merges aren't available as they aren't available for binaries or symlinks.\n #[derive(Debug, Copy, Clone)]\n pub enum FileFavor {\n /// Choose *our* side in case of a conflict.\n@@ -215,6 +218,35 @@ pub mod tree {\n Theirs,\n }\n \n+ /// Control how irreconcilable changes to trees should be resolved.\n+ ///\n+ /// Examples for such issues are:\n+ ///\n+ /// * *we*: delete, *they*: modify\n+ /// * *we*: rename, *they*: rename to something else\n+ /// * *we*: delete, *they*: rename\n+ ///\n+ /// Use this to control which entries are visible to in the resulting tree.\n+ /// Also note that this does not apply to the many tree-related changes are reconcilable.\n+ #[derive(Debug, Copy, Clone)]\n+ pub enum TreeFavor {\n+ /// Choose *our* side in case of a conflict.\n+ /// Note that content-merges are *still* performed according to the [FileFavor].\n+ Ours,\n+ /// Choose the state of the shared common ancestor, dropping both *ours* and *their* changes.\n+ /// Content merges are not performed here.\n+ Ancestor,\n+ }\n+\n+ impl From<TreeFavor> for gix_merge::tree::ResolveWith {\n+ fn from(value: TreeFavor) -> Self {\n+ match value {\n+ TreeFavor::Ours => gix_merge::tree::ResolveWith::Ours,\n+ TreeFavor::Ancestor => gix_merge::tree::ResolveWith::Ancestor,\n+ }\n+ }\n+ }\n+\n /// Builder\n impl Options {\n /// If *not* `None`, rename tracking will be performed when determining the changes of each side of the merge.\n@@ -233,10 +265,22 @@ pub mod tree {\n \n /// When `None`, the default, both sides will be treated equally, and in case of conflict an unbiased representation\n /// is chosen both for content and for trees, causing a conflict.\n- /// When `Some(favor)` one can choose a side to prefer in order to automatically resolve a conflict meaningfully.\n+ ///\n+ /// With `Some(favor)` one can choose a side to prefer in order to forcefully resolve an otherwise irreconcilable conflict,\n+ /// loosing information in the process.\n pub fn with_file_favor(mut self, file_favor: Option<FileFavor>) -> Self {\n self.file_favor = file_favor;\n self\n }\n+\n+ /// When `None`, the default, both sides will be treated equally, trying to keep both conflicting changes in the tree, possibly\n+ /// by renaming one side to move it out of the way.\n+ ///\n+ /// With `Some(favor)` one can choose a side to prefer in order to forcefully resolve an otherwise irreconcilable conflict,\n+ /// loosing information in the process.\n+ pub fn with_tree_favor(mut self, tree_favor: Option<TreeFavor>) -> Self {\n+ self.tree_favor = tree_favor;\n+ self\n+ }\n }\n }\n"}
chore: release new alpha
a315c8a19a302dadc6acb3d6b45a71635c7d567f
chore
https://github.com/pmndrs/react-spring/commit/a315c8a19a302dadc6acb3d6b45a71635c7d567f
release new alpha
{".size-snapshot.json": "@@ -1,21 +1,21 @@\n {\n \"dist/index.js\": {\n- \"bundled\": 55978,\n- \"minified\": 20334,\n- \"gzipped\": 7338,\n+ \"bundled\": 56117,\n+ \"minified\": 20348,\n+ \"gzipped\": 7345,\n \"treeshaked\": {\n \"rollup\": {\n- \"code\": 2781,\n+ \"code\": 2791,\n \"import_statements\": 401\n },\n \"webpack\": {\n- \"code\": 3982\n+ \"code\": 3984\n }\n }\n },\n \"dist/index.cjs.js\": {\n- \"bundled\": 59227,\n- \"minified\": 22263,\n- \"gzipped\": 7648\n+ \"bundled\": 59366,\n+ \"minified\": 22277,\n+ \"gzipped\": 7657\n }\n }\n", "package.json": "@@ -1,6 +1,6 @@\n {\n \"name\": \"@react-spring/core\",\n- \"version\": \"0.0.1-alpha.1\",\n+ \"version\": \"0.0.1-alpha.2\",\n \"private\": true,\n \"main\": \"src/index.ts\",\n \"scripts\": {\n", "yarn.lock": "@@ -1759,7 +1759,7 @@\n \"@react-spring/shared\" \"link:packages/shared\"\n \n \"@react-spring/core@link:packages/core\":\n- version \"0.0.1-alpha.1\"\n+ version \"0.0.1-alpha.2\"\n dependencies:\n \"@react-spring/animated\" \"link:packages/animated\"\n \"@react-spring/shared\" \"link:packages/shared\"\n"}
chore(deps): default to python 3.11 with nix (#8444)
a75531526584c5c5802578fe0680c6f7a0007af1
chore
https://github.com/rohankumardubey/ibis/commit/a75531526584c5c5802578fe0680c6f7a0007af1
default to python 3.11 with nix (#8444)
{"flake.nix": "@@ -127,7 +127,7 @@\n packages = {\n inherit (pkgs) ibis39 ibis310 ibis311;\n \n- default = pkgs.ibis310;\n+ default = pkgs.ibis311;\n \n inherit (pkgs) update-lock-files gen-all-extras gen-examples check-release-notes-spelling;\n };\n@@ -137,7 +137,7 @@\n ibis310 = mkDevShell pkgs.ibisDevEnv310;\n ibis311 = mkDevShell pkgs.ibisDevEnv311;\n \n- default = ibis310;\n+ default = ibis311;\n \n preCommit = pkgs.mkShell {\n name = \"preCommit\";\n", "overlay.nix": "@@ -73,7 +73,7 @@ in\n gen-examples = pkgs.writeShellApplication {\n name = \"gen-examples\";\n runtimeInputs = [\n- pkgs.ibisDevEnv310\n+ pkgs.ibisDevEnv311\n (pkgs.rWrapper.override {\n packages = with pkgs.rPackages; [\n Lahman\n"}
ci: temporarily add pure-sasl to impala conda dependencies (#2987)
9e1bbaab2e02922f82863ac0ca80f0c96460203a
ci
https://github.com/rohankumardubey/ibis/commit/9e1bbaab2e02922f82863ac0ca80f0c96460203a
temporarily add pure-sasl to impala conda dependencies (#2987)
{"impala.yml": "@@ -6,3 +6,5 @@ dependencies:\n - thrift_sasl\n - python-hdfs\n - boost\n+ # TODO:remove when https://github.com/conda-forge/impyla-feedstock/pull/28 lands\n+ - pure-sasl\n", "merge_and_update_env.sh": "@@ -9,8 +9,8 @@ if [ \"$#\" -eq 0 ]; then\n exit 1\n fi\n \n-# install conda-merge\n-mamba install --name ibis conda-merge\n+# install conda-merge, don't try to update already installed dependencies\n+mamba install --freeze-installed --name ibis conda-merge\n \n additional_env_files=()\n \n", "test_client.py": "@@ -26,7 +26,19 @@ def test_kerberos_deps_installed(env, test_data_db):\n # errors and occur, because there is no kerberos server in\n # the CI pipeline, but they imply our imports have succeeded.\n # See: https://github.com/ibis-project/ibis/issues/2342\n- with pytest.raises((AttributeError, TTransportException)):\n+ excs = (AttributeError, TTransportException)\n+ try:\n+ # TLDR: puresasl is using kerberos, and not pykerberos\n+ #\n+ # see https://github.com/requests/requests-kerberos/issues/63\n+ # for why both libraries exist\n+ from kerberos import GSSError\n+ except ImportError:\n+ pass\n+ else:\n+ excs += (GSSError,)\n+\n+ with pytest.raises(excs):\n ibis.impala.connect(\n host=env.impala_host,\n database=test_data_db,\n"}