biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.40.0__cp312-cp312-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 +256 -235
  5. biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +241 -220
  7. biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +213 -194
  9. biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +231 -203
  11. biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +256 -235
  13. biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +233 -212
  15. biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +253 -232
  17. biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +272 -251
  19. biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +213 -194
  21. biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +215 -195
  23. biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +213 -193
  25. biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
  26. biotite/sequence/codec.c +233 -212
  27. biotite/sequence/codec.cpython-312-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +213 -194
  29. biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +225 -200
  31. biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +213 -194
  33. biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1173 -1224
  36. biotite/structure/bonds.cpython-312-darwin.so +0 -0
  37. biotite/structure/celllist.c +215 -195
  38. biotite/structure/celllist.cpython-312-darwin.so +0 -0
  39. biotite/structure/charges.c +1050 -1099
  40. biotite/structure/charges.cpython-312-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 +217 -196
  60. biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +215 -195
  62. biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +223 -202
  64. biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +213 -194
  66. biotite/structure/io/mmtf/encode.cpython-312-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-312-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 +112803 -0
  81. biotite/structure/io/pdbx/encoding.cpython-312-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 +213 -194
  86. biotite/structure/sasa.cpython-312-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
 
@@ -1286,24 +1321,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1286
1321
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1287
1322
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1288
1323
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1289
- #if CYTHON_COMPILING_IN_LIMITED_API
1290
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1291
- {
1292
- const wchar_t *u_end = u;
1293
- while (*u_end++) ;
1294
- return (size_t)(u_end - u - 1);
1295
- }
1296
- #else
1297
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1298
- {
1299
- const Py_UNICODE *u_end = u;
1300
- while (*u_end++) ;
1301
- return (size_t)(u_end - u - 1);
1302
- }
1303
- #endif
1304
1324
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1305
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1306
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1307
1325
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1308
1326
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1309
1327
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1353,7 +1371,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1353
1371
  #endif
1354
1372
  typedef Py_ssize_t __Pyx_compact_pylong;
1355
1373
  typedef size_t __Pyx_compact_upylong;
