biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.40.0__cp311-cp311-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biotite might be problematic. Click here for more details.

Files changed (104) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/rcsb/download.py +19 -14
  4. biotite/sequence/align/banded.c +258 -237
  5. biotite/sequence/align/banded.cpython-311-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +243 -222
  7. biotite/sequence/align/kmeralphabet.cpython-311-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +215 -196
  9. biotite/sequence/align/kmersimilarity.cpython-311-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +233 -205
  11. biotite/sequence/align/kmertable.cpython-311-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +258 -237
  13. biotite/sequence/align/localgapped.cpython-311-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +235 -214
  15. biotite/sequence/align/localungapped.cpython-311-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +255 -234
  17. biotite/sequence/align/multiple.cpython-311-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +274 -253
  19. biotite/sequence/align/pairwise.cpython-311-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +215 -196
  21. biotite/sequence/align/permutation.cpython-311-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +217 -197
  23. biotite/sequence/align/selector.cpython-311-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +215 -195
  25. biotite/sequence/align/tracetable.cpython-311-darwin.so +0 -0
  26. biotite/sequence/codec.c +235 -214
  27. biotite/sequence/codec.cpython-311-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +215 -196
  29. biotite/sequence/phylo/nj.cpython-311-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +227 -202
  31. biotite/sequence/phylo/tree.cpython-311-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +215 -196
  33. biotite/sequence/phylo/upgma.cpython-311-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1175 -1226
  36. biotite/structure/bonds.cpython-311-darwin.so +0 -0
  37. biotite/structure/celllist.c +217 -197
  38. biotite/structure/celllist.cpython-311-darwin.so +0 -0
  39. biotite/structure/charges.c +1052 -1101
  40. biotite/structure/charges.cpython-311-darwin.so +0 -0
  41. biotite/structure/filter.py +30 -37
  42. biotite/structure/info/__init__.py +5 -8
  43. biotite/structure/info/atoms.py +25 -67
  44. biotite/structure/info/bonds.py +46 -100
  45. biotite/structure/info/ccd/README.rst +8 -0
  46. biotite/structure/info/ccd/amino_acids.txt +1646 -0
  47. biotite/structure/info/ccd/carbohydrates.txt +1133 -0
  48. biotite/structure/info/ccd/components.bcif +0 -0
  49. biotite/structure/info/ccd/nucleotides.txt +797 -0
  50. biotite/structure/info/ccd.py +95 -0
  51. biotite/structure/info/groups.py +90 -0
  52. biotite/structure/info/masses.py +21 -20
  53. biotite/structure/info/misc.py +11 -22
  54. biotite/structure/info/standardize.py +17 -12
  55. biotite/structure/io/__init__.py +2 -4
  56. biotite/structure/io/ctab.py +1 -1
  57. biotite/structure/io/general.py +37 -43
  58. biotite/structure/io/mmtf/__init__.py +3 -0
  59. biotite/structure/io/mmtf/convertarray.c +219 -198
  60. biotite/structure/io/mmtf/convertarray.cpython-311-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +217 -197
  62. biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +225 -204
  64. biotite/structure/io/mmtf/decode.cpython-311-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +215 -196
  66. biotite/structure/io/mmtf/encode.cpython-311-darwin.so +0 -0
  67. biotite/structure/io/mmtf/file.py +34 -26
  68. biotite/structure/io/npz/__init__.py +3 -0
  69. biotite/structure/io/npz/file.py +21 -18
  70. biotite/structure/io/pdb/__init__.py +3 -3
  71. biotite/structure/io/pdb/file.py +5 -3
  72. biotite/structure/io/pdb/hybrid36.c +63 -43
  73. biotite/structure/io/pdb/hybrid36.cpython-311-darwin.so +0 -0
  74. biotite/structure/io/pdbqt/file.py +32 -32
  75. biotite/structure/io/pdbx/__init__.py +13 -6
  76. biotite/structure/io/pdbx/bcif.py +649 -0
  77. biotite/structure/io/pdbx/cif.py +1028 -0
  78. biotite/structure/io/pdbx/component.py +243 -0
  79. biotite/structure/io/pdbx/convert.py +707 -359
  80. biotite/structure/io/pdbx/encoding.c +112813 -0
  81. biotite/structure/io/pdbx/encoding.cpython-311-darwin.so +0 -0
  82. biotite/structure/io/pdbx/error.py +14 -0
  83. biotite/structure/io/pdbx/legacy.py +267 -0
  84. biotite/structure/molecules.py +151 -151
  85. biotite/structure/sasa.c +215 -196
  86. biotite/structure/sasa.cpython-311-darwin.so +0 -0
  87. biotite/structure/superimpose.py +158 -115
  88. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
  89. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
  90. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
  91. biotite/structure/info/amino_acids.json +0 -1556
  92. biotite/structure/info/amino_acids.py +0 -42
  93. biotite/structure/info/carbohydrates.json +0 -1122
  94. biotite/structure/info/carbohydrates.py +0 -39
  95. biotite/structure/info/intra_bonds.msgpack +0 -0
  96. biotite/structure/info/link_types.msgpack +0 -1
  97. biotite/structure/info/nucleotides.json +0 -772
  98. biotite/structure/info/nucleotides.py +0 -39
  99. biotite/structure/info/residue_masses.msgpack +0 -0
  100. biotite/structure/info/residue_names.msgpack +0 -3
  101. biotite/structure/info/residues.msgpack +0 -0
  102. biotite/structure/io/pdbx/file.py +0 -652
  103. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
  104. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1755
