1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
// Copyright Jim Bosch 2010-2012. // Copyright Stefan Seefeld 2016. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef boost_python_numpy_ndarray_hpp_ #define boost_python_numpy_ndarray_hpp_ /** * @brief Object manager and various utilities for numpy.ndarray. */ #include #include #include #include #include #include #include namespace boost { namespace python { namespace numpy { /** * @brief A boost.python "object manager" (subclass of object) for numpy.ndarray. * * @todo This could have a lot more functionality (like boost::python::numeric::array). * Right now all that exists is what was needed to move raw data between C++ and Python. */ class BOOST_NUMPY_DECL ndarray : public object { /** * @brief An internal struct that's byte-compatible with PyArrayObject. * * This is just a hack to allow inline access to this stuff while hiding numpy/arrayobject.h * from the user. */ struct array_struct { PyObject_HEAD char * data; int nd; Py_intptr_t * shape; Py_intptr_t * strides; PyObject * base; PyObject * descr; int flags; PyObject * weakreflist; }; /// @brief Return the held Python object as an array_struct. array_struct * get_struct() const { return reinterpret_cast(this->ptr()); } public: /** * @brief Enum to represent (some) of Numpy's internal flags. * * These don't match the actual Numpy flag values; we can't get those without including * numpy/arrayobject.h or copying them directly. That's very unfortunate. * * @todo I'm torn about whether this should be an enum. It's very convenient to not * make these simple integer values for overloading purposes, but the need to * define every possible combination and custom bitwise operators is ugly. */ enum bitflag { NONE=0x0, C_CONTIGUOUS=0x1, F_CONTIGUOUS=0x2, V_CONTIGUOUS=0x1|0x2, ALIGNED=0x4, WRITEABLE=0x8, BEHAVED=0x4|0x8, CARRAY_RO=0x1|0x4, CARRAY=0x1|0x4|0x8, CARRAY_MIS=0x1|0x8, FARRAY_RO=0x2|0x4, FARRAY=0x2|0x4|0x8, FARRAY_MIS=0x2|0x8, UPDATE_ALL=0x1|0x2|0x4, VARRAY=0x1|0x2|0x8, ALL=0x1|0x2|0x4|0x8 }; BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS(ndarray, object); /// @brief Return a view of the scalar with the given dtype. ndarray view(dtype const & dt) const; /// @brief Copy the array, cast to a specified type. ndarray astype(dtype const & dt) const; /// @brief Copy the scalar (deep for all non-object fields). ndarray copy() const; /// @brief Return the size of the nth dimension. raises IndexError if k not in [-get_nd() : get_nd()-1 ] Py_intptr_t shape(int n) const; /// @brief Return the stride of the nth dimension. raises IndexError if k not in [-get_nd() : get_nd()-1] Py_intptr_t strides(int n) const; /** * @brief Return the array's raw data pointer. * * This returns char so stride math works properly on it. It's pretty much * expected that the user will have to reinterpret_cast it. */ char * get_data() const { return get_struct()->data; } /// @brief Return the array's data-type descriptor object. dtype get_dtype() const; /// @brief Return the object that owns the array's data, or None if the array owns its own data. object get_base() const; /// @brief Set the object that owns the array's data. Use with care. void set_base(object const & base); /// @brief Return the shape of the array as an array of integers (length == get_nd()). Py_intptr_t const * get_shape() const { return get_struct()->shape; } /// @brief Return the stride of the array as an array of integers (length == get_nd()). Py_intptr_t const * get_strides() const { return get_struct()->strides; } /// @brief Return the number of array dimensions. int get_nd() const { return get_struct()->nd; } /// @brief Return the array flags. bitflag get_flags() const; /// @brief Reverse the dimensions of the array. ndarray transpose() const; /// @brief Eliminate any unit-sized dimensions. ndarray squeeze() const; /// @brief Equivalent to self.reshape(*shape) in Python. ndarray reshape(python::tuple const & shape) const; /** * @brief If the array contains only a single element, return it as an array scalar; otherwise return * the array. * * @internal This is simply a call to PyArray_Return(); */ object scalarize() const; }; /** * @brief Construct a new array with the given shape and data type, with data initialized to zero. */ BOOST_NUMPY_DECL ndarray zeros(python::tuple const & shape, dtype const & dt); BOOST_NUMPY_DECL ndarray zeros(int nd, Py_intptr_t const * shape, dtype const & dt); /** * @brief Construct a new array with the given shape and data type, with data left uninitialized. */ BOOST_NUMPY_DECL ndarray empty(python::tuple const & shape, dtype const & dt); BOOST_NUMPY_DECL ndarray empty(int nd, Py_intptr_t const * shape, dtype const & dt); /** * @brief Construct a new array from an arbitrary Python sequence. * * @todo This does't seem to handle ndarray subtypes the same way that "numpy.array" does in Python. */ BOOST_NUMPY_DECL ndarray array(object const & obj); BOOST_NUMPY_DECL ndarray array(object const & obj, dtype const & dt); namespace detail { BOOST_NUMPY_DECL ndarray from_data_impl(void * data, dtype const & dt, std::vector const & shape, std::vector const & strides, object const & owner, bool writeable); template ndarray from_data_impl(void * data, dtype const & dt, Container shape, Container strides, object const & owner, bool writeable, typename boost::enable_if< boost::python::detail::is_integral >::type * enabled = NULL) { std::vector shape_(shape.begin(),shape.end()); std::vector strides_(strides.begin(), strides.end()); return from_data_impl(data, dt, shape_, strides_, owner, writeable); } BOOST_NUMPY_DECL ndarray from_data_impl(void * data, dtype const & dt, object const & shape, object const & strides, object const & owner, bool writeable); } // namespace boost::python::numpy::detail /** * @brief Construct a new ndarray object from a raw pointer. * * @param[in] data Raw pointer to the first element of the array. * @param[in] dt Data type descriptor. Often retrieved with dtype::get_builtin(). * @param[in] shape Shape of the array as STL container of integers; must have begin() and end(). * @param[in] strides Shape of the array as STL container of integers; must have begin() and end(). * @param[in] owner An arbitray Python object that owns that data pointer. The array object will * keep a reference to the object, and decrement it's reference count when the * array goes out of scope. Pass None at your own peril. * * @todo Should probably take ranges of iterators rather than actual container objects. */ template inline ndarray from_data(void * data, dtype const & dt, Container shape, Container strides, python::object const & owner) { return numpy::detail::from_data_impl(data, dt, shape, strides, owner, true); } /** * @brief Construct a new ndarray object from a raw pointer. * * @param[in] data Raw pointer to the first element of the array. * @param[in] dt Data type descriptor. Often retrieved with dtype::get_builtin(). * @param[in] shape Shape of the array as STL container of integers; must have begin() and end(). * @param[in] strides Shape of the array as STL container of integers; must have begin() and end(). * @param[in] owner An arbitray Python object that owns that data pointer. The array object will * keep a reference to the object, and decrement it's reference count when the * array goes out of scope. Pass None at your own peril. * * This overload takes a const void pointer and sets the "writeable" flag of the array to false. * * @todo Should probably take ranges of iterators rather than actual container objects. */ template inline ndarray from_data(void const * data, dtype const & dt, Container shape, Container strides, python::object const & owner) { return numpy::detail::from_data_impl(const_cast(data), dt, shape, strides, owner, false); } /** * @brief Transform an arbitrary object into a numpy array with the given requirements. * * @param[in] obj An arbitrary python object to convert. Arrays that meet the requirements * will be passed through directly. * @param[in] dt Data type descriptor. Often retrieved with dtype::get_builtin(). * @param[in] nd_min Minimum number of dimensions. * @param[in] nd_max Maximum number of dimensions. * @param[in] flags Bitwise OR of flags specifying additional requirements. */ BOOST_NUMPY_DECL ndarray from_object(object const & obj, dtype const & dt, int nd_min, int nd_max, ndarray::bitflag flags=ndarray::NONE); BOOST_NUMPY_DECL inline ndarray from_object(object const & obj, dtype const & dt, int nd, ndarray::bitflag flags=ndarray::NONE) { return from_object(obj, dt, nd, nd, flags); } BOOST_NUMPY_DECL inline ndarray from_object(object const & obj, dtype const & dt, ndarray::bitflag flags=ndarray::NONE) { return from_object(obj, dt, 0, 0, flags); } BOOST_NUMPY_DECL ndarray from_object(object const & obj, int nd_min, int nd_max, ndarray::bitflag flags=ndarray::NONE); BOOST_NUMPY_DECL inline ndarray from_object(object const & obj, int nd, ndarray::bitflag flags=ndarray::NONE) { return from_object(obj, nd, nd, flags); } BOOST_NUMPY_DECL inline ndarray from_object(object const & obj, ndarray::bitflag flags=ndarray::NONE) { return from_object(obj, 0, 0, flags); } BOOST_NUMPY_DECL inline ndarray::bitflag operator|(ndarray::bitflag a, ndarray::bitflag b) { return ndarray::bitflag(int(a) | int(b)); } BOOST_NUMPY_DECL inline ndarray::bitflag operator&(ndarray::bitflag a, ndarray::bitflag b) { return ndarray::bitflag(int(a) & int(b)); } } // namespace boost::python::numpy namespace converter { NUMPY_OBJECT_MANAGER_TRAITS(numpy::ndarray); }}} // namespace boost::python::converter #endif