1356
- #else // Py < 3.12
1374
+ #else
1357
1375
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1358
1376
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1359
1377
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1506,7 +1524,7 @@ static const char *__pyx_f[] = {
1506
1524
 
1507
1525
  /* #### Code section: numeric_typedefs ### */
1508
1526
 
1509
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1527
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1510
1528
  * # in Cython to enable them only on the right systems.
1511
1529
  *
1512
1530
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1515,7 +1533,7 @@ static const char *__pyx_f[] = {
1515
1533
  */
1516
1534
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1517
1535
 
1518
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1536
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1519
1537
  *
1520
1538
  * ctypedef npy_int8 int8_t
1521
1539
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1524,7 +1542,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1524
1542
  */
1525
1543
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1526
1544
 
1527
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1545
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1528
1546
  * ctypedef npy_int8 int8_t
1529
1547
  * ctypedef npy_int16 int16_t
1530
1548
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1533,7 +1551,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1533
1551
  */
1534
1552
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1535
1553
 
1536
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1554
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1537
1555
  * ctypedef npy_int16 int16_t
1538
1556
  * ctypedef npy_int32 int32_t
1539
1557
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1542,7 +1560,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1542
1560
  */
1543
1561
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1544
1562
 
1545
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1563
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1546
1564
  * #ctypedef npy_int128 int128_t
1547
1565
  *
1548
1566
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1551,7 +1569,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1551
1569
  */
1552
1570
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1553
1571
 
1554
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1572
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1555
1573
  *
1556
1574
  * ctypedef npy_uint8 uint8_t
1557
1575
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1560,7 +1578,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1560
1578
  */
1561
1579
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1562
1580
 
1563
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1581
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1564
1582
  * ctypedef npy_uint8 uint8_t
1565
1583
  * ctypedef npy_uint16 uint16_t
1566
1584
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1569,7 +1587,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1569
1587
  */
1570
1588
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1571
1589
 
1572
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1590
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1573
1591
  * ctypedef npy_uint16 uint16_t
1574
1592
  * ctypedef npy_uint32 uint32_t
1575
1593
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1578,7 +1596,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1578
1596
  */
1579
1597
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1580
1598
 
1581
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1599
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1582
1600
  * #ctypedef npy_uint128 uint128_t
1583
1601
  *
1584
1602
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1587,7 +1605,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1587
1605
  */
1588
1606
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1589
1607
 
1590
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1608
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1591
1609
  *
1592
1610
  * ctypedef npy_float32 float32_t
1593
1611
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1596,7 +1614,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1596
1614
  */
1597
1615
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1598
1616
 
1599
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1617
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1600
1618
  * # The int types are mapped a bit surprising --
1601
1619
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1602
1620
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1605,7 +1623,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1605
1623
  */
1606
1624
  typedef npy_long __pyx_t_5numpy_int_t;
1607
1625
 
1608
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1626
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1609
1627
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1610
1628
  * ctypedef npy_long int_t
1611
1629
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1614,7 +1632,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1614
1632
  */
1615
1633
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1616
1634
 
1617
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1635
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1618
1636
  * ctypedef npy_longlong longlong_t
1619
1637
  *
1620
1638
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1623,7 +1641,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1623
1641
  */
1624
1642
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1625
1643
 
1626
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1644
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1627
1645
  *
1628
1646
  * ctypedef npy_ulong uint_t
1629
1647
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1632,7 +1650,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1632
1650
  */
1633
1651
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1634
1652
 
1635
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1653
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1636
1654
  * ctypedef npy_ulonglong ulonglong_t
1637
1655
  *
1638
1656
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1641,7 +1659,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1641
1659
  */
1642
1660
  typedef npy_intp __pyx_t_5numpy_intp_t;
1643
1661
 
1644
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1662
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1645
1663
  *
1646
1664
  * ctypedef npy_intp intp_t
1647
1665
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1650,7 +1668,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1650
1668
  */
1651
1669
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1652
1670
 
1653
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1671
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1654
1672
  * ctypedef npy_uintp uintp_t
1655
1673
  *
1656
1674
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1659,7 +1677,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1659
1677
  */
1660
1678
  typedef npy_double __pyx_t_5numpy_float_t;
1661
1679
 
1662
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1680
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1663
1681
  *
1664
1682
  * ctypedef npy_double float_t
1665
1683
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1668,7 +1686,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1668
1686
  */
1669
1687
  typedef npy_double __pyx_t_5numpy_double_t;
1670
1688
 
1671
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1689
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1672
1690
  * ctypedef npy_double float_t
1673
1691
  * ctypedef npy_double double_t
1674
1692
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1777,7 +1795,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1777
1795
 
1778
1796
  /*--- Type declarations ---*/
1779
1797
 
1780
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1798
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1781
1799
  * ctypedef npy_longdouble longdouble_t
1782
1800
  *
1783
1801
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1786,7 +1804,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1786
1804
  */
1787
1805
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1788
1806
 
1789
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1807
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1790
1808
  *
1791
1809
  * ctypedef npy_cfloat cfloat_t
1792
1810
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1795,7 +1813,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1795
1813
  */
1796
1814
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1797
1815
 
1798
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1816
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1799
1817
  * ctypedef npy_cfloat cfloat_t
1800
1818
  * ctypedef npy_cdouble cdouble_t
1801
1819
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1804,7 +1822,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1804
1822
  */
1805
1823
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1806
1824
 
1807
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1825
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1808
1826
  * ctypedef npy_clongdouble clongdouble_t
1809
1827
  *
1810
1828
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2019,8 +2037,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2019
2037
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2020
2038
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2021
2039
  #else
2022
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2023
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2040
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2041
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2024
2042
  #endif
2025
2043
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2026
2044
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2036,8 +2054,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2036
2054
  #else
2037
2055
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2038
2056
  #endif
2039
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2040
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2057
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2058
+ to have the same reference counting */
2059
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2041
2060
  #else
2042
2061
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2043
2062
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2340,22 +2359,22 @@ static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key);
2340
2359
  #endif
2341
2360
 
2342
2361
  /* TypeImport.proto */
2343
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2344
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2362
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2363
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2345
2364
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2346
2365
  #include <stdalign.h>
2347
2366
  #endif
2348
2367
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2349
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2368
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2350
2369
  #else
2351
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2370
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2352
2371
  #endif
2353
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2354
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2355
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2356
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2372
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2373
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2374
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2375
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2357
2376
  };
2358
- 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);
2377
+ 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);
2359
2378
  #endif
2360
2379
 
2361
2380
  /* Import.proto */
@@ -2468,7 +2487,7 @@ typedef struct {
2468
2487
  #endif
2469
2488
  void *defaults;
2470
2489
  int defaults_pyobjects;
2471
- size_t defaults_size; // used by FusedFunction for copying defaults
2490
+ size_t defaults_size;
2472
2491
  int flags;
2473
2492
  PyObject *defaults_tuple;
2474
2493
  PyObject *defaults_kwdict;
@@ -3920,7 +3939,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3920
3939
  #define __pyx_codeobj__16 __pyx_mstate_global->__pyx_codeobj__16
3921
3940
  /* #### Code section: module_code ### */
3922
3941
 
3923
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
3942
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
3924
3943
  *
3925
3944
  * @property
3926
3945
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3931,7 +3950,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3931
3950
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
3932
3951
  PyObject *__pyx_r;
3933
3952
 
3934
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
3953
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
3935
3954
  * """Returns a borrowed reference to the object owning the data/memory.
3936
3955
  * """
3937
3956
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -3941,7 +3960,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3941
3960
  __pyx_r = PyArray_BASE(__pyx_v_self);
3942
3961
  goto __pyx_L0;
3943
3962
 
3944
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
3963
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
3945
3964
  *
3946
3965
  * @property
3947
3966
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3954,7 +3973,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3954
3973
  return __pyx_r;
3955
3974
  }