1773
 
1756
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_long int_t
1758
1776
  * ctypedef npy_longlong long_t
1759
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1762
1780
  */
1763
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1764
1782
 
1765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1766
1784
  * ctypedef npy_longlong longlong_t
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1771
1789
  */
1772
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1773
1791
 
1774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  *
1776
1794
  * ctypedef npy_ulong uint_t
1777
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1780
1798
  */
1781
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1782
1800
 
1783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  * ctypedef npy_ulong uint_t
1785
1803
  * ctypedef npy_ulonglong ulong_t
1786
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1789
1807
  */
1790
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1809
 
1792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_ulonglong ulonglong_t
1794
1812
  *
1795
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1816
  */
1799
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1818
 
1801
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_intp intp_t
1804
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1825
  */
1808
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1827
 
1810
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1811
1829
  * ctypedef npy_uintp uintp_t
1812
1830
  *
1813
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1834
  */
1817
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1836
 
1819
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1837
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1820
1838
  *
1821
1839
  * ctypedef npy_double float_t
1822
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1843
  */
1826
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1845
 
1828
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1846
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1829
1847
  * ctypedef npy_double float_t
1830
1848
  * ctypedef npy_double double_t
1831
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1875,7 +1893,7 @@ struct __pyx_MemviewEnum_obj;
1875
1893
  struct __pyx_memoryview_obj;
1876
1894
  struct __pyx_memoryviewslice_obj;
1877
1895
 
1878
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1896
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1879
1897
  * ctypedef npy_longdouble longdouble_t
1880
1898
  *
1881
1899
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1884,7 +1902,7 @@ struct __pyx_memoryviewslice_obj;
1884
1902
  */
1885
1903
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1886
1904
 
1887
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1905
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1888
1906
  *
1889
1907
  * ctypedef npy_cfloat cfloat_t
1890
1908
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1893
1911
  */
1894
1912
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1895
1913
 
1896
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1914
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1897
1915
  * ctypedef npy_cfloat cfloat_t
1898
1916
  * ctypedef npy_cdouble cdouble_t
1899
1917
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1902
1920
  */
1903
1921
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1904
1922
 
1905
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1923
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1906
1924
  * ctypedef npy_clongdouble clongdouble_t
1907
1925
  *
1908
1926
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2208,8 +2226,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2208
2226
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2209
2227
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2210
2228
  #else
2211
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2212
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2229
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2230
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2213
2231
  #endif
2214
2232
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2215
2233
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2225,8 +2243,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2225
2243
  #else
2226
2244
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2227
2245
  #endif
2228
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2229
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2246
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2247
+ to have the same reference counting */
2248
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2230
2249
  #else
2231
2250
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2232
2251
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2689,22 +2708,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2689
2708
  #endif
2690
2709
 
2691
2710
  /* TypeImport.proto */
2692
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2693
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2711
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2712
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2694
2713
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2695
2714
  #include <stdalign.h>
2696
2715
  #endif
2697
2716
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2698
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2717
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2699
2718
  #else
2700
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2719
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2701
2720
  #endif
2702
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2703
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2704
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2705
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2721
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2722
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2723
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2724
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2706
2725
  };
2707
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size);
2726
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
2708
2727
  #endif
2709
2728
 
2710
2729
  /* FetchSharedCythonModule.proto */
@@ -2797,7 +2816,7 @@ typedef struct {
2797
2816
  #endif
2798
2817
  void *defaults;
2799
2818
  int defaults_pyobjects;
2800
- size_t defaults_size; // used by FusedFunction for copying defaults
2819
+ size_t defaults_size;
2801
2820
  int flags;
2802
2821
  PyObject *defaults_tuple;
2803
2822
  PyObject *defaults_kwdict;
@@ -18347,7 +18366,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18347
18366
  return __pyx_r;
18348
18367
  }
