├── .gitignore ├── README.md ├── UmaExplorer.sln └── UmaExplorer ├── UmaExplorer.cpp ├── UmaExplorer.h ├── UmaExplorer.rc ├── UmaExplorer.vcxproj ├── UmaExplorer.vcxproj.filters ├── dllmain.cpp ├── egui ├── egui.cpp ├── egui.h ├── egui_hierarchy.cpp ├── egui_hierarchy.h ├── egui_inspector_main.cpp ├── egui_inspector_main.h ├── egui_inspector_sub.cpp ├── egui_inspector_sub.h ├── egui_utils.cpp └── egui_utils.h ├── hook.cpp ├── hook.hpp ├── hooks ├── UnityEngine_CoreModule │ └── UnityEngine │ │ ├── UnityEngine_Component.cpp │ │ ├── UnityEngine_Component.hpp │ │ ├── UnityEngine_GameObject.cpp │ │ ├── UnityEngine_GameObject.hpp │ │ ├── UnityEngine_Material.cpp │ │ ├── UnityEngine_Material.hpp │ │ ├── UnityEngine_MaterialPropertyBlock.cpp │ │ ├── UnityEngine_MaterialPropertyBlock.hpp │ │ ├── UnityEngine_Object.cpp │ │ ├── UnityEngine_Object.hpp │ │ ├── UnityEngine_Transform.cpp │ │ └── UnityEngine_Transform.hpp └── mscorlib │ ├── System │ ├── System_Array.cpp │ ├── System_Array.hpp │ ├── System_Guid.cpp │ ├── System_Guid.hpp │ ├── System_RuntimeType.cpp │ ├── System_RuntimeType.hpp │ ├── System_Type.cpp │ └── System_Type.hpp │ └── System_Reflection │ ├── System_Reflection_Assembly.cpp │ ├── System_Reflection_Assembly.hpp │ ├── System_Reflection_PropertyInfo.cpp │ └── System_Reflection_PropertyInfo.hpp ├── il2cpp ├── il2cpp_symbols.cpp ├── il2cpp_symbols.hpp ├── il2cpp_symbols_resolver.cpp └── il2cpp_symbols_resolver.hpp ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── include ├── MinHook.h ├── jsoncons │ ├── allocator_holder.hpp │ ├── allocator_set.hpp │ ├── basic_json.hpp │ ├── bigint.hpp │ ├── byte_string.hpp │ ├── config │ │ ├── binary_config.hpp │ │ ├── compiler_support.hpp │ │ ├── jsoncons_config.hpp │ │ └── version.hpp │ ├── conv_error.hpp │ ├── decode_json.hpp │ ├── decode_traits.hpp │ ├── detail │ │ ├── endian.hpp │ │ ├── grisu3.hpp │ │ ├── heap_string.hpp │ │ ├── optional.hpp │ │ ├── parse_number.hpp │ │ ├── span.hpp │ │ ├── string_view.hpp │ │ └── write_number.hpp │ ├── encode_json.hpp │ ├── encode_traits.hpp │ ├── extension_traits.hpp │ ├── item_event_reader.hpp │ ├── item_event_visitor.hpp │ ├── json.hpp │ ├── json_array.hpp │ ├── json_content_handler.hpp │ ├── json_cursor.hpp │ ├── json_decoder.hpp │ ├── json_encoder.hpp │ ├── json_error.hpp │ ├── json_exception.hpp │ ├── json_filter.hpp │ ├── json_fwd.hpp │ ├── json_object.hpp │ ├── json_options.hpp │ ├── json_parser.hpp │ ├── json_reader.hpp │ ├── json_traits_macros.hpp │ ├── json_traits_macros_deprecated.hpp │ ├── json_type.hpp │ ├── json_type_traits.hpp │ ├── json_visitor.hpp │ ├── pretty_print.hpp │ ├── ser_context.hpp │ ├── sink.hpp │ ├── source.hpp │ ├── source_adaptor.hpp │ ├── staj_cursor.hpp │ ├── staj_iterator.hpp │ ├── tag_type.hpp │ ├── text_source_adaptor.hpp │ ├── typed_array_view.hpp │ ├── unicode_traits.hpp │ ├── uri.hpp │ └── value_converter.hpp ├── jsoncons_ext │ ├── bson │ │ ├── bson.hpp │ │ ├── bson_cursor.hpp │ │ ├── bson_decimal128.hpp │ │ ├── bson_decimal128.hpp.bak │ │ ├── bson_encoder.hpp │ │ ├── bson_error.hpp │ │ ├── bson_oid.hpp │ │ ├── bson_options.hpp │ │ ├── bson_parser.hpp │ │ ├── bson_reader.hpp │ │ ├── bson_type.hpp │ │ ├── decode_bson.hpp │ │ └── encode_bson.hpp │ ├── cbor │ │ ├── cbor.hpp │ │ ├── cbor_cursor.hpp │ │ ├── cbor_detail.hpp │ │ ├── cbor_encoder.hpp │ │ ├── cbor_error.hpp │ │ ├── cbor_event_reader.hpp │ │ ├── cbor_options.hpp │ │ ├── cbor_parser.hpp │ │ ├── cbor_reader.hpp │ │ ├── decode_cbor.hpp │ │ └── encode_cbor.hpp │ ├── csv │ │ ├── csv.hpp │ │ ├── csv_cursor.hpp │ │ ├── csv_encoder.hpp │ │ ├── csv_error.hpp │ │ ├── csv_options.hpp │ │ ├── csv_parser.hpp │ │ ├── csv_reader.hpp │ │ ├── csv_serializer.hpp │ │ ├── decode_csv.hpp │ │ └── encode_csv.hpp │ ├── jmespath │ │ ├── jmespath.hpp │ │ └── jmespath_error.hpp │ ├── jsonpatch │ │ ├── jsonpatch.hpp │ │ └── jsonpatch_error.hpp │ ├── jsonpath │ │ ├── expression.hpp │ │ ├── flatten.hpp │ │ ├── json_location.hpp │ │ ├── json_query.hpp │ │ ├── jsonpath.hpp │ │ ├── jsonpath_error.hpp │ │ ├── jsonpath_expression.hpp │ │ ├── jsonpath_selector.hpp │ │ └── jsonpath_utilities.hpp │ ├── jsonpointer │ │ ├── jsonpointer.hpp │ │ └── jsonpointer_error.hpp │ ├── jsonschema │ │ ├── compilation_context.hpp │ │ ├── draft7 │ │ │ ├── keyword_factory.hpp │ │ │ └── schema_draft7.hpp │ │ ├── format_validator.hpp │ │ ├── json_validator.hpp │ │ ├── jsonschema.hpp │ │ ├── jsonschema_error.hpp │ │ ├── keyword_validator.hpp │ │ ├── keywords.hpp │ │ ├── schema.hpp │ │ ├── schema_location.hpp │ │ └── schema_version.hpp │ ├── mergepatch │ │ └── mergepatch.hpp │ ├── msgpack │ │ ├── decode_msgpack.hpp │ │ ├── encode_msgpack.hpp │ │ ├── msgpack.hpp │ │ ├── msgpack_cursor.hpp │ │ ├── msgpack_encoder.hpp │ │ ├── msgpack_error.hpp │ │ ├── msgpack_event_reader.hpp │ │ ├── msgpack_options.hpp │ │ ├── msgpack_parser.hpp │ │ ├── msgpack_reader.hpp │ │ └── msgpack_type.hpp │ └── ubjson │ │ ├── decode_ubjson.hpp │ │ ├── encode_ubjson.hpp │ │ ├── ubjson.hpp │ │ ├── ubjson_cursor.hpp │ │ ├── ubjson_encoder.hpp │ │ ├── ubjson_error.hpp │ │ ├── ubjson_options.hpp │ │ ├── ubjson_parser.hpp │ │ ├── ubjson_reader.hpp │ │ └── ubjson_type.hpp ├── nlohmann │ ├── adl_serializer.hpp │ ├── byte_container_with_subtype.hpp │ ├── detail │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ ├── json.hpp │ ├── json_fwd.hpp │ ├── ordered_map.hpp │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp └── parallel_hashmap │ ├── btree.h │ ├── meminfo.h │ ├── phmap.h │ ├── phmap_base.h │ ├── phmap_bits.h │ ├── phmap_config.h │ ├── phmap_dump.h │ ├── phmap_fwd_decl.h │ └── phmap_utils.h ├── lib └── minhook.x64d.lib ├── proxy.cpp ├── resource.h ├── utils ├── common_utils.cpp ├── common_utils.h ├── globals.cpp ├── globals.h ├── hook_utils.cpp ├── hook_utils.h └── il2cpp_utils.h ├── version.asm └── version.def /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UmaExplorer 2 | -------------------------------------------------------------------------------- /UmaExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer.sln -------------------------------------------------------------------------------- /UmaExplorer/UmaExplorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/UmaExplorer.cpp -------------------------------------------------------------------------------- /UmaExplorer/UmaExplorer.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace UmaExplorer 4 | { 5 | int imguiwindow(); 6 | } -------------------------------------------------------------------------------- /UmaExplorer/UmaExplorer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/UmaExplorer.rc -------------------------------------------------------------------------------- /UmaExplorer/UmaExplorer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/UmaExplorer.vcxproj -------------------------------------------------------------------------------- /UmaExplorer/UmaExplorer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/UmaExplorer.vcxproj.filters -------------------------------------------------------------------------------- /UmaExplorer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/dllmain.cpp -------------------------------------------------------------------------------- /UmaExplorer/egui/egui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui.cpp -------------------------------------------------------------------------------- /UmaExplorer/egui/egui.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int imguiwindow(); -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_hierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_hierarchy.cpp -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_hierarchy.h -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_inspector_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_inspector_main.cpp -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_inspector_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_inspector_main.h -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_inspector_sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_inspector_sub.cpp -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_inspector_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_inspector_sub.h -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_utils.cpp -------------------------------------------------------------------------------- /UmaExplorer/egui/egui_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/egui/egui_utils.h -------------------------------------------------------------------------------- /UmaExplorer/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hook.cpp -------------------------------------------------------------------------------- /UmaExplorer/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hook.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Component.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Component.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_GameObject.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_GameObject.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Material.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Material.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Material.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_MaterialPropertyBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_MaterialPropertyBlock.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_MaterialPropertyBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_MaterialPropertyBlock.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Object.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Object.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Transform.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/UnityEngine_CoreModule/UnityEngine/UnityEngine_Transform.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_Array.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_Array.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_Guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_Guid.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_Guid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_Guid.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_RuntimeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_RuntimeType.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_RuntimeType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_RuntimeType.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_Type.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System/System_Type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System/System_Type.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_Assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_Assembly.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_Assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_Assembly.hpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_PropertyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_PropertyInfo.cpp -------------------------------------------------------------------------------- /UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_PropertyInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/hooks/mscorlib/System_Reflection/System_Reflection_PropertyInfo.hpp -------------------------------------------------------------------------------- /UmaExplorer/il2cpp/il2cpp_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/il2cpp/il2cpp_symbols.cpp -------------------------------------------------------------------------------- /UmaExplorer/il2cpp/il2cpp_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/il2cpp/il2cpp_symbols.hpp -------------------------------------------------------------------------------- /UmaExplorer/il2cpp/il2cpp_symbols_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/il2cpp/il2cpp_symbols_resolver.cpp -------------------------------------------------------------------------------- /UmaExplorer/il2cpp/il2cpp_symbols_resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/il2cpp/il2cpp_symbols_resolver.hpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imconfig.h -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui.cpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui.h -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_internal.h -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /UmaExplorer/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /UmaExplorer/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /UmaExplorer/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /UmaExplorer/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/MinHook.h -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/allocator_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/allocator_holder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/allocator_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/allocator_set.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/basic_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/basic_json.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/bigint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/bigint.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/byte_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/byte_string.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/config/binary_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/config/binary_config.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/config/compiler_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/config/compiler_support.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/config/jsoncons_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/config/jsoncons_config.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/config/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/config/version.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/conv_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/conv_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/decode_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/decode_json.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/decode_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/decode_traits.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/endian.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/grisu3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/grisu3.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/heap_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/heap_string.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/optional.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/parse_number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/parse_number.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/span.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/string_view.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/detail/write_number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/detail/write_number.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/encode_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/encode_json.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/encode_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/encode_traits.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/extension_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/extension_traits.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/item_event_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/item_event_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/item_event_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/item_event_visitor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_array.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_content_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_content_handler.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_cursor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_decoder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_encoder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_exception.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_filter.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_fwd.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_object.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_options.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_parser.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_traits_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_traits_macros.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_traits_macros_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_traits_macros_deprecated.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_type.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_type_traits.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/json_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/json_visitor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/pretty_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/pretty_print.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/ser_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/ser_context.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/sink.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/source.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/source_adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/source_adaptor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/staj_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/staj_cursor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/staj_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/staj_iterator.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/tag_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/tag_type.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/text_source_adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/text_source_adaptor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/typed_array_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/typed_array_view.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/unicode_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/unicode_traits.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/uri.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons/value_converter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons/value_converter.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_cursor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_decimal128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_decimal128.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_decimal128.hpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_decimal128.hpp.bak -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_encoder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_oid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_oid.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_options.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_parser.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/bson_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/bson_type.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/decode_bson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/decode_bson.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/bson/encode_bson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/bson/encode_bson.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_cursor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_detail.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_encoder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_event_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_event_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_options.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_parser.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/cbor_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/cbor_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/decode_cbor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/decode_cbor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/cbor/encode_cbor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/cbor/encode_cbor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv_cursor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv_encoder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv_options.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv_parser.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/csv_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/csv_serializer.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/decode_csv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/decode_csv.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/csv/encode_csv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/csv/encode_csv.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jmespath/jmespath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jmespath/jmespath.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jmespath/jmespath_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jmespath/jmespath_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpatch/jsonpatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpatch/jsonpatch.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpatch/jsonpatch_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpatch/jsonpatch_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/expression.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/flatten.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/json_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/json_location.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/json_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/json_query.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_expression.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_selector.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpath/jsonpath_utilities.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpointer/jsonpointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpointer/jsonpointer.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonpointer/jsonpointer_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonpointer/jsonpointer_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/compilation_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/compilation_context.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/draft7/keyword_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/draft7/keyword_factory.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/draft7/schema_draft7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/draft7/schema_draft7.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/format_validator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/format_validator.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/json_validator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/json_validator.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/jsonschema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/jsonschema.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/jsonschema_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/jsonschema_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/keyword_validator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/keyword_validator.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/keywords.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/keywords.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/schema.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/schema_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/schema_location.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/jsonschema/schema_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/jsonschema/schema_version.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/mergepatch/mergepatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/mergepatch/mergepatch.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/decode_msgpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/decode_msgpack.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/encode_msgpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/encode_msgpack.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_cursor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_encoder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_event_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_event_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_options.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_parser.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/msgpack/msgpack_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/msgpack/msgpack_type.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/decode_ubjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/decode_ubjson.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/encode_ubjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/encode_ubjson.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson_cursor.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson_encoder.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson_error.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson_options.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson_parser.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/jsoncons_ext/ubjson/ubjson_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/jsoncons_ext/ubjson/ubjson_type.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/iterators/internal_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/iterators/internal_iterator.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/iterators/json_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/iterators/json_reverse_iterator.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/iterators/primitive_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/iterators/primitive_iterator.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/btree.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/meminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/meminfo.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/phmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/phmap.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/phmap_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/phmap_base.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/phmap_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/phmap_bits.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/phmap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/phmap_config.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/phmap_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/phmap_dump.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/phmap_fwd_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/phmap_fwd_decl.h -------------------------------------------------------------------------------- /UmaExplorer/include/parallel_hashmap/phmap_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/include/parallel_hashmap/phmap_utils.h -------------------------------------------------------------------------------- /UmaExplorer/lib/minhook.x64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/lib/minhook.x64d.lib -------------------------------------------------------------------------------- /UmaExplorer/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/proxy.cpp -------------------------------------------------------------------------------- /UmaExplorer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/resource.h -------------------------------------------------------------------------------- /UmaExplorer/utils/common_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/utils/common_utils.cpp -------------------------------------------------------------------------------- /UmaExplorer/utils/common_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/utils/common_utils.h -------------------------------------------------------------------------------- /UmaExplorer/utils/globals.cpp: -------------------------------------------------------------------------------- 1 | #include "globals.h" 2 | 3 | void* unity_base = nullptr; -------------------------------------------------------------------------------- /UmaExplorer/utils/globals.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern void* unity_base; -------------------------------------------------------------------------------- /UmaExplorer/utils/hook_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/utils/hook_utils.cpp -------------------------------------------------------------------------------- /UmaExplorer/utils/hook_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/utils/hook_utils.h -------------------------------------------------------------------------------- /UmaExplorer/utils/il2cpp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/utils/il2cpp_utils.h -------------------------------------------------------------------------------- /UmaExplorer/version.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/version.asm -------------------------------------------------------------------------------- /UmaExplorer/version.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundewsSera/UmaExplorer/HEAD/UmaExplorer/version.def --------------------------------------------------------------------------------