3956
3975
 
3957
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
3976
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
3958
3977
  *
3959
3978
  * @property
3960
3979
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3968,7 +3987,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3968
3987
  PyArray_Descr *__pyx_t_1;
3969
3988
  __Pyx_RefNannySetupContext("descr", 1);
3970
3989
 
3971
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
3990
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
3972
3991
  * """Returns an owned reference to the dtype of the array.
3973
3992
  * """
3974
3993
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -3981,7 +4000,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3981
4000
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
3982
4001
  goto __pyx_L0;
3983
4002
 
3984
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
4003
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
3985
4004
  *
3986
4005
  * @property
3987
4006
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3996,7 +4015,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3996
4015
  return __pyx_r;
3997
4016
  }
3998
4017
 
3999
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4018
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4000
4019
  *
4001
4020
  * @property
4002
4021
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4007,7 +4026,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4007
4026
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
4008
4027
  int __pyx_r;
4009
4028
 
4010
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
4029
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
4011
4030
  * """Returns the number of dimensions in the array.
4012
4031
  * """
4013
4032
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -4017,7 +4036,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4017
4036
  __pyx_r = PyArray_NDIM(__pyx_v_self);
4018
4037
  goto __pyx_L0;
4019
4038
 
4020
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4039
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4021
4040
  *
4022
4041
  * @property
4023
4042
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4030,7 +4049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4030
4049
  return __pyx_r;
4031
4050
  }
4032
4051
 
4033
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4052
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4034
4053
  *
4035
4054
  * @property
4036
4055
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4041,7 +4060,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4041
4060
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
4042
4061
  npy_intp *__pyx_r;
4043
4062
 
4044
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
4063
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
4045
4064
  * Can return NULL for 0-dimensional arrays.
4046
4065
  * """
4047
4066
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -4051,7 +4070,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4051
4070
  __pyx_r = PyArray_DIMS(__pyx_v_self);
4052
4071
  goto __pyx_L0;
4053
4072
 
4054
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4073
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4055
4074
  *
4056
4075
  * @property
4057
4076
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4064,7 +4083,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4064
4083
  return __pyx_r;
4065
4084
  }
4066
4085
 
4067
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4086
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4068
4087
  *
4069
4088
  * @property
4070
4089
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4075,7 +4094,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4075
4094
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
4076
4095
  npy_intp *__pyx_r;
4077
4096
 
4078
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
4097
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
4079
4098
  * The number of elements matches the number of dimensions of the array (ndim).
4080
4099
  * """
4081
4100
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -4085,7 +4104,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4085
4104
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
4086
4105
  goto __pyx_L0;
4087
4106
 
4088
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4107
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4089
4108
  *
4090
4109
  * @property
4091
4110
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4098,7 +4117,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4098
4117
  return __pyx_r;
4099
4118
  }
4100
4119
 
4101
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
4120
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
4102
4121
  *
4103
4122
  * @property
4104
4123
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4109,7 +4128,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4109
4128
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
4110
4129
  npy_intp __pyx_r;
4111
4130
 
4112
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
4131
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
4113
4132
  * """Returns the total size (in number of elements) of the array.
4114
4133
  * """
4115
4134
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -4119,7 +4138,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4119
4138
  __pyx_r = PyArray_SIZE(__pyx_v_self);
4120
4139
  goto __pyx_L0;
4121
4140
 
4122
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
4141
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
4123
4142
  *
4124
4143
  * @property
4125
4144
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4132,7 +4151,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4132
4151
  return __pyx_r;
4133
4152
  }
4134
4153
 
4135
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
4154
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
4136
4155
  *
4137
4156
  * @property
4138
4157
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4143,7 +4162,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4143
4162
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
4144
4163
  char *__pyx_r;
4145
4164
 
4146
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
4165
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
4147
4166
  * of `PyArray_DATA()` instead, which returns a 'void*'.