18349
18368
 
18350
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18369
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18351
18370
  *
18352
18371
  * @property
18353
18372
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18358,7 +18377,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18358
18377
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18359
18378
  PyObject *__pyx_r;
18360
18379
 
18361
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
18380
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
18362
18381
  * """Returns a borrowed reference to the object owning the data/memory.
18363
18382
  * """
18364
18383
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18368,7 +18387,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18368
18387
  __pyx_r = PyArray_BASE(__pyx_v_self);
18369
18388
  goto __pyx_L0;
18370
18389
 
18371
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18390
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18372
18391
  *
18373
18392
  * @property
18374
18393
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18381,7 +18400,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18381
18400
  return __pyx_r;
18382
18401
  }
18383
18402
 
18384
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18403
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18385
18404
  *
18386
18405
  * @property
18387
18406
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18395,7 +18414,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18395
18414
  PyArray_Descr *__pyx_t_1;
18396
18415
  __Pyx_RefNannySetupContext("descr", 1);
18397
18416
 
18398
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
18417
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
18399
18418
  * """Returns an owned reference to the dtype of the array.
18400
18419
  * """
18401
18420
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18408,7 +18427,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18408
18427
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18409
18428
  goto __pyx_L0;
18410
18429
 
18411
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18430
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18412
18431
  *
18413
18432
  * @property
18414
18433
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18423,7 +18442,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18423
18442
  return __pyx_r;
18424
18443
  }
18425
18444
 
18426
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18445
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18427
18446
  *
18428
18447
  * @property
18429
18448
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18434,7 +18453,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18434
18453
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18435
18454
  int __pyx_r;
18436
18455
 
18437
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
18456
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
18438
18457
  * """Returns the number of dimensions in the array.
18439
18458
  * """
18440
18459
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18444,7 +18463,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18444
18463
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18445
18464
  goto __pyx_L0;
18446
18465
 
18447
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18466
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18448
18467
  *
18449
18468
  * @property
18450
18469
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18457,7 +18476,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18457
18476
  return __pyx_r;
18458
18477
  }
18459
18478
 
18460
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18479
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18461
18480
  *
18462
18481
  * @property
18463
18482
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18468,7 +18487,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18468
18487
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18469
18488
  npy_intp *__pyx_r;
18470
18489
 
18471
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
18490
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
18472
18491
  * Can return NULL for 0-dimensional arrays.
18473
18492
  * """
18474
18493
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18478,7 +18497,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18478
18497
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18479
18498
  goto __pyx_L0;
18480
18499
 
18481
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18500
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18482
18501
  *
18483
18502
  * @property
18484
18503
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18491,7 +18510,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18491
18510
  return __pyx_r;
18492
18511
  }
18493
18512
 
18494
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18513
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18495
18514
  *
18496
18515
  * @property
18497
18516
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18502,7 +18521,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18502
18521
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18503
18522
  npy_intp *__pyx_r;
18504
18523
 
18505
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
18524
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
18506
18525
  * The number of elements matches the number of dimensions of the array (ndim).
18507
18526
  * """
18508
18527
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18512,7 +18531,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18512
18531
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18513
18532
  goto __pyx_L0;
18514
18533
 
18515
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18534
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18516
18535
  *
18517
18536
  * @property
18518
18537
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18525,7 +18544,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18525
18544
  return __pyx_r;
18526
18545
  }
18527
18546
 
18528
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18547
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18529
18548
  *
18530
18549
  * @property
18531
18550
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18536,7 +18555,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18536
18555
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18537
18556
  npy_intp __pyx_r;
18538
18557
 
18539
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
18558
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
18540
18559
  * """Returns the total size (in number of elements) of the array.
18541
18560
  * """
18542
18561
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18546,7 +18565,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18546
18565
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18547
18566
  goto __pyx_L0;
18548
18567
 
18549
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18568
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18550
18569
  *
18551
18570
  * @property
18552
18571
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18559,7 +18578,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18559
18578
  return __pyx_r;
18560
18579
  }
18561
18580
 
18562
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18581
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18563
18582
  *
18564
18583
  * @property
18565
18584
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18570,7 +18589,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18570
18589
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18571
18590
  char *__pyx_r;
18572
18591
 
