#ifndef _LIBCPP___CHARCONV_TABLES
#define _LIBCPP___CHARCONV_TABLES
#include <__config>
#include <cstdint>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#if _LIBCPP_STD_VER >= 17
namespace __itoa {
inline constexpr char __base_2_lut[64] = …;
inline constexpr char __base_8_lut[128] = …;
inline constexpr char __base_16_lut[512] = …;
inline constexpr uint32_t __pow10_32[10] = …;
inline constexpr uint64_t __pow10_64[20] = …;
# ifndef _LIBCPP_HAS_NO_INT128
inline constexpr int __pow10_128_offset = …;
inline constexpr __uint128_t __pow10_128[40] = …;
# endif
inline constexpr char __digits_base_10[200] = …;
}
#endif
_LIBCPP_END_NAMESPACE_STD
#endif