4148
4167
  * """
4149
4168
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -4153,7 +4172,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4153
4172
  __pyx_r = PyArray_BYTES(__pyx_v_self);
4154
4173
  goto __pyx_L0;
4155
4174
 
4156
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
4175
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
4157
4176
  *
4158
4177
  * @property
4159
4178
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4166,7 +4185,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4166
4185
  return __pyx_r;
4167
4186
  }
4168
4187
 
4169
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
4188
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
4170
4189
  * ctypedef npy_cdouble complex_t
4171
4190
  *
4172
4191
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4183,7 +4202,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4183
4202
  int __pyx_clineno = 0;
4184
4203
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
4185
4204
 
4186
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
4205
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
4187
4206
  *
4188
4207
  * cdef inline object PyArray_MultiIterNew1(a):
4189
4208
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -4197,7 +4216,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4197
4216
  __pyx_t_1 = 0;
4198
4217
  goto __pyx_L0;
4199
4218
 
4200
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
4219
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
4201
4220
  * ctypedef npy_cdouble complex_t
4202
4221
  *
4203
4222
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4216,7 +4235,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4216
4235
  return __pyx_r;
4217
4236
  }
4218
4237
 
4219
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
4238
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
4220
4239
  * return PyArray_MultiIterNew(1, <void*>a)
4221
4240
  *
4222
4241
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4233,7 +4252,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4233
4252
  int __pyx_clineno = 0;
4234
4253
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
4235
4254
 
4236
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
4255
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
4237
4256
  *
4238
4257
  * cdef inline object PyArray_MultiIterNew2(a, b):
4239
4258
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -4247,7 +4266,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4247
4266
  __pyx_t_1 = 0;
4248
4267
  goto __pyx_L0;
4249
4268
 
4250
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
4269
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
4251
4270
  * return PyArray_MultiIterNew(1, <void*>a)
4252
4271
  *
4253
4272
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4266,7 +4285,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4266
4285
  return __pyx_r;
4267
4286
  }
4268
4287
 
4269
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
4288
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
4270
4289
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4271
4290
  *
4272
4291
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4283,7 +4302,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4283
4302
  int __pyx_clineno = 0;
4284
4303
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
4285
4304
 
4286
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
4305
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
4287
4306
  *
4288
4307
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
4289
4308
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -4297,7 +4316,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4297
4316
  __pyx_t_1 = 0;
4298
4317
  goto __pyx_L0;
4299
4318
 
4300
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
4319
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
4301
4320
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4302
4321
  *
4303
4322
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4316,7 +4335,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4316
4335
  return __pyx_r;
4317
4336
  }
4318
4337
 
4319
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
4338
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
4320
4339
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4321
4340
  *
4322
4341
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4333,7 +4352,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4333
4352
  int __pyx_clineno = 0;
4334
4353
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
4335
4354
 
4336
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
4355
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
4337
4356
  *
4338
4357
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
4339
4358
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -4347,7 +4366,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4347
4366
  __pyx_t_1 = 0;
4348
4367
  goto __pyx_L0;
4349
4368
 
4350
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
4369
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
4351
4370
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4352
4371
  *
4353
4372
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4366,7 +4385,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4366
4385
  return __pyx_r;
4367
4386
  }
4368
4387
 
4369
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
4388
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
4370
4389
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4371
4390
  *
4372
4391
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4383,7 +4402,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4383
4402
  int __pyx_clineno = 0;
4384
4403
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
4385
4404
 
4386
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
4405
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
4387
4406
  *
4388
4407
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
4389
4408
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -4397,7 +4416,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4397
4416
  __pyx_t_1 = 0;
4398
4417
  goto __pyx_L0;
4399
4418
 
4400
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
4419
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
4401
4420
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4402
4421
  *
4403
4422
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4416,7 +4435,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4416
4435
  return __pyx_r;
4417
4436
  }
4418
4437
 
4419
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
4438
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
4420
4439
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4421
4440
  *
4422
4441
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4430,7 +4449,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4430
4449
  int __pyx_t_1;
4431
4450
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
4432
4451
 
4433
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
4452
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
4434
4453
  *
4435
4454
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4436
4455
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4440,7 +4459,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4440
4459
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
4441
4460
  if (__pyx_t_1) {
4442
4461
 
4443
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
4462
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
4444
4463
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4445
4464
  * if PyDataType_HASSUBARRAY(d):
4446
4465
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -4452,7 +4471,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4452
4471
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
4453
4472
  goto __pyx_L0;
4454
4473
 
4455
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
4474
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
4456
4475
  *
4457
4476
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4458
4477
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4461,7 +4480,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4461
4480
  */
4462
4481
  }
4463
4482
 
4464
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
4483
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
4465
4484
  * return <tuple>d.subarray.shape
4466
4485
  * else:
4467
4486
  * return () # <<<<<<<<<<<<<<
@@ -4475,7 +4494,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4475
4494
  goto __pyx_L0;
4476
4495
  }
4477
4496
 
4478
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
4497
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
4479
4498
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4480
4499
  *
4481
4500
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4490,7 +4509,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4490
4509
  return __pyx_r;
4491
4510
  }
4492
4511
 
4493
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
4512
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
4494
4513
  * int _import_umath() except -1
4495
4514
  *
4496
4515
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4504,7 +4523,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4504
4523
  const char *__pyx_filename = NULL;
4505
4524
  int __pyx_clineno = 0;
4506
4525
 
4507
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
4526
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
4508
4527
  *
4509
4528
  * cdef inline void set_array_base(ndarray arr, object base):
4510
4529
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -4513,7 +4532,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4513
4532
  */
4514
4533
  Py_INCREF(__pyx_v_base);
4515
4534
 
4516
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
4535
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
4517
4536
  * cdef inline void set_array_base(ndarray arr, object base):
4518
4537
  * Py_INCREF(base) # important to do this before stealing the reference below!
4519
4538
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -4522,7 +4541,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4522
4541
  */
4523
4542
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 970, __pyx_L1_error)
4524
4543
 
4525
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
4544
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
4526
4545
  * int _import_umath() except -1
4527
4546
  *
4528
4547
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4537,7 +4556,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4537
4556
  __pyx_L0:;
4538
4557
  }
4539
4558
 
4540
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
4559
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
4541
4560
  * PyArray_SetBaseObject(arr, base)
4542
4561
  *
4543
4562
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4552,7 +4571,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4552
4571
  int __pyx_t_1;
4553
4572
  __Pyx_RefNannySetupContext("get_array_base", 1);
4554
4573
 
4555
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
4574
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
4556
4575
  *
4557
4576
  * cdef inline object get_array_base(ndarray arr):
4558
4577
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -4561,7 +4580,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4561
4580
  */
4562
4581
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
4563
4582
 
4564
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
4583
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
4565
4584
  * cdef inline object get_array_base(ndarray arr):
4566
4585
  * base = PyArray_BASE(arr)
4567
4586
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4571,7 +4590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4571
4590
  __pyx_t_1 = (__pyx_v_base == NULL);
4572
4591
  if (__pyx_t_1) {
4573
4592
 
4574
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
4593
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
4575
4594
  * base = PyArray_BASE(arr)
4576
4595
  * if base is NULL:
4577
4596
  * return None # <<<<<<<<<<<<<<
@@ -4582,7 +4601,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4582
4601
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
4583
4602
  goto __pyx_L0;
4584
4603
 
4585
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
4604
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
4586
4605
  * cdef inline object get_array_base(ndarray arr):
4587
4606
  * base = PyArray_BASE(arr)
4588
4607
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4591,7 +4610,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4591
4610
  */
4592
4611
  }
4593
4612
 
4594
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
4613
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
4595
4614
  * if base is NULL:
4596
4615
  * return None
4597
4616
  * return <object>base # <<<<<<<<<<<<<<
@@ -4603,7 +4622,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4603
4622
  __pyx_r = ((PyObject *)__pyx_v_base);
4604
4623
  goto __pyx_L0;
4605
4624
 
4606
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
4625
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
4607
4626
  * PyArray_SetBaseObject(arr, base)
4608
4627
  *
4609
4628
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4618,7 +4637,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4618
4637
  return __pyx_r;
4619
4638
  }
4620
4639
 
4621
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
4640
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
4622
4641
  * # Versions of the import_* functions which are more suitable for
4623
4642
  * # Cython code.
4624
4643
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4642,7 +4661,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4642
4661
  int __pyx_clineno = 0;
4643
4662
  __Pyx_RefNannySetupContext("import_array", 1);
4644
4663
 
4645
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
4664
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
4646
4665
  * # Cython code.
4647
4666
  * cdef inline int import_array() except -1:
4648
4667
  * try: # <<<<<<<<<<<<<<
@@ -4658,7 +4677,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4658
4677
  __Pyx_XGOTREF(__pyx_t_3);
4659
4678
  /*try:*/ {
4660
4679
 
4661
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
4680
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
4662
4681
  * cdef inline int import_array() except -1:
4663
4682
  * try:
4664
4683
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -4667,7 +4686,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4667
4686
  */
4668
4687
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 982, __pyx_L3_error)
4669
4688
 
4670
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
4689
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
4671
4690
  * # Cython code.
4672
4691
  * cdef inline int import_array() except -1:
4673
4692
  * try: # <<<<<<<<<<<<<<
@@ -4681,7 +4700,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4681
4700
  goto __pyx_L8_try_end;
4682
4701
  __pyx_L3_error:;
4683
4702
 
4684
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
4703
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
4685
4704
  * try:
4686
4705
  * __pyx_import_array()
4687
4706
  * except Exception: # <<<<<<<<<<<<<<
@@ -4696,7 +4715,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4696
4715
  __Pyx_XGOTREF(__pyx_t_6);
4697
4716
  __Pyx_XGOTREF(__pyx_t_7);
4698
4717
 
4699
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
4718
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
4700
4719
  * __pyx_import_array()
4701
4720
  * except Exception:
4702
4721
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -4711,7 +4730,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4711
4730
  }
4712
4731
  goto __pyx_L5_except_error;
4713
4732
 
4714
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
4733
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
4715
4734
  * # Cython code.
4716
4735
  * cdef inline int import_array() except -1:
4717
4736
  * try: # <<<<<<<<<<<<<<
@@ -4727,7 +4746,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4727
4746
  __pyx_L8_try_end:;
4728
4747
  }
4729
4748
 
4730
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
4749
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
4731
4750
  * # Versions of the import_* functions which are more suitable for
4732
4751
  * # Cython code.
4733
4752
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4750,7 +4769,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4750
4769
  return __pyx_r;
4751
4770
  }
4752
4771
 
4753
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
4772
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
4754
4773
  * raise ImportError("numpy.core.multiarray failed to import")
4755
4774
  *
4756
4775
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4774,7 +4793,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4774
4793
  int __pyx_clineno = 0;
4775
4794
  __Pyx_RefNannySetupContext("import_umath", 1);
4776
4795
 
4777
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
4796
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
4778
4797
  *
4779
4798
  * cdef inline int import_umath() except -1:
4780
4799
  * try: # <<<<<<<<<<<<<<
@@ -4790,7 +4809,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4790
4809
  __Pyx_XGOTREF(__pyx_t_3);
4791
4810
  /*try:*/ {
4792
4811
 
4793
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
4812
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
4794
4813
  * cdef inline int import_umath() except -1:
4795
4814
  * try:
4796
4815
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4799,7 +4818,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4799
4818
  */
4800
4819
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 988, __pyx_L3_error)
4801
4820
 
4802
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
4821
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
4803
4822
  *
4804
4823
  * cdef inline int import_umath() except -1:
4805
4824
  * try: # <<<<<<<<<<<<<<
@@ -4813,7 +4832,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4813
4832
  goto __pyx_L8_try_end;
4814
4833
  __pyx_L3_error:;
4815
4834
 
4816
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
4835
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
4817
4836
  * try:
4818
4837
  * _import_umath()
4819
4838
  * except Exception: # <<<<<<<<<<<<<<
@@ -4828,7 +4847,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4828
4847
  __Pyx_XGOTREF(__pyx_t_6);
4829
4848
  __Pyx_XGOTREF(__pyx_t_7);
4830
4849
 
4831
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
4850
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
4832
4851
  * _import_umath()
4833
4852
  * except Exception:
4834
4853
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4843,7 +4862,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4843
4862
  }
4844
4863
  goto __pyx_L5_except_error;
4845
4864
 
4846
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
4865
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
4847
4866
  *
4848
4867
  * cdef inline int import_umath() except -1:
4849
4868
  * try: # <<<<<<<<<<<<<<
@@ -4859,7 +4878,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4859
4878
  __pyx_L8_try_end:;
4860
4879
  }
4861
4880
 
4862
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
4881
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
4863
4882
  * raise ImportError("numpy.core.multiarray failed to import")
4864
4883
  *
4865
4884
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4882,7 +4901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4882
4901
  return __pyx_r;
4883
4902
  }
4884
4903
 
4885
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
4904
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
4886
4905
  * raise ImportError("numpy.core.umath failed to import")
4887
4906
  *
4888
4907
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -4906,7 +4925,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4906
4925
  int __pyx_clineno = 0;
4907
4926
  __Pyx_RefNannySetupContext("import_ufunc", 1);
4908
4927
 
4909
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
4928
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
4910
4929
  *
4911
4930
  * cdef inline int import_ufunc() except -1:
4912
4931
  * try: # <<<<<<<<<<<<<<
@@ -4922,7 +4941,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4922
4941
  __Pyx_XGOTREF(__pyx_t_3);
4923
4942
  /*try:*/ {
4924
4943
 
4925
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
4944
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
4926
4945
  * cdef inline int import_ufunc() except -1:
4927
4946
  * try:
4928
4947
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4931,7 +4950,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4931
4950
  */
4932
4951
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 994, __pyx_L3_error)
4933
4952
 
4934
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
4953
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
4935
4954
  *
4936
4955
  * cdef inline int import_ufunc() except -1:
4937
4956
  * try: # <<<<<<<<<<<<<<
@@ -4945,7 +4964,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4945
4964
  goto __pyx_L8_try_end;
4946
4965
  __pyx_L3_error:;
4947
4966
 
4948
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
4967
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
4949
4968
  * try:
4950
4969
  * _import_umath()
4951
4970
  * except Exception: # <<<<<<<<<<<<<<
@@ -4960,7 +4979,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4960
4979
  __Pyx_XGOTREF(__pyx_t_6);
4961
4980
  __Pyx_XGOTREF(__pyx_t_7);
4962
4981
 
4963
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
4982
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
4964
4983
  * _import_umath()
4965
4984
  * except Exception:
4966
4985
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4975,7 +4994,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4975
4994
  }
4976
4995
  goto __pyx_L5_except_error;
4977
4996
 
4978
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
4997
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
4979
4998
  *
4980
4999
  * cdef inline int import_ufunc() except -1:
4981
5000
  * try: # <<<<<<<<<<<<<<
@@ -4991,7 +5010,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4991
5010
  __pyx_L8_try_end:;
4992
5011
  }
4993
5012
 
4994
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
5013
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
4995
5014
  * raise ImportError("numpy.core.umath failed to import")
4996
5015
  *
4997
5016
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -5014,7 +5033,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5014
5033
  return __pyx_r;
5015
5034
  }
5016
5035
 
5017
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5036
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5018
5037
  *
5019
5038
  *
5020
5039
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5025,7 +5044,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5025
5044
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
5026
5045
  int __pyx_r;
5027
5046
 
5028
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
5047
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
5029
5048
  * bool
5030
5049
  * """