18573
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
18592
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
18574
18593
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18575
18594
  * """
18576
18595
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18580,7 +18599,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18580
18599
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18581
18600
  goto __pyx_L0;
18582
18601
 
18583
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18602
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18584
18603
  *
18585
18604
  * @property
18586
18605
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18593,7 +18612,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18593
18612
  return __pyx_r;
18594
18613
  }
18595
18614
 
18596
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18615
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18597
18616
  * ctypedef npy_cdouble complex_t
18598
18617
  *
18599
18618
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18610,7 +18629,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18610
18629
  int __pyx_clineno = 0;
18611
18630
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18612
18631
 
18613
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
18632
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
18614
18633
  *
18615
18634
  * cdef inline object PyArray_MultiIterNew1(a):
18616
18635
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18624,7 +18643,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18624
18643
  __pyx_t_1 = 0;
18625
18644
  goto __pyx_L0;
18626
18645
 
18627
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18646
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18628
18647
  * ctypedef npy_cdouble complex_t
18629
18648
  *
18630
18649
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18643,7 +18662,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18643
18662
  return __pyx_r;
18644
18663
  }
18645
18664
 
18646
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18665
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18647
18666
  * return PyArray_MultiIterNew(1, <void*>a)
18648
18667
  *
18649
18668
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18660,7 +18679,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18660
18679
  int __pyx_clineno = 0;
18661
18680
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18662
18681
 
18663
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
18682
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
18664
18683
  *
18665
18684
  * cdef inline object PyArray_MultiIterNew2(a, b):
18666
18685
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18674,7 +18693,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18674
18693
  __pyx_t_1 = 0;
18675
18694
  goto __pyx_L0;
18676
18695
 
18677
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18696
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18678
18697
  * return PyArray_MultiIterNew(1, <void*>a)
18679
18698
  *
18680
18699
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18693,7 +18712,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18693
18712
  return __pyx_r;
18694
18713
  }
18695
18714
 
18696
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18715
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18697
18716
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18698
18717
  *
18699
18718
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18710,7 +18729,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18710
18729
  int __pyx_clineno = 0;
18711
18730
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18712
18731
 
18713
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
18732
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
18714
18733
  *
18715
18734
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18716
18735
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18724,7 +18743,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18724
18743
  __pyx_t_1 = 0;
18725
18744
  goto __pyx_L0;
18726
18745
 
18727
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18746
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18728
18747
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18729
18748
  *
18730
18749
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18743,7 +18762,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18743
18762
  return __pyx_r;
18744
18763
  }
18745
18764
 
18746
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18747
18766
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18748
18767
  *
18749
18768
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18760,7 +18779,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18760
18779
  int __pyx_clineno = 0;
18761
18780
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18762
18781
 
18763
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
18782
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
18764
18783
  *
18765
18784
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18766
18785
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18774,7 +18793,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18774
18793
  __pyx_t_1 = 0;
18775
18794
  goto __pyx_L0;
18776
18795
 
18777
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18796
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18778
18797
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18779
18798
  *
18780
18799
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18793,7 +18812,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18793
18812
  return __pyx_r;
18794
18813
  }
18795
18814
 
18796
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18815
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18797
18816
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18798
18817
  *
18799
18818
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18810,7 +18829,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18810
18829
  int __pyx_clineno = 0;
18811
18830
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18812
18831
 
18813
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
18832
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
18814
18833
  *
18815
18834
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18816
18835
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18824,7 +18843,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18824
18843
  __pyx_t_1 = 0;
18825
18844
  goto __pyx_L0;
18826
18845
 
18827
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18846
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18828
18847
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18829
18848
  *
18830
18849
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18843,7 +18862,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18843
18862
  return __pyx_r;
18844
18863
  }
18845
18864
 
18846
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
18865
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
18847
18866
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18848
18867
  *
18849
18868
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18857,7 +18876,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18857
18876
  int __pyx_t_1;
18858
18877
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18859
18878
 
18860
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
18879
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
18861
18880
  *
18862
18881
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18863
18882
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18867,7 +18886,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18867
18886
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18868
18887
  if (__pyx_t_1) {
18869
18888
 
18870
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
18889
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
18871
18890
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18872
18891
  * if PyDataType_HASSUBARRAY(d):
18873
18892
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18879,7 +18898,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18879
18898
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18880
18899
  goto __pyx_L0;
18881
18900
 
18882
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
18901
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
18883
18902
  *
18884
18903
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18885
18904
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18888,7 +18907,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18888
18907
  */
18889
18908
  }
18890
18909
 
18891
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
18910
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
18892
18911
  * return <tuple>d.subarray.shape
18893
18912
  * else:
18894
18913
  * return () # <<<<<<<<<<<<<<
@@ -18902,7 +18921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18902
18921
  goto __pyx_L0;
18903
18922
  }
18904
18923
 
18905
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
18924
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
18906
18925
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18907
18926
  *
18908
18927
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18917,7 +18936,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18917
18936
  return __pyx_r;
18918
18937
  }
18919
18938
 
18920
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
18939
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
18921
18940
  * int _import_umath() except -1
18922
18941
  *
18923
18942
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18927,7 +18946,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18927
18946
 
18928
18947
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
18929
18948
 
18930
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
18949
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
18931
18950
  *
18932
18951
  * cdef inline void set_array_base(ndarray arr, object base):
18933
18952
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18936,7 +18955,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18936
18955
  */
18937
18956
  Py_INCREF(__pyx_v_base);
18938
18957
 
18939
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
18958
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
18940
18959
  * cdef inline void set_array_base(ndarray arr, object base):
18941
18960
  * Py_INCREF(base) # important to do this before stealing the reference below!
18942
18961
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18945,7 +18964,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18945
18964
  */
18946
18965
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
18947
18966
 
18948
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
18967
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
18949
18968
  * int _import_umath() except -1
18950
18969
  *
18951
18970
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18956,7 +18975,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18956
18975
  /* function exit code */
18957
18976
  }
18958
18977
 
18959
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
18978
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
18960
18979
  * PyArray_SetBaseObject(arr, base)
18961
18980
  *
18962
18981
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18971,7 +18990,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18971
18990
  int __pyx_t_1;
18972
18991
  __Pyx_RefNannySetupContext("get_array_base", 1);
18973
18992
 
18974
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
18993
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
18975
18994
  *
18976
18995
  * cdef inline object get_array_base(ndarray arr):
18977
18996
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18980,7 +18999,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18980
18999
  */
18981
19000
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18982
19001
 
18983
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19002
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
18984
19003
  * cdef inline object get_array_base(ndarray arr):
18985
19004
  * base = PyArray_BASE(arr)
18986
19005
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18990,7 +19009,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18990
19009
  __pyx_t_1 = (__pyx_v_base == NULL);
18991
19010
  if (__pyx_t_1) {
18992
19011
 
18993
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
19012
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
18994
19013
  * base = PyArray_BASE(arr)
18995
19014
  * if base is NULL:
18996
19015
  * return None # <<<<<<<<<<<<<<
@@ -19001,7 +19020,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19001
19020
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19002
19021
  goto __pyx_L0;
19003
19022
 
19004
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19023
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19005
19024
  * cdef inline object get_array_base(ndarray arr):
19006
19025
  * base = PyArray_BASE(arr)
19007
19026
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19010,7 +19029,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19010
19029
  */
19011
19030
  }
19012
19031
 
19013
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
19032
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
19014
19033
  * if base is NULL:
19015
19034
  * return None
19016
19035
  * return <object>base # <<<<<<<<<<<<<<
@@ -19022,7 +19041,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19022
19041
  __pyx_r = ((PyObject *)__pyx_v_base);
19023
19042
  goto __pyx_L0;
19024
19043
 
19025
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19044
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19026
19045
  * PyArray_SetBaseObject(arr, base)
19027
19046
  *
19028
19047
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19037,7 +19056,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19037
19056
  return __pyx_r;
19038
19057
  }
19039
19058
 
19040
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19059
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19041
19060
  * # Versions of the import_* functions which are more suitable for
19042
19061
  * # Cython code.
19043
19062
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19061,7 +19080,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19061
19080
  int __pyx_clineno = 0;
19062
19081
  __Pyx_RefNannySetupContext("import_array", 1);
19063
19082
 
19064
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19083
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19065
19084
  * # Cython code.
19066
19085
  * cdef inline int import_array() except -1:
19067
19086
  * try: # <<<<<<<<<<<<<<
@@ -19077,7 +19096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19077
19096
  __Pyx_XGOTREF(__pyx_t_3);
19078
19097
  /*try:*/ {
19079
19098
 
19080
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
19099
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
19081
19100
  * cdef inline int import_array() except -1:
19082
19101
  * try:
19083
19102
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19086,7 +19105,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19086
19105
  */
19087
19106
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
19088
19107
 
19089
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19108
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19090
19109
  * # Cython code.
19091
19110
  * cdef inline int import_array() except -1:
19092
19111
  * try: # <<<<<<<<<<<<<<
@@ -19100,7 +19119,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19100
19119
  goto __pyx_L8_try_end;
19101
19120
  __pyx_L3_error:;
19102
19121
 
19103
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
19122
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
19104
19123
  * try:
19105
19124
  * __pyx_import_array()
19106
19125
  * except Exception: # <<<<<<<<<<<<<<
@@ -19115,7 +19134,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19115
19134
  __Pyx_XGOTREF(__pyx_t_6);
19116
19135
  __Pyx_XGOTREF(__pyx_t_7);
19117
19136
 
19118
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
19137
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
19119
19138
  * __pyx_import_array()
19120
19139
  * except Exception:
19121
19140
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19130,7 +19149,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19130
19149
  }
19131
19150
  goto __pyx_L5_except_error;
19132
19151
 
19133
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19152
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19134
19153
  * # Cython code.
19135
19154
  * cdef inline int import_array() except -1:
19136
19155
  * try: # <<<<<<<<<<<<<<
@@ -19146,7 +19165,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19146
19165
  __pyx_L8_try_end:;
19147
19166
  }
19148
19167
 
19149
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19168
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19150
19169
  * # Versions of the import_* functions which are more suitable for
19151
19170
  * # Cython code.
19152
19171
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19169,7 +19188,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19169
19188
  return __pyx_r;
19170
19189
  }
19171
19190
 
19172
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19191
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19173
19192
  * raise ImportError("numpy.core.multiarray failed to import")
19174
19193
  *
19175
19194
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19193,7 +19212,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19193
19212
  int __pyx_clineno = 0;
19194
19213
  __Pyx_RefNannySetupContext("import_umath", 1);
19195
19214
 
19196
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19215
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19197
19216
  *
19198
19217
  * cdef inline int import_umath() except -1:
19199
19218
  * try: # <<<<<<<<<<<<<<
@@ -19209,7 +19228,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19209
19228
  __Pyx_XGOTREF(__pyx_t_3);
19210
19229
  /*try:*/ {
19211
19230
 
19212
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
19231
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
19213
19232
  * cdef inline int import_umath() except -1:
19214
19233
  * try:
19215
19234
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19218,7 +19237,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19218
19237
  */
19219
19238
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
19220
19239
 
19221
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19240
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19222
19241
  *
19223
19242
  * cdef inline int import_umath() except -1:
19224
19243
  * try: # <<<<<<<<<<<<<<
@@ -19232,7 +19251,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19232
19251
  goto __pyx_L8_try_end;
19233
19252
  __pyx_L3_error:;
19234
19253
 
19235
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
19254
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
19236
19255
  * try:
19237
19256
  * _import_umath()
19238
19257
  * except Exception: # <<<<<<<<<<<<<<
@@ -19247,7 +19266,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19247
19266
  __Pyx_XGOTREF(__pyx_t_6);
19248
19267
  __Pyx_XGOTREF(__pyx_t_7);
19249
19268
 
19250
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
19269
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
19251
19270
  * _import_umath()
19252
19271
  * except Exception:
19253
19272
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19262,7 +19281,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19262
19281
  }
19263
19282
  goto __pyx_L5_except_error;
19264
19283
 
19265
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19284
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19266
19285
  *
19267
19286
  * cdef inline int import_umath() except -1:
19268
19287
  * try: # <<<<<<<<<<<<<<
@@ -19278,7 +19297,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19278
19297
  __pyx_L8_try_end:;
19279
19298
  }
19280
19299
 
19281
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19300
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19282
19301
  * raise ImportError("numpy.core.multiarray failed to import")
19283
19302
  *
19284
19303
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19301,7 +19320,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19301
19320
  return __pyx_r;
19302
19321
  }
19303
19322
 
19304
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19323
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19305
19324
  * raise ImportError("numpy.core.umath failed to import")
19306
19325
  *
19307
19326
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19325,7 +19344,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19325
19344
  int __pyx_clineno = 0;
19326
19345
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19327
19346
 
19328
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19347
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19329
19348
  *
19330
19349
  * cdef inline int import_ufunc() except -1:
19331
19350
  * try: # <<<<<<<<<<<<<<
@@ -19341,7 +19360,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19341
19360
  __Pyx_XGOTREF(__pyx_t_3);
19342
19361
  /*try:*/ {
19343
19362
 
19344
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
19363
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
19345
19364
  * cdef inline int import_ufunc() except -1:
19346
19365
  * try:
19347
19366
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19350,7 +19369,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19350
19369
  */
19351
19370
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
19352
19371
 
19353
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19372
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19354
19373
  *
19355
19374
  * cdef inline int import_ufunc() except -1:
19356
19375
  * try: # <<<<<<<<<<<<<<
@@ -19364,7 +19383,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19364
19383
  goto __pyx_L8_try_end;
19365
19384
  __pyx_L3_error:;
19366
19385
 
19367
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
19386
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
19368
19387
  * try:
19369
19388
  * _import_umath()
19370
19389
  * except Exception: # <<<<<<<<<<<<<<
@@ -19379,7 +19398,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19379
19398
  __Pyx_XGOTREF(__pyx_t_6);
19380
19399
  __Pyx_XGOTREF(__pyx_t_7);
19381
19400
 
19382
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
19401
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
19383
19402
  * _import_umath()
19384
19403
  * except Exception:
19385
19404
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19394,7 +19413,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19394
19413
  }
19395
19414
  goto __pyx_L5_except_error;
19396
19415
 
19397
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19416
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19398
19417
  *
19399
19418
  * cdef inline int import_ufunc() except -1:
19400
19419
  * try: # <<<<<<<<<<<<<<
@@ -19410,7 +19429,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19410
19429
  __pyx_L8_try_end:;
19411
19430
  }
19412
19431
 
19413
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19432
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19414
19433
  * raise ImportError("numpy.core.umath failed to import")
19415
19434
  *
19416
19435
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19433,7 +19452,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19433
19452
  return __pyx_r;
19434
19453
  }
19435
19454
 
19436
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19455
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19437
19456
  *
19438
19457
  *
19439
19458
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19444,7 +19463,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19444
19463
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19445
19464
  int __pyx_r;
19446
19465
 
19447
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
19466
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
19448
19467
  * bool
19449
19468
  * """