5031
5050
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -5035,7 +5054,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5035
5054
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
5036
5055
  goto __pyx_L0;
5037
5056
 
5038
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5057
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5039
5058
  *
5040
5059
  *
5041
5060
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5048,7 +5067,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5048
5067
  return __pyx_r;
5049
5068
  }
5050
5069
 
5051
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5070
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5052
5071
  *
5053
5072
  *
5054
5073
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5059,7 +5078,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5059
5078
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
5060
5079
  int __pyx_r;
5061
5080
 
5062
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
5081
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
5063
5082
  * bool
5064
5083
  * """
5065
5084
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -5069,7 +5088,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5069
5088
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
5070
5089
  goto __pyx_L0;
5071
5090
 
5072
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5091
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5073
5092
  *
5074
5093
  *
5075
5094
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5082,7 +5101,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5082
5101
  return __pyx_r;
5083
5102
  }
5084
5103
 
5085
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
5104
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
5086
5105
  *
5087
5106
  *
5088
5107
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5093,7 +5112,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5093
5112
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
5094
5113
  npy_datetime __pyx_r;
5095
5114
 
5096
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
5115
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
5097
5116
  * also needed. That can be found using `get_datetime64_unit`.
5098
5117
  * """
5099
5118
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5103,7 +5122,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5103
5122
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
5104
5123
  goto __pyx_L0;
5105
5124
 
5106
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
5125
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
5107
5126
  *
5108
5127
  *
5109
5128
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5116,7 +5135,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5116
5135
  return __pyx_r;
5117
5136
  }
5118
5137
 
5119
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
5138
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
5120
5139
  *
5121
5140
  *
5122
5141
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5127,7 +5146,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5127
5146
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
5128
5147
  npy_timedelta __pyx_r;
5129
5148
 
5130
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
5149
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
5131
5150
  * returns the int64 value underlying scalar numpy timedelta64 object
5132
5151
  * """
5133
5152
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5137,7 +5156,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5137
5156
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
5138
5157
  goto __pyx_L0;
5139
5158
 
5140
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
5159
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
5141
5160
  *
5142
5161
  *
5143
5162
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5150,7 +5169,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5150
5169
  return __pyx_r;
5151
5170
  }
5152
5171
 
5153
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
5172
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
5154
5173
  *
5155
5174
  *
5156
5175
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5161,7 +5180,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5161
5180
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
5162
5181
  NPY_DATETIMEUNIT __pyx_r;
5163
5182
 
5164
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
5183
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
5165
5184
  * returns the unit part of the dtype for a numpy datetime64 object.
5166
5185
  * """
5167
5186
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -5169,7 +5188,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
5169
5188
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
5170
5189
  goto __pyx_L0;