19450
19469
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19454,7 +19473,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19454
19473
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19455
19474
  goto __pyx_L0;
19456
19475
 
19457
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19476
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19458
19477
  *
19459
19478
  *
19460
19479
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19467,7 +19486,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19467
19486
  return __pyx_r;
19468
19487
  }
19469
19488
 
19470
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19489
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19471
19490
  *
19472
19491
  *
19473
19492
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19478,7 +19497,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19478
19497
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19479
19498
  int __pyx_r;
19480
19499
 
19481
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
19500
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
19482
19501
  * bool
19483
19502
  * """
19484
19503
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19488,7 +19507,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19488
19507
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19489
19508
  goto __pyx_L0;
19490
19509
 
19491
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19510
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19492
19511
  *
19493
19512
  *
19494
19513
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19501,7 +19520,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19501
19520
  return __pyx_r;
19502
19521
  }
19503
19522
 
19504
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19523
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19505
19524
  *
19506
19525
  *
19507
19526
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19512,7 +19531,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19512
19531
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19513
19532
  npy_datetime __pyx_r;
19514
19533
 
19515
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
19534
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
19516
19535
  * also needed. That can be found using `get_datetime64_unit`.
19517
19536
  * """
19518
19537
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19522,7 +19541,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19522
19541
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19523
19542
  goto __pyx_L0;