5171
5190
 
5172
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
5191
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
5173
5192
  *
5174
5193
  *
5175
5194
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -9875,7 +9894,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9875
9894
  __Pyx_RefNannyDeclarations
9876
9895
  __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
9877
9896
 
9878
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
9897
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
9879
9898
  * __pyx_import_array()
9880
9899
  * except Exception:
9881
9900
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -9886,7 +9905,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9886
9905
  __Pyx_GOTREF(__pyx_tuple_);
9887
9906
  __Pyx_GIVEREF(__pyx_tuple_);
9888
9907
 
9889
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
9908
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
9890
9909
  * _import_umath()
9891
9910
  * except Exception:
9892
9911
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -10104,33 +10123,33 @@ static int __Pyx_modinit_type_import_code(void) {
10104
10123
  /*--- Type import code ---*/
10105
10124
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
10106
10125
  __Pyx_GOTREF(__pyx_t_1);
10107
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
10126
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
10108
10127
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
10109
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
10128
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
10110
10129
  #elif CYTHON_COMPILING_IN_LIMITED_API
10111
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
10130
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
10112
10131
  #else
10113
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
10132
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
10114
10133
  #endif
10115
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
10134
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
10116
10135
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
10117
10136
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 202, __pyx_L1_error)
10118
10137
  __Pyx_GOTREF(__pyx_t_1);
10119
- __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(1, 202, __pyx_L1_error)
10120
- __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(1, 225, __pyx_L1_error)
10121
- __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(1, 229, __pyx_L1_error)
10122
- __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(1, 238, __pyx_L1_error)
10123
- __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(1, 809, __pyx_L1_error)
10124
- __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(1, 811, __pyx_L1_error)
10125
- __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(1, 813, __pyx_L1_error)
10126
- __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(1, 815, __pyx_L1_error)
10127
- __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(1, 817, __pyx_L1_error)
10128
- __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(1, 819, __pyx_L1_error)
10129
- __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(1, 821, __pyx_L1_error)
10130
- __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(1, 823, __pyx_L1_error)
10131
- __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(1, 825, __pyx_L1_error)
10132
- __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(1, 827, __pyx_L1_error)
10133
- __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(1, 866, __pyx_L1_error)
10138
+ __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(1, 202, __pyx_L1_error)
10139
+ __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(1, 225, __pyx_L1_error)
10140
+ __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(1, 229, __pyx_L1_error)
10141
+ __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(1, 238, __pyx_L1_error)
10142
+ __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(1, 809, __pyx_L1_error)
10143
+ __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(1, 811, __pyx_L1_error)
10144
+ __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(1, 813, __pyx_L1_error)
10145
+ __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(1, 815, __pyx_L1_error)
10146
+ __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(1, 817, __pyx_L1_error)
10147
+ __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(1, 819, __pyx_L1_error)
10148
+ __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(1, 821, __pyx_L1_error)
10149
+ __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(1, 823, __pyx_L1_error)
10150
+ __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(1, 825, __pyx_L1_error)
10151
+ __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(1, 827, __pyx_L1_error)
10152
+ __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(1, 866, __pyx_L1_error)
10134
10153
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
10135
10154
  __Pyx_RefNannyFinishContext();