19524
19543
 
19525
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19544
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19526
19545
  *
19527
19546
  *
19528
19547
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19535,7 +19554,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19535
19554
  return __pyx_r;
19536
19555
  }
19537
19556
 
19538
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19557
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19539
19558
  *
19540
19559
  *
19541
19560
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19546,7 +19565,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19546
19565
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19547
19566
  npy_timedelta __pyx_r;
19548
19567
 
19549
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
19568
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
19550
19569
  * returns the int64 value underlying scalar numpy timedelta64 object
19551
19570
  * """
19552
19571
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19556,7 +19575,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19556
19575
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19557
19576
  goto __pyx_L0;
19558
19577
 
19559
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19578
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19560
19579
  *
19561
19580
  *
19562
19581
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19569,7 +19588,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19569
19588
  return __pyx_r;
19570
19589
  }
19571
19590
 
19572
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19591
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19573
19592
  *
19574
19593
  *
19575
19594
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19580,7 +19599,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19580
19599
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19581
19600
  NPY_DATETIMEUNIT __pyx_r;
19582
19601
 
19583
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
19602
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
19584
19603
  * returns the unit part of the dtype for a numpy datetime64 object.
19585
19604
  * """
19586
19605
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19588,7 +19607,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19588
19607
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19589
19608
  goto __pyx_L0;