10136
10155
  return 0;
@@ -11466,11 +11485,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
11466
11485
  {
11467
11486
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
11468
11487
  if (unlikely(eq != 0)) {
11469
- if (unlikely(eq < 0)) return NULL; // error
11488
+ if (unlikely(eq < 0)) return NULL;
11470
11489
  return kwvalues[i];
11471
11490
  }
11472
11491
  }
11473
- return NULL; // not found (no exception set)
11492
+ return NULL;
11474
11493
  }
11475
11494
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
11476
11495
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -11583,7 +11602,7 @@ static int __Pyx_ParseOptionalKeywords(
11583
11602
  if (*name) {
11584
11603
  values[name-argnames] = value;
11585
11604
  #if CYTHON_AVOID_BORROWED_REFS
11586
- Py_INCREF(value); // transfer ownership of value to values
11605
+ Py_INCREF(value);
11587
11606
  Py_DECREF(key);
11588
11607
  #endif
11589
11608
  key = NULL;
@@ -11602,7 +11621,7 @@ static int __Pyx_ParseOptionalKeywords(
11602
11621
  && _PyString_Eq(**name, key)) {
11603
11622
  values[name-argnames] = value;
11604
11623
  #if CYTHON_AVOID_BORROWED_REFS
11605
- value = NULL; // ownership transferred to values
11624
+ value = NULL;
11606
11625
  #endif
11607
11626
  break;
11608
11627
  }
@@ -11634,7 +11653,7 @@ static int __Pyx_ParseOptionalKeywords(
11634
11653
  if (cmp == 0) {
11635
11654
  values[name-argnames] = value;
11636
11655
  #if CYTHON_AVOID_BORROWED_REFS
11637
- value = NULL; // ownership transferred to values
11656
+ value = NULL;
11638
11657
  #endif
11639
11658
  break;
11640
11659
  }
@@ -12281,9 +12300,10 @@ static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject *key) {
12281
12300
 
12282
12301
  /* UnpackUnboundCMethod */
12283
12302
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
12303
+ PyObject *result;
12284
12304
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
12285
12305
  if (unlikely(!selfless_args)) return NULL;
12286
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
12306
+ result = PyObject_Call(method, selfless_args, kwargs);
12287
12307
  Py_DECREF(selfless_args);
12288
12308
  return result;
12289
12309
  }
@@ -12579,9 +12599,10 @@ static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) {
12579
12599
 
12580
12600
  /* IterFinish */
12581
12601
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
12602
+ PyObject* exc_type;
12582
12603
  __Pyx_PyThreadState_declare
12583
12604
  __Pyx_PyThreadState_assign
12584
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
12605
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
12585
12606
  if (unlikely(exc_type)) {
12586
12607
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
12587
12608
  return -1;
@@ -12626,10 +12647,10 @@ static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) {
12626
12647
  #endif
12627
12648
 
12628
12649
  /* TypeImport */
12629
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
12630
- #define __PYX_HAVE_RT_ImportType_3_0_7
12631
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
12632
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
12650
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
12651
+ #define __PYX_HAVE_RT_ImportType_3_0_10
12652
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
12653
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
12633
12654
  {
12634
12655
  PyObject *result = 0;
12635
12656
  char warning[200];
@@ -12683,7 +12704,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
12683
12704
  module_name, class_name, size, basicsize+itemsize);
12684
12705
  goto bad;
12685
12706
  }
12686
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
12707
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
12687
12708
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
12688
12709
  PyErr_Format(PyExc_ValueError,
12689
12710
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -12691,7 +12712,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
12691
12712
  module_name, class_name, size, basicsize, basicsize+itemsize);
12692
12713
  goto bad;
12693
12714
  }
12694
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
12715
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
12695
12716
  PyOS_snprintf(warning, sizeof(warning),
12696
12717
  "%s.%s size changed, may indicate binary incompatibility. "
12697
12718
  "Expected %zd from C header, got %zd from PyObject",
@@ -13993,7 +14014,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
13993
14014
  default:
13994
14015
  return NULL;
13995
14016
  }
13996
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
14017
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
13997
14018
  }
13998
14019
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
13999
14020
  {
@@ -14452,7 +14473,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
14452
14473
  #else
14453
14474
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
14454
14475
  #endif
14455
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
14476
+ Py_XDECREF(py_funcname);
14456
14477
  return py_code;
14457
14478
  bad:
14458
14479
  Py_XDECREF(py_funcname);