19590
19609
 
19591
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19610
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19592
19611
  *
19593
19612
  *
19594
19613
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -23285,7 +23304,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
23285
23304
  __Pyx_GOTREF(__pyx_tuple__8);
23286
23305
  __Pyx_GIVEREF(__pyx_tuple__8);
23287
23306
 
23288
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
23307
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
23289
23308
  * __pyx_import_array()
23290
23309
  * except Exception:
23291
23310
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -23296,7 +23315,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
23296
23315
  __Pyx_GOTREF(__pyx_tuple__9);
23297
23316
  __Pyx_GIVEREF(__pyx_tuple__9);
23298
23317
 
23299
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
23318
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
23300
23319
  * _import_umath()
23301
23320
  * except Exception:
23302
23321
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -23801,33 +23820,33 @@ static int __Pyx_modinit_type_import_code(void) {
23801
23820
  /*--- Type import code ---*/
23802
23821
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
23803
23822
  __Pyx_GOTREF(__pyx_t_1);
23804
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23823
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23805
23824
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
23806
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23825
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23807
23826
  #elif CYTHON_COMPILING_IN_LIMITED_API
23808
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23827
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23809
23828
  #else
23810
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
23829
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
23811
23830
  #endif
23812
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23831
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23813
23832
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23814
23833
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
23815
23834
  __Pyx_GOTREF(__pyx_t_1);
23816
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
23817
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
23818
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
23819
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
23820
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
23821
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
23822
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
23823
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
23824
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
23825
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
23826
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
23827
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
23828
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
23829
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
23830
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
23835
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
23836
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
23837
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
23838
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
23839
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
23840
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
23841
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
23842
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
23843
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
23844
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
23845
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
23846
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
23847
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
23848
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
23849
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
23831
23850
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23832
23851
  __Pyx_RefNannyFinishContext();
23833
23852
  return 0;
@@ -25567,11 +25586,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
25567
25586
  {
25568
25587
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
25569
25588
  if (unlikely(eq != 0)) {
25570
- if (unlikely(eq < 0)) return NULL; // error
25589
+ if (unlikely(eq < 0)) return NULL;
25571
25590
  return kwvalues[i];
25572
25591
  }
25573
25592
  }
25574
- return NULL; // not found (no exception set)
25593
+ return NULL;
25575
25594
  }
25576
25595
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
25577
25596
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -25684,7 +25703,7 @@ static int __Pyx_ParseOptionalKeywords(
25684
25703
  if (*name) {
25685
25704
  values[name-argnames] = value;
25686
25705
  #if CYTHON_AVOID_BORROWED_REFS
25687
- Py_INCREF(value); // transfer ownership of value to values
25706
+ Py_INCREF(value);
25688
25707
  Py_DECREF(key);
25689
25708
  #endif
25690
25709
  key = NULL;
@@ -25703,7 +25722,7 @@ static int __Pyx_ParseOptionalKeywords(
25703
25722
  && _PyString_Eq(**name, key)) {
25704
25723
  values[name-argnames] = value;
25705
25724
  #if CYTHON_AVOID_BORROWED_REFS
25706
- value = NULL; // ownership transferred to values
25725
+ value = NULL;
25707
25726
  #endif
25708
25727
  break;
25709
25728
  }
@@ -25735,7 +25754,7 @@ static int __Pyx_ParseOptionalKeywords(
25735
25754
  if (cmp == 0) {
25736
25755
  values[name-argnames] = value;
25737
25756
  #if CYTHON_AVOID_BORROWED_REFS
25738
- value = NULL; // ownership transferred to values
25757
+ value = NULL;
25739
25758
  #endif
25740
25759
  break;
25741
25760
  }
@@ -28257,10 +28276,10 @@ __PYX_GOOD:
28257
28276
  #endif
28258
28277
 
28259
28278
  /* TypeImport */
28260
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
28261
- #define __PYX_HAVE_RT_ImportType_3_0_7
28262
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
28263
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
28279
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
28280
+ #define __PYX_HAVE_RT_ImportType_3_0_10
28281
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
28282
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
28264
28283
  {
28265
28284
  PyObject *result = 0;
28266
28285
  char warning[200];
@@ -28314,7 +28333,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
28314
28333
  module_name, class_name, size, basicsize+itemsize);
28315
28334
  goto bad;
28316
28335
  }
28317
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
28336
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
28318
28337
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
28319
28338
  PyErr_Format(PyExc_ValueError,
28320
28339
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -28322,7 +28341,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
28322
28341
  module_name, class_name, size, basicsize, basicsize+itemsize);
28323
28342
  goto bad;
28324
28343
  }
28325
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
28344
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
28326
28345
  PyOS_snprintf(warning, sizeof(warning),
28327
28346
  "%s.%s size changed, may indicate binary incompatibility. "
28328
28347
  "Expected %zd from C header, got %zd from PyObject",
@@ -29322,7 +29341,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
29322
29341
  default:
29323
29342
  return NULL;
29324
29343
  }
29325
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
29344
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
29326
29345
  }
29327
29346
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
29328
29347
  {
@@ -30136,7 +30155,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
30136
30155
  #else
30137
30156
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
30138
30157
  #endif
30139
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
30158
+ Py_XDECREF(py_funcname);
30140
30159
  return py_code;
30141
30160
  bad:
30142
30161
  Py_XDECREF(py_funcname);