diff --git a/annotated.html b/annotated.html
index 1405082..ad0381c 100644
--- a/annotated.html
+++ b/annotated.html
@@ -82,49 +82,46 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();
Here are the classes, structs, unions and interfaces with brief descriptions:
diff --git a/annotated_dup.js b/annotated_dup.js
index b98144a..5c638a6 100644
--- a/annotated_dup.js
+++ b/annotated_dup.js
@@ -1,9 +1,5 @@
var annotated_dup =
[
- [ "MyLibrary", null, [
- [ "Example", "classMyLibrary_1_1Example.html", "classMyLibrary_1_1Example" ],
- [ "SubclassExample", "classMyLibrary_1_1SubclassExample.html", "classMyLibrary_1_1SubclassExample" ]
- ] ],
[ "nlohmann", "namespacenlohmann.html", "namespacenlohmann" ],
[ "RenderD7", "namespaceRenderD7.html", "namespaceRenderD7" ],
[ "std", null, [
diff --git a/classes.html b/classes.html
index d6e08c6..7dc0341 100644
--- a/classes.html
+++ b/classes.html
@@ -86,76 +86,75 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
|
-iteration_proxy (nlohmann::detail) |
-
- |
-position_t (nlohmann::detail) |
+iter_impl (nlohmann::detail) |
+lexer (nlohmann::detail) |
+parser (nlohmann::detail) |
-
- |
-
- |
+
iteration_proxy (nlohmann::detail) |
+Log |
+position_t (nlohmann::detail) |
adl_serializer (nlohmann) |
file_input_adapter (nlohmann::detail) |
-ordered_map (nlohmann) |
+
+ |
+
+ |
+
+ |
|
|
-json_pointer (nlohmann) |
-other_error (nlohmann::detail) |
-Sheet (RenderD7) |
-json_reverse_iterator (nlohmann::detail) |
-out_of_range (nlohmann::detail) |
-sound |
+
json_pointer (nlohmann) |
+ordered_map (nlohmann) |
+Sheet (RenderD7) |
basic_json (nlohmann) |
hash< nlohmann::json > (std) |
-json_sax (nlohmann) |
-output_adapter_protocol (nlohmann::detail) |
-Sprite (RenderD7) |
+json_reverse_iterator (nlohmann::detail) |
+other_error (nlohmann::detail) |
+sound |
binary_reader (nlohmann::detail) |
|
-json_sax_dom_parser (nlohmann::detail) |
-output_stream_adapter (nlohmann::detail) |
-SubclassExample (MyLibrary) |
+json_sax (nlohmann) |
+out_of_range (nlohmann::detail) |
+Sprite (RenderD7) |
binary_writer (nlohmann::detail) |
-basic_json::json_value (nlohmann) |
-output_string_adapter (nlohmann::detail) |
+json_sax_dom_parser (nlohmann::detail) |
+output_adapter_protocol (nlohmann::detail) |
|
byte_container_with_subtype (nlohmann) |
Image (RenderD7) |
-
- |
-output_vector_adapter (nlohmann::detail) |
+basic_json::json_value (nlohmann) |
+output_stream_adapter (nlohmann::detail) |
|
input_stream_adapter (nlohmann::detail) |
-
+ |
|
+output_string_adapter (nlohmann::detail) |
type_error (nlohmann::detail) |
internal_iterator (nlohmann::detail) |
-less<::nlohmann::detail::value_t > (std) |
- |
-Example (MyLibrary) |
-invalid_iterator (nlohmann::detail) |
-lexer (nlohmann::detail) |
-parse_error (nlohmann::detail) |
+output_vector_adapter (nlohmann::detail) |
|
exception (nlohmann::detail) |
-iter_impl (nlohmann::detail) |
-Log |
-parser (nlohmann::detail) |
+invalid_iterator (nlohmann::detail) |
+less<::nlohmann::detail::value_t > (std) |
+
+ |
+ |
+ | | | |
+ | | | parse_error (nlohmann::detail) |
|
| | | | |
diff --git a/classnlohmann_1_1basic__json.html b/classnlohmann_1_1basic__json.html
index e4ee47a..ab054db 100644
--- a/classnlohmann_1_1basic__json.html
+++ b/classnlohmann_1_1basic__json.html
@@ -1420,7 +1420,7 @@ JSON Merge Patch functions
-
+
Default type
With the default values for ObjectType (std::map
), StringType (std::string
), and AllocatorType (std::allocator
), the default value for object_t is:
std::map<
@@ -1429,7 +1429,7 @@ Default type
std::less<std::string>,
std::allocator<std::pair<const std::string, basic_json>>
>
-
+
Behavior
The choice of object_t influences the behavior of the JSON class. With the default type, objects have the following behavior:
@@ -1438,13 +1438,13 @@ Behavior
- Internally, name/value pairs are stored in lexicographical order of the names. Objects will also be serialized (see dump) in this order. For instance,
{"b": 1, "a": 2}
and {"a": 2, "b": 1}
will be stored and serialized as {"a": 2, "b": 1}
.
- When comparing objects, the order of the name/value pairs is irrelevant. This makes objects interoperable in the sense that they will not be affected by these differences. For instance,
{"b": 1, "a": 2}
and {"a": 2, "b": 1}
will be treated as equal.
-
+
Limits
RFC 7159 specifies:
An implementation may set limits on the maximum depth of nesting.
In this class, the object's limit of nesting is not explicitly constrained. However, a maximum depth of nesting may be introduced by the compiler or runtime environment. A theoretical limit can be queried by calling the max_size function of a JSON object.
-
+
Storage
Objects are stored as pointers in a basic_json type. That is, for any access to object values, a pointer of type object_t*
must be dereferenced.
- See also
- array_t – type for an array value
@@ -1477,20 +1477,20 @@ Storage
-
+
Default type
With the default values for ArrayType (std::vector
) and AllocatorType (std::allocator
), the default value for array_t is:
std::vector<
std::allocator<basic_json>
>
-
+
Limits
RFC 7159 specifies:
An implementation may set limits on the maximum depth of nesting.
In this class, the array's limit of nesting is not explicitly constrained. However, a maximum depth of nesting may be introduced by the compiler or runtime environment. A theoretical limit can be queried by calling the max_size function of a JSON array.
-
+
Storage
Arrays are stored as pointers in a basic_json type. That is, for any access to array values, a pointer of type array_t*
must be dereferenced.
- See also
- object_t – type for an object value
@@ -1521,20 +1521,20 @@ Storage
-
+
Default type
With the default values for StringType (std::string
), the default value for string_t is:
+
Encoding
Strings are stored in UTF-8 encoding. Therefore, functions like std::string::size()
or std::string::length()
return the number of bytes in the string rather than the number of characters or glyphs.
-
+
String comparison
RFC 7159 states:
Software implementations are typically required to test names of object members for equality. Implementations that transform the textual representation into sequences of Unicode code units and then perform the comparison numerically, code unit by code unit, are interoperable in the sense that implementations will agree in all cases on equality or inequality of two strings. For example, implementations that compare strings with escaped characters unconverted may incorrectly find that "a\\b"
and "a\u005Cb"
are not equal.
This implementation is interoperable as it does compare strings code unit by code unit.
-
+
Storage
String values are stored as pointers in a basic_json type. That is, for any access to string values, a pointer of type string_t*
must be dereferenced.
- Since
- version 1.0.0
@@ -1556,11 +1556,11 @@ Storage
a type for a boolean
RFC 7159 implicitly describes a boolean as a type which differentiates the two literals true
and false
.
To store objects in C++, a type is defined by the template parameter BooleanType which chooses the type to use.
-
+
Default type
With the default values for BooleanType (bool
), the default value for boolean_t is:
+
Storage
Boolean values are stored directly inside a basic_json type.
- Since
- version 1.0.0
@@ -1585,17 +1585,17 @@ Storage
This description includes both integer and floating-point numbers. However, C++ allows more precise storage if it is known whether the number is a signed integer, an unsigned integer or a floating-point number. Therefore, three different types, number_integer_t, number_unsigned_t and number_float_t are used.
To store integer numbers in C++, a type is defined by the template parameter NumberIntegerType which chooses the type to use.
-
+
Default type
With the default values for NumberIntegerType (int64_t
), the default value for number_integer_t is:
+
Default behavior
- The restrictions about leading zeros is not enforced in C++. Instead, leading zeros in integer literals lead to an interpretation as octal number. Internally, the value will be stored as decimal number. For instance, the C++ integer literal
010
will be serialized to 8
. During deserialization, leading zeros yield an error.
- Not-a-number (NaN) values will be serialized to
null
.
-
+
Limits
RFC 7159 specifies:
An implementation may set limits on the range and precision of numbers.
@@ -1605,7 +1605,7 @@ Limits
Note that when such software is used, numbers that are integers and are in the range
are interoperable in the sense that implementations will agree exactly on their numeric values.
As this range is a subrange of the exactly supported range [INT64_MIN, INT64_MAX], this class's integer type is interoperable.
-
+
Storage
Integer number values are stored directly inside a basic_json type.
- See also
- number_float_t – type for number values (floating-point)
@@ -1633,17 +1633,17 @@ Storage
This description includes both integer and floating-point numbers. However, C++ allows more precise storage if it is known whether the number is a signed integer, an unsigned integer or a floating-point number. Therefore, three different types, number_integer_t, number_unsigned_t and number_float_t are used.
To store unsigned integer numbers in C++, a type is defined by the template parameter NumberUnsignedType which chooses the type to use.
-
+
Default type
With the default values for NumberUnsignedType (uint64_t
), the default value for number_unsigned_t is:
+
Default behavior
- The restrictions about leading zeros is not enforced in C++. Instead, leading zeros in integer literals lead to an interpretation as octal number. Internally, the value will be stored as decimal number. For instance, the C++ integer literal
010
will be serialized to 8
. During deserialization, leading zeros yield an error.
- Not-a-number (NaN) values will be serialized to
null
.
-
+
Limits
RFC 7159 specifies:
An implementation may set limits on the range and precision of numbers.
@@ -1653,7 +1653,7 @@ Limits
Note that when such software is used, numbers that are integers and are in the range
are interoperable in the sense that implementations will agree exactly on their numeric values.
As this range is a subrange (when considered in conjunction with the number_integer_t type) of the exactly supported range [0, UINT64_MAX], this class's integer type is interoperable.
-
+
Storage
Integer number values are stored directly inside a basic_json type.
- See also
- number_float_t – type for number values (floating-point)
@@ -1681,23 +1681,23 @@ Storage
This description includes both integer and floating-point numbers. However, C++ allows more precise storage if it is known whether the number is a signed integer, an unsigned integer or a floating-point number. Therefore, three different types, number_integer_t, number_unsigned_t and number_float_t are used.
To store floating-point numbers in C++, a type is defined by the template parameter NumberFloatType which chooses the type to use.
-
+
Default type
With the default values for NumberFloatType (double
), the default value for number_float_t is:
+
Default behavior
- The restrictions about leading zeros is not enforced in C++. Instead, leading zeros in floating-point literals will be ignored. Internally, the value will be stored as decimal number. For instance, the C++ floating-point literal
01.2
will be serialized to 1.2
. During deserialization, leading zeros yield an error.
- Not-a-number (NaN) values will be serialized to
null
.
-
+
Limits
RFC 7159 states:
This specification allows implementations to set limits on the range and precision of numbers accepted. Since software that implements IEEE 754-2008 binary64 (double precision) numbers is generally available and widely used, good interoperability can be achieved by implementations that expect no more precision or range than these provide, in the sense that implementations will approximate JSON numbers within the expected precision.
This implementation does exactly follow this approach, as it uses double precision floating-point numbers. Note values smaller than -1.79769313486232e+308
and values greater than 1.79769313486232e+308
will be stored as NaN internally and be serialized to null
.
-
+
Storage
Floating-point number values are stored directly inside a basic_json type.
- See also
- number_integer_t – type for number values (integer)
@@ -1733,13 +1733,13 @@ Storage
None of these impose any limitations on the internal representation other than the basic unit of storage be some type of array whose parts are decomposable into bytes.
The default representation of this binary format is a std::vector<std::uint8_t>
, which is a very common way to represent a byte array in modern C++.
-
+
Default type
The default values for BinaryType is std::vector<std::uint8_t>
-
+
Storage
Binary Arrays are stored as pointers in a basic_json type. That is, for any access to array values, a pointer of the type binary_t*
must be dereferenced.
-
+
Notes on subtypes
- CBOR
@@ -6056,7 +6056,7 @@ Illustration from cppreference.com
@exceptionsafety Strong guarantee: if an exception is thrown, there are no changes in the JSON value.
@complexity Constant.
- Note
- The name of this function is not yet final and may change in the future.
-- Deprecated:
- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use items() instead; that is, replace
json::iterator_wrapper(j)
with j.items()
.
+- Deprecated:
- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use items() instead; that is, replace
json::iterator_wrapper(j)
with j.items()
.
@@ -6114,7 +6114,7 @@ Illustration from cppreference.com
@exceptionsafety Strong guarantee: if an exception is thrown, there are no changes in the JSON value.
@complexity Constant.
- Note
- The name of this function is not yet final and may change in the future.
-- Deprecated:
- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use items() instead; that is, replace
json::iterator_wrapper(j)
with j.items()
.
+- Deprecated:
- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use items() instead; that is, replace
json::iterator_wrapper(j)
with j.items()
.
@@ -11049,7 +11049,7 @@ template<typename ScalarType , typename std::enable_if< std::is_scalar<
@@ -11089,7 +11089,7 @@ template<typename ScalarType , typename std::enable_if< std::is_scalar<
deserialize from stream
-
- Deprecated:
- This stream operator is deprecated and will be removed in version 4.0.0 of the library. Please use operator>>(std::istream&, basic_json&) instead; that is, replace calls like
j << i;
with i >> j;
.
+
- Deprecated:
- This stream operator is deprecated and will be removed in version 4.0.0 of the library. Please use operator>>(std::istream&, basic_json&) instead; that is, replace calls like
j << i;
with i >> j;
.
- Since
- version 1.0.0; deprecated since version 3.0.0
diff --git a/deprecated.html b/deprecated.html
index 47eb892..a855457 100644
--- a/deprecated.html
+++ b/deprecated.html
@@ -81,14 +81,12 @@ $(document).ready(function(){initNavTree('deprecated.html',''); initResizable();
-- Member MyLibrary::Example::test (const std::string &test)
-- None of this will be deprecated, because it's beautiful!
- Member nlohmann::basic_json::iterator_wrapper (reference ref) noexcept
-- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use items() instead; that is, replace
json::iterator_wrapper(j)
with j.items()
.
+- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use items() instead; that is, replace
json::iterator_wrapper(j)
with j.items()
.
- Member nlohmann::basic_json::operator<< (basic_json &j, std::istream &i)
-- This stream operator is deprecated and will be removed in version 4.0.0 of the library. Please use operator>>(std::istream&, basic_json&) instead; that is, replace calls like
j << i;
with i >> j;
.
+- This stream operator is deprecated and will be removed in version 4.0.0 of the library. Please use operator>>(std::istream&, basic_json&) instead; that is, replace calls like
j << i;
with i >> j;
.
- Member nlohmann::basic_json::operator>> (const basic_json &j, std::ostream &o)
-- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use operator<<(std::ostream&, const basic_json&) instead; that is, replace calls like
j >> o;
with o << j;
.
+- This stream operator is deprecated and will be removed in future 4.0.0 of the library. Please use operator<<(std::ostream&, const basic_json&) instead; that is, replace calls like
j >> o;
with o << j;
.
diff --git a/functions_func_l.html b/functions_func_l.html
index d02a8a6..a43d64e 100644
--- a/functions_func_l.html
+++ b/functions_func_l.html
@@ -94,9 +94,6 @@ $(document).ready(function(){initNavTree('functions_func_l.html',''); initResiza
- logDate()
: Log
-- long_function_with_many_parameters()
-: MyLibrary::SubclassExample
-
diff --git a/functions_func_t.html b/functions_func_t.html
index 6ccd3e2..c95a410 100644
--- a/functions_func_t.html
+++ b/functions_func_t.html
@@ -79,9 +79,6 @@ $(document).ready(function(){initNavTree('functions_func_t.html',''); initResiza
- t -
-- virtualfunc()
-: MyLibrary::SubclassExample
-
diff --git a/functions_l.html b/functions_l.html
index 868d66d..d6865d2 100644
--- a/functions_l.html
+++ b/functions_l.html
@@ -103,9 +103,6 @@ $(document).ready(function(){initNavTree('functions_l.html',''); initResizable()
logDate()
: Log
-long_function_with_many_parameters()
-: MyLibrary::SubclassExample
-
diff --git a/functions_t.html b/functions_t.html
index dd53590..d5eefb2 100644
--- a/functions_t.html
+++ b/functions_t.html
@@ -79,9 +79,6 @@ $(document).ready(function(){initNavTree('functions_t.html',''); initResizable()
Here is a list of all documented class members with links to the class documentation for each member:
- t -
diff --git a/hierarchy.html b/hierarchy.html
index 19ed070..87c88f9 100644
--- a/hierarchy.html
+++ b/hierarchy.html
@@ -87,40 +87,38 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
Cnlohmann::detail::binary_reader< BasicJsonType, InputAdapterType, SAX > | Deserialization of CBOR, MessagePack, and UBJSON values |
Cnlohmann::detail::binary_writer< BasicJsonType, CharType > | Serialization to CBOR and MessagePack values |
Cnlohmann::byte_container_with_subtype< BinaryType > | Internal type for a backed binary type |
- ▼CMyLibrary::Example | Example class to demonstrate the features of the custom CSS |
- CMyLibrary::SubclassExample | Some subclass |
- ▼Cnlohmann::detail::exception | General exception of the basic_json class |
- Cnlohmann::detail::invalid_iterator | Exception indicating errors with iterators |
- Cnlohmann::detail::other_error | Exception indicating other library errors |
- Cnlohmann::detail::out_of_range | Exception indicating access out of the defined range |
- Cnlohmann::detail::parse_error | Exception indicating a parse error |
- Cnlohmann::detail::type_error | Exception indicating executing a member function with a wrong type |
- Cnlohmann::detail::file_input_adapter | |
- Cstd::hash< nlohmann::json > | Hash value for JSON objects |
- CRenderD7::Image | Image Class |
- Cnlohmann::detail::input_stream_adapter | |
- Cnlohmann::detail::internal_iterator< BasicJsonType > | Iterator value |
- Cnlohmann::detail::internal_iterator< typename std::remove_const< BasicJsonType >::type > | |
- Cnlohmann::detail::iter_impl< BasicJsonType > | Template for a bidirectional iterator for the basic_json class This class implements a both iterators (iterator and const_iterator) for the basic_json class |
- Cnlohmann::detail::iteration_proxy< IteratorType > | Proxy class for the items() function |
- Cnlohmann::json_pointer< BasicJsonType > | JSON Pointer |
- Cnlohmann::detail::json_reverse_iterator< Base > | Template for a reverse iterator class |
- Cnlohmann::json_sax< BasicJsonType > | SAX interface |
- Cnlohmann::detail::json_sax_dom_parser< BasicJsonType > | SAX implementation to create a JSON value from SAX events |
- Cnlohmann::basic_json::json_value | JSON value |
- Cstd::less<::nlohmann::detail::value_t > | |
- Cnlohmann::detail::lexer< BasicJsonType, InputAdapterType > | Lexical analysis |
- CLog | |
- Cnlohmann::ordered_map< Key, T, IgnoredLess, Allocator > | |
- ▼Cnlohmann::detail::output_adapter_protocol< CharType > | Abstract output adapter interface |
- Cnlohmann::detail::output_stream_adapter< CharType > | Output adapter for output streams |
- Cnlohmann::detail::output_string_adapter< CharType, StringType > | Output adapter for basic_string |
- Cnlohmann::detail::output_vector_adapter< CharType > | Output adapter for byte vectors |
- Cnlohmann::detail::parser< BasicJsonType, InputAdapterType > | Syntax analysis |
- Cnlohmann::detail::position_t | Struct to capture the start position of the current token |
- CRenderD7::Sheet | |
- Csound | |
- CRenderD7::Sprite | Sprite Class |
+ ▼Cnlohmann::detail::exception | General exception of the basic_json class |
+ Cnlohmann::detail::invalid_iterator | Exception indicating errors with iterators |
+ Cnlohmann::detail::other_error | Exception indicating other library errors |
+ Cnlohmann::detail::out_of_range | Exception indicating access out of the defined range |
+ Cnlohmann::detail::parse_error | Exception indicating a parse error |
+ Cnlohmann::detail::type_error | Exception indicating executing a member function with a wrong type |
+ Cnlohmann::detail::file_input_adapter | |
+ Cstd::hash< nlohmann::json > | Hash value for JSON objects |
+ CRenderD7::Image | Image Class |
+ Cnlohmann::detail::input_stream_adapter | |
+ Cnlohmann::detail::internal_iterator< BasicJsonType > | Iterator value |
+ Cnlohmann::detail::internal_iterator< typename std::remove_const< BasicJsonType >::type > | |
+ Cnlohmann::detail::iter_impl< BasicJsonType > | Template for a bidirectional iterator for the basic_json class This class implements a both iterators (iterator and const_iterator) for the basic_json class |
+ Cnlohmann::detail::iteration_proxy< IteratorType > | Proxy class for the items() function |
+ Cnlohmann::json_pointer< BasicJsonType > | JSON Pointer |
+ Cnlohmann::detail::json_reverse_iterator< Base > | Template for a reverse iterator class |
+ Cnlohmann::json_sax< BasicJsonType > | SAX interface |
+ Cnlohmann::detail::json_sax_dom_parser< BasicJsonType > | SAX implementation to create a JSON value from SAX events |
+ Cnlohmann::basic_json::json_value | JSON value |
+ Cstd::less<::nlohmann::detail::value_t > | |
+ Cnlohmann::detail::lexer< BasicJsonType, InputAdapterType > | Lexical analysis |
+ CLog | |
+ Cnlohmann::ordered_map< Key, T, IgnoredLess, Allocator > | |
+ ▼Cnlohmann::detail::output_adapter_protocol< CharType > | Abstract output adapter interface |
+ Cnlohmann::detail::output_stream_adapter< CharType > | Output adapter for output streams |
+ Cnlohmann::detail::output_string_adapter< CharType, StringType > | Output adapter for basic_string |
+ Cnlohmann::detail::output_vector_adapter< CharType > | Output adapter for byte vectors |
+ Cnlohmann::detail::parser< BasicJsonType, InputAdapterType > | Syntax analysis |
+ Cnlohmann::detail::position_t | Struct to capture the start position of the current token |
+ CRenderD7::Sheet | |
+ Csound | |
+ CRenderD7::Sprite | Sprite Class |
diff --git a/hierarchy.js b/hierarchy.js
index 09cc037..868b798 100644
--- a/hierarchy.js
+++ b/hierarchy.js
@@ -5,9 +5,6 @@ var hierarchy =
[ "nlohmann::detail::binary_reader< BasicJsonType, InputAdapterType, SAX >", "classnlohmann_1_1detail_1_1binary__reader.html", null ],
[ "nlohmann::detail::binary_writer< BasicJsonType, CharType >", "classnlohmann_1_1detail_1_1binary__writer.html", null ],
[ "nlohmann::byte_container_with_subtype< BinaryType >", "classnlohmann_1_1byte__container__with__subtype.html", null ],
- [ "MyLibrary::Example", "classMyLibrary_1_1Example.html", [
- [ "MyLibrary::SubclassExample", "classMyLibrary_1_1SubclassExample.html", null ]
- ] ],
[ "nlohmann::detail::exception", "classnlohmann_1_1detail_1_1exception.html", [
[ "nlohmann::detail::invalid_iterator", "classnlohmann_1_1detail_1_1invalid__iterator.html", null ],
[ "nlohmann::detail::other_error", "classnlohmann_1_1detail_1_1other__error.html", null ],
diff --git a/navtreedata.js b/navtreedata.js
index 2f97db6..7bd1fef 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -23,9 +23,7 @@ for the JavaScript code in this file
var NAVTREE =
[
[ "Renderd7-nightly", "index.html", [
- [ "Todo List", "todo.html", null ],
[ "Deprecated List", "deprecated.html", null ],
- [ "Bug List", "bug.html", null ],
[ "Namespaces", "namespaces.html", [
[ "Namespace List", "namespaces.html", "namespaces_dup" ],
[ "Namespace Members", "namespacemembers.html", [
@@ -53,8 +51,8 @@ var NAVTREE =
var NAVTREEINDEX =
[
".html",
-"classnlohmann_1_1detail_1_1binary__reader.html#a4e4accd5a2a41bfb2f18a8a0fcc9421c",
-"index.html"
+"classnlohmann_1_1detail_1_1binary__reader.html#a7b6c2d4c95d56751e233e285a5f1fea7",
+"namespacemembers_type.html"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index ba94db3..69781e5 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX0 =
{
-".html":[4,0,0],
-".html":[4,0,3],
-"annotated.html":[4,0],
-"bug.html":[2],
-"classLog.html":[4,0,4],
-"classLog.html#a0fbfda88fbee5027c89f6eb121059360":[4,0,4,1],
-"classLog.html#a4fa454441efc3a17a4f6d920523feb43":[4,0,4,4],
-"classLog.html#a7021cb723a7dff6a02f4e88705e25b13":[4,0,4,2],
-"classLog.html#a855b057411fe7f5c69dd5ee80b3d0179":[4,0,4,6],
-"classLog.html#ae0702c44f02849b538f2d4d761b56ee2":[4,0,4,5],
-"classLog.html#aef5a70d6e91909c792df54e501397d83":[4,0,4,3],
-"classLog.html#af6071a60aa52b6c1b511f99b4bc1b8fe":[4,0,4,0],
-"classMyLibrary_1_1Example.html":[4,0,0,0],
-"classMyLibrary_1_1Example.html#a1c0046b0674eb4cad09c5d3e943912b8":[4,0,0,0,0],
-"classMyLibrary_1_1SubclassExample.html":[4,0,0,1],
-"classMyLibrary_1_1SubclassExample.html#a6c1b7e5c6e56d31a169ddd42e8992300":[4,0,0,1,0],
-"classMyLibrary_1_1SubclassExample.html#ab9b6757c11771e490e157b01fc0f925f":[4,0,0,1,1],
-"classRenderD7_1_1Image.html":[4,0,2,0],
-"classRenderD7_1_1Image.html#a09b03eb72a948119f3eb3a472d3d6e74":[4,0,2,0,4],
-"classRenderD7_1_1Image.html#a46540860a8785e93be09b68751577f87":[4,0,2,0,0],
-"classRenderD7_1_1Image.html#a649e3ceb6376199a2c246b5a59eb3de8":[4,0,2,0,3],
-"classRenderD7_1_1Image.html#a90f1afb002590c82f5667dfc8c2e74b5":[4,0,2,0,5],
-"classRenderD7_1_1Image.html#aa65130a589ba2bdf8d9388cd4c1baac3":[4,0,2,0,2],
-"classRenderD7_1_1Image.html#aaabaa6026391a82b18103074b0c888a1":[4,0,2,0,1],
-"classRenderD7_1_1Sheet.html":[4,0,2,1],
-"classRenderD7_1_1Sheet.html#a16e025243308080896d6f2a95c58a684":[4,0,2,1,0],
-"classRenderD7_1_1Sheet.html#a869b5bb61b4197eee2b3258e2f3b64e5":[4,0,2,1,1],
-"classRenderD7_1_1Sheet.html#a950debb41e4b392a4a80a9607f4ae7cd":[4,0,2,1,2],
-"classRenderD7_1_1Sprite.html":[4,0,2,2],
-"classRenderD7_1_1Sprite.html#a1e267013d1af5cb5d8f9904d153c8a00":[4,0,2,2,1],
-"classRenderD7_1_1Sprite.html#a2d8335d6739f0295355c5c92dbf06f2f":[4,0,2,2,3],
-"classRenderD7_1_1Sprite.html#ae130fb6026f59acf1543544567d5b6a0":[4,0,2,2,2],
-"classRenderD7_1_1Sprite.html#ae2924bcf030217135967253672e2b33e":[4,0,2,2,0],
-"classes.html":[4,1],
-"classnlohmann_1_1basic__json.html":[4,0,1,2],
-"classnlohmann_1_1basic__json.html#a00601649a4242a528f60b9e0c7b89bd6":[4,0,1,2,68],
-"classnlohmann_1_1basic__json.html#a016b2a512369a464f64e14b72885fd76":[4,0,1,2,93],
-"classnlohmann_1_1basic__json.html#a022404d92eb877a7ad5bfce198ef067a":[4,0,1,2,114],
-"classnlohmann_1_1basic__json.html#a02f1c7f2f2684292590294dccbbd7621":[4,0,1,2,163],
-"classnlohmann_1_1basic__json.html#a02f73d65a38b3f0450c992e8c337d522":[4,0,1,2,160],
-"classnlohmann_1_1basic__json.html#a05b1719e15d24c47f4fce69888967d1e":[4,0,1,2,3],
-"classnlohmann_1_1basic__json.html#a05c86efa156004b090258c1469eab3fd":[4,0,1,2,98],
-"classnlohmann_1_1basic__json.html#a0ac973fb8b3bf1fb60d1b8df880060c3":[4,0,1,2,83],
-"classnlohmann_1_1basic__json.html#a0bd23e6f679145905a78020c07547559":[4,0,1,2,52],
-"classnlohmann_1_1basic__json.html#a0c6ae57643e00da7bf6e4d1c29be6db7":[4,0,1,2,72],
-"classnlohmann_1_1basic__json.html#a0d0f5fb6f22126f7e3803dd7cdf7030f":[4,0,1,2,112],
-"classnlohmann_1_1basic__json.html#a0d26844b03de9067a47752b138e28236":[4,0,1,2,165],
-"classnlohmann_1_1basic__json.html#a0d2df32b8689b776dd3b0865f1362f40":[4,0,1,2,23],
-"classnlohmann_1_1basic__json.html#a0dbd5c8bdff3d633ff6d1d373297b777":[4,0,1,2,157],
-"classnlohmann_1_1basic__json.html#a0e3fba99f98f8b7c54b7e657f02162c9":[4,0,1,2,82],
-"classnlohmann_1_1basic__json.html#a0fb9647ea72df0a3099cf6dd7e3f53e9":[4,0,1,2,164],
-"classnlohmann_1_1basic__json.html#a11bc366554be56ed9832dc25e009acaf":[4,0,1,2,63],
-"classnlohmann_1_1basic__json.html#a122640e7e2db1814fc7bbb3c122ec76e":[4,0,1,2,174],
-"classnlohmann_1_1basic__json.html#a124c319566198d9f092c5bebea46ce77":[4,0,1,2,188],
-"classnlohmann_1_1basic__json.html#a135cc1f0f25c4ad2ceed7132fc83d8ce":[4,0,1,2,77],
-"classnlohmann_1_1basic__json.html#a135d1239f3189866baaede36ec0701c8":[4,0,1,2,109],
-"classnlohmann_1_1basic__json.html#a1395936ee3b5bf12a44b583ce4c42c9c":[4,0,1,2,78],
-"classnlohmann_1_1basic__json.html#a145005bad4fcab4f8620efec8de019ad":[4,0,1,2,54],
-"classnlohmann_1_1basic__json.html#a157868dfcf060bf67fa423bafbf27b57":[4,0,1,2,96],
-"classnlohmann_1_1basic__json.html#a1859e0c783a24df797b758e3fc21b966":[4,0,1,2,58],
-"classnlohmann_1_1basic__json.html#a19622cd7064559888959fe0ef3882bea":[4,0,1,2,197],
-"classnlohmann_1_1basic__json.html#a19e7e8e1811dcbfb35d1855a24abd8aa":[4,0,1,2,87],
-"classnlohmann_1_1basic__json.html#a1c597d3cfa8aeec2ab4492306201851e":[4,0,1,2,161],
-"classnlohmann_1_1basic__json.html#a2204de84d420ad31b29488641815f90e":[4,0,1,2,95],
-"classnlohmann_1_1basic__json.html#a229d672056243afb8f97ccf1b9df6ff7":[4,0,1,2,4],
-"classnlohmann_1_1basic__json.html#a23d4ac15d8df59f36967a46a49dd896d":[4,0,1,2,106],
-"classnlohmann_1_1basic__json.html#a24c397c38ce6984594a87c64b2378dc9":[4,0,1,2,113],
-"classnlohmann_1_1basic__json.html#a24f07b19d83414f342b204da5a400363":[4,0,1,2,84],
-"classnlohmann_1_1basic__json.html#a27d668c5b974f4b3bded760f5553b5c6":[4,0,1,2,129],
-"classnlohmann_1_1basic__json.html#a29333078b6e6cb76f2b5d12590bbf766":[4,0,1,2,119],
-"classnlohmann_1_1basic__json.html#a2c77adc1436dd4c62960d2679e4befee":[4,0,1,2,20],
-"classnlohmann_1_1basic__json.html#a2e8fc803a09152f3174470ea2375b383":[4,0,1,2,11],
-"classnlohmann_1_1basic__json.html#a2fabcdab83c0a3de7fb7d753d75ce2bb":[4,0,1,2,76],
-"classnlohmann_1_1basic__json.html#a32674498f617591fff4002ad0934a4f6":[4,0,1,2,127],
-"classnlohmann_1_1basic__json.html#a34d6a60dd99e9f33b8273a1c8db5669b":[4,0,1,2,193],
-"classnlohmann_1_1basic__json.html#a352187a5ebf3cde865be1b833c18f208":[4,0,1,2,2],
-"classnlohmann_1_1basic__json.html#a364997745e8a4db417d1c1bfd252ee61":[4,0,1,2,64],
-"classnlohmann_1_1basic__json.html#a369cf24de07945494df32e8b61e47917":[4,0,1,2,118],
-"classnlohmann_1_1basic__json.html#a37a6d7eaf9d736a890adb6e9f1444fde":[4,0,1,2,88],
-"classnlohmann_1_1basic__json.html#a3913219f58349e9be2cb8cc6ddfb3abf":[4,0,1,2,13],
-"classnlohmann_1_1basic__json.html#a3b1077520ab6c8682a9039fcc2a50b5d":[4,0,1,2,111],
-"classnlohmann_1_1basic__json.html#a3b1a24eaf07f81ee9cbf01e29cf8fb59":[4,0,1,2,8],
-"classnlohmann_1_1basic__json.html#a3b86713def43fb79d40cb344b826033c":[4,0,1,2,151],
-"classnlohmann_1_1basic__json.html#a3fb693444043639e08ff7be62410b137":[4,0,1,2,41],
-"classnlohmann_1_1basic__json.html#a412895af9a582869a4d369a64fb1b6d6":[4,0,1,2,187],
-"classnlohmann_1_1basic__json.html#a422885c85f603a13c36f8d0ac5d9f278":[4,0,1,2,49],
-"classnlohmann_1_1basic__json.html#a440094de5ef4e119b2771b549b33da70":[4,0,1,2,30],
-"classnlohmann_1_1basic__json.html#a4800ba3349c81c61206add73e2b2e434":[4,0,1,2,75],
-"classnlohmann_1_1basic__json.html#a48d5c5750a7f3164653bd8d3e1e8c893":[4,0,1,2,12],
-"classnlohmann_1_1basic__json.html#a49a7ac46583c77094f96a7717597ff5f":[4,0,1,2,115],
-"classnlohmann_1_1basic__json.html#a4ac83a20750a2bfacbf9d30f3e51c3bb":[4,0,1,2,19],
-"classnlohmann_1_1basic__json.html#a4db895fabb72f717b2c641a5c338d5a8":[4,0,1,2,124],
-"classnlohmann_1_1basic__json.html#a4ec964f3346fa981453933901ca39dd1":[4,0,1,2,142],
-"classnlohmann_1_1basic__json.html#a4ef3a5ec711a8e4b32407a261baee850":[4,0,1,2,102],
-"classnlohmann_1_1basic__json.html#a4f811ef36976a82a8e29cb1ae7c40152":[4,0,1,2,145],
-"classnlohmann_1_1basic__json.html#a4fce66d66c424052b192ba45e08a661d":[4,0,1,2,61],
-"classnlohmann_1_1basic__json.html#a502e4020141ed42d55e5d1fd88b3e80f":[4,0,1,2,137],
-"classnlohmann_1_1basic__json.html#a530ad60b7fb590e0ee45b6803144cc00":[4,0,1,2,48],
-"classnlohmann_1_1basic__json.html#a54599e2a109faaebfb50df824567e5ae":[4,0,1,2,135],
-"classnlohmann_1_1basic__json.html#a5560b65c43ebfa52fd81363f628f0fd6":[4,0,1,2,66],
-"classnlohmann_1_1basic__json.html#a561057a2cc70397ad0ab890745d1d7c7":[4,0,1,2,27],
-"classnlohmann_1_1basic__json.html#a568197da17e5f7f9889607a2524497c6":[4,0,1,2,62],
-"classnlohmann_1_1basic__json.html#a5805a2f5a4f94bdff25423e7ba833ad2":[4,0,1,2,94],
-"classnlohmann_1_1basic__json.html#a581684a08bf3fa341f9fcec34d3885a3":[4,0,1,2,117],
-"classnlohmann_1_1basic__json.html#a58837bac1c40038dcb07f437a02735da":[4,0,1,2,147],
-"classnlohmann_1_1basic__json.html#a58e65af3dd9223d8593c6ca1a8477c3f":[4,0,1,2,152],
-"classnlohmann_1_1basic__json.html#a59564ce7bf7dad8be7d4d8184be05d91":[4,0,1,2,24],
-"classnlohmann_1_1basic__json.html#a5961446010dfc494e0c247b4e9026977":[4,0,1,2,133],
-"classnlohmann_1_1basic__json.html#a5a53e5a09d9123bfeed6f664b1334f8c":[4,0,1,2,50],
-"classnlohmann_1_1basic__json.html#a5c8bb5200f5eac10d31e26be46e5b1ac":[4,0,1,2,183],
-"classnlohmann_1_1basic__json.html#a5ca85574718e7fde0a3113775c3023c8":[4,0,1,2,97],
-"classnlohmann_1_1basic__json.html#a5d5f20be10c6f6d263557def2ac504a3":[4,0,1,2,53],
-"classnlohmann_1_1basic__json.html#a5d8fbc60f29db1c02fa8ce0828fcdc1d":[4,0,1,2,33],
-"classnlohmann_1_1basic__json.html#a5dfdaa906f429f5f8b6e14db46e94852":[4,0,1,2,107],
-"classnlohmann_1_1basic__json.html#a5e34c5435e557d0bf666bd7311211405":[4,0,1,2,192],
-"classnlohmann_1_1basic__json.html#a5e6b5db267db5a283e770296f9e410a0":[4,0,1,2,9],
-"classnlohmann_1_1basic__json.html#a5ee0e3e8afc7cbd932d6ed66418fa80a":[4,0,1,2,191],
-"classnlohmann_1_1basic__json.html#a5f22d74455ea3e1bb6a8a2c31e6be6be":[4,0,1,2,196],
-"classnlohmann_1_1basic__json.html#a60ca396028b8d9714c6e10efbf475af6":[4,0,1,2,194],
-"classnlohmann_1_1basic__json.html#a6365d9b23fd9c554d9fc89121c4df4d0":[4,0,1,2,37],
-"classnlohmann_1_1basic__json.html#a67625415961aa7a1289d3d08cc404284":[4,0,1,2,91],
-"classnlohmann_1_1basic__json.html#a680c6cbaca83984fd7a5dd7496f86594":[4,0,1,2,138],
-"classnlohmann_1_1basic__json.html#a68e3a92b3d9be1faa05c92d096299189":[4,0,1,2,190],
-"classnlohmann_1_1basic__json.html#a69388a77648e83007af1295aaf350c0f":[4,0,1,2,18],
-"classnlohmann_1_1basic__json.html#a69524b1f8f42c0a81b86cee3fc54e034":[4,0,1,2,26],
-"classnlohmann_1_1basic__json.html#a6adf45af5f550ae31fe3bf0759b9af14":[4,0,1,2,130],
-"classnlohmann_1_1basic__json.html#a6b3135f51d4e240e541af2f9d0b16ad9":[4,0,1,2,39],
-"classnlohmann_1_1basic__json.html#a6c02637be3d8bd730a14082cc05f7a85":[4,0,1,2,156],
-"classnlohmann_1_1basic__json.html#a6e2e21da48f5d9471716cd868a068327":[4,0,1,2,177],
-"classnlohmann_1_1basic__json.html#a71a1bdafcb0f849479622e9acc8f825b":[4,0,1,2,171],
-"classnlohmann_1_1basic__json.html#a71ff2578d0655d983f2934a907b0f960":[4,0,1,2,90],
-"classnlohmann_1_1basic__json.html#a74a943800c7f103d0990d7eef82c6453":[4,0,1,2,189],
-"classnlohmann_1_1basic__json.html#a758a9350d03d6eb90a9cb0bf4653d286":[4,0,1,2,43],
-"classnlohmann_1_1basic__json.html#a759e15ae107daa9ca50916aeb5070a18":[4,0,1,2,69],
-"classnlohmann_1_1basic__json.html#a7630fcfd1eda4d7de237af90466bffc6":[4,0,1,2,101],
-"classnlohmann_1_1basic__json.html#a76403180c973eb50c39948ed7b931d7d":[4,0,1,2,92],
-"classnlohmann_1_1basic__json.html#a79473de577bb3f28ef0aa6e9f1571b52":[4,0,1,2,10],
-"classnlohmann_1_1basic__json.html#a7999ee3a69a4979d92e98ab1e88c8759":[4,0,1,2,181],
-"classnlohmann_1_1basic__json.html#a79bac81ac682a6327fbd4e792190dfc6":[4,0,1,2,134],
-"classnlohmann_1_1basic__json.html#a7a09a580613f00c73015c19e5e7c44ba":[4,0,1,2,22],
-"classnlohmann_1_1basic__json.html#a7a378b9282dd1f7eb9bfffea6d177bbe":[4,0,1,2,105],
-"classnlohmann_1_1basic__json.html#a7d35fcb7c72f755a30ae433e58083eca":[4,0,1,2,44],
-"classnlohmann_1_1basic__json.html#a7e368211047f725f333696aefdf39ffd":[4,0,1,2,184],
-"classnlohmann_1_1basic__json.html#a7e5c49156b170062c176e520fb6e0002":[4,0,1,2,71],
-"classnlohmann_1_1basic__json.html#a7eae0427fb22e147d9c2ed1d532ed2aa":[4,0,1,2,121],
-"classnlohmann_1_1basic__json.html#a835557fd75998eb3a83254d051498b30":[4,0,1,2,74],
-"classnlohmann_1_1basic__json.html#a838359d25d318852c8204b999e5f375d":[4,0,1,2,89],
-"classnlohmann_1_1basic__json.html#a87cd77e74fd386d93f26ad04bd01b6a5":[4,0,1,2,34],
-"classnlohmann_1_1basic__json.html#a87db51b6b936fb2ea293cdbc8702dcb8":[4,0,1,2,186],
-"classnlohmann_1_1basic__json.html#a887cd40d16a12596c24cd42c66107ac6":[4,0,1,2,139],
-"classnlohmann_1_1basic__json.html#a8cc04e22d7ef18efd2d34bc04eb6a1b2":[4,0,1,2,28],
-"classnlohmann_1_1basic__json.html#a8d792070799098e6172e82a3865875ee":[4,0,1,2,128],
-"classnlohmann_1_1basic__json.html#a9126e2860908bc6aa34da0063863070e":[4,0,1,2,36],
-"classnlohmann_1_1basic__json.html#a926df0038ca14568f88a92d0caeba044":[4,0,1,2,56],
-"classnlohmann_1_1basic__json.html#a92a2e5bde3f9a1a548b367114e4794f1":[4,0,1,2,168],
-"classnlohmann_1_1basic__json.html#a939390bb7d48b11c64413ec79c7104fa":[4,0,1,2,153],
-"classnlohmann_1_1basic__json.html#a94522e3b348ef50d9c212121b3478ee1":[4,0,1,2,125],
-"classnlohmann_1_1basic__json.html#a949272bf6af5eb8eab9675505422f5b3":[4,0,1,2,25],
-"classnlohmann_1_1basic__json.html#a9b7596a400a85e2dd7ab22f62df8a340":[4,0,1,2,16],
-"classnlohmann_1_1basic__json.html#a9e639075f5b3f1733fcb5f04aea3da95":[4,0,1,2,85],
-"classnlohmann_1_1basic__json.html#a9eaf1dcc25d6e7bd204f72877cef254b":[4,0,1,2,17],
-"classnlohmann_1_1basic__json.html#a9fd9864614513a7191df0bada4880228":[4,0,1,2,99],
-"classnlohmann_1_1basic__json.html#aa39eda8a41872fe4b022855e27fac90d":[4,0,1,2,46],
-"classnlohmann_1_1basic__json.html#aa3ab6c99db6584c47624c29037f9f14d":[4,0,1,2,21],
-"classnlohmann_1_1basic__json.html#aa9fc99ec3a40c1e1ee086d797e2f4eec":[4,0,1,2,70],
-"classnlohmann_1_1basic__json.html#aaa2519eb5a174547b8a2f6019def9b65":[4,0,1,2,136],
-"classnlohmann_1_1basic__json.html#aab2588e4f8767b792656e5ebcf922a9f":[4,0,1,2,126],
-"classnlohmann_1_1basic__json.html#aab2bc544912cb3954b38ee76772c16d7":[4,0,1,2,155],
-"classnlohmann_1_1basic__json.html#aacd442b66140c764c594ac8ad7dfd5b3":[4,0,1,2,180],
-"classnlohmann_1_1basic__json.html#aacff7cb1f9097fcb1f8f97d401220ac0":[4,0,1,2,40],
-"classnlohmann_1_1basic__json.html#aadfe340990ea3f4039f8d3c100f254e6":[4,0,1,2,103],
-"classnlohmann_1_1basic__json.html#aaf363408931d76472ded14017e59c9e8":[4,0,1,2,195],
-"classnlohmann_1_1basic__json.html#ab0e886db6e9fa91ff9fd853333fed05b":[4,0,1,2,179],
-"classnlohmann_1_1basic__json.html#ab227d71ad47b6ed6a3acae52dedbb49d":[4,0,1,2,29],
-"classnlohmann_1_1basic__json.html#ab29a59d20767180d6d2fe4f5054dd245":[4,0,1,2,104],
-"classnlohmann_1_1basic__json.html#ab68414151f2f3347a71c7a9984f1d72d":[4,0,1,2,172],
-"classnlohmann_1_1basic__json.html#ab71294705ef1df01447c423aac909cc7":[4,0,1,2,79],
-"classnlohmann_1_1basic__json.html#ab80c4bdc11b40246f668008bae80df25":[4,0,1,2,149],
-"classnlohmann_1_1basic__json.html#ab87589ef6b14a6e6881109e04d414830":[4,0,1,2,110],
-"classnlohmann_1_1basic__json.html#ab882c22809696716a55d6572527709fa":[4,0,1,2,67],
-"classnlohmann_1_1basic__json.html#aba21440ea1aff44f718285ed7d6d20d9":[4,0,1,2,175],
-"classnlohmann_1_1basic__json.html#abad0f48fa4535a8820e90509b733f16b":[4,0,1,2,86],
-"classnlohmann_1_1basic__json.html#abe4ea2bbb97eba3baad6c4286366e7c5":[4,0,1,2,131],
-"classnlohmann_1_1basic__json.html#abe5adbae0da85a23ad7e812bdb85672f":[4,0,1,2,162],
-"classnlohmann_1_1basic__json.html#abed3e9b4ab75f5bcbd3cd20f5af5cdab":[4,0,1,2,182],
-"classnlohmann_1_1basic__json.html#abf9a7dcd2b7a3080ccfacf5d0ebf12e5":[4,0,1,2,141],
-"classnlohmann_1_1basic__json.html#ac00185487a16455dfdd53884f678040d":[4,0,1,2,7],
-"classnlohmann_1_1basic__json.html#ac07f0518ba7a3af394d37d86753a9845":[4,0,1,2,167],
-"classnlohmann_1_1basic__json.html#ac240ab334bd660975e601b0809c3f1bc":[4,0,1,2,166],
-"classnlohmann_1_1basic__json.html#ac45bc02fd5f4f136f522844222012adc":[4,0,1,2,55],
-"classnlohmann_1_1basic__json.html#ac63d16a141ee5c2046410d2d0ba4cec8":[4,0,1,2,170],
-"classnlohmann_1_1basic__json.html#ac6be8bd68e9dffd793846e0f0b239d62":[4,0,1,2,150],
-"classnlohmann_1_1basic__json.html#acbf51bc13484009ed204bd78a498355e":[4,0,1,2,32],
-"classnlohmann_1_1basic__json.html#acbfa964cfa7c74f92d48a65eae744cfd":[4,0,1,2,144],
-"classnlohmann_1_1basic__json.html#acfc564f36da667b7d9109879d34dc36c":[4,0,1,2,47],
-"classnlohmann_1_1basic__json.html#ad0cf7682c00f137bec6a5a680a80dc6e":[4,0,1,2,38],
-"classnlohmann_1_1basic__json.html#ad1702349b3aeca0e518921336faa570c":[4,0,1,2,108],
-"classnlohmann_1_1basic__json.html#ad6d521a14fe494fb08bea79cfaaa9b46":[4,0,1,2,81],
-"classnlohmann_1_1basic__json.html#ad73f88f70fe5acfa521750a8cd710026":[4,0,1,2,185],
-"classnlohmann_1_1basic__json.html#ad7ca83d8fdd49dae585f9980af5f7a8c":[4,0,1,2,146],
-"classnlohmann_1_1basic__json.html#ad886f4baa2efb7ac6b0ca70dc72f3d18":[4,0,1,2,35],
-"classnlohmann_1_1basic__json.html#ad983106f7d7fd6a03cf609a9641976f4":[4,0,1,2,100],
-"classnlohmann_1_1basic__json.html#adaae3e55f4349e53d1526a6da464d34f":[4,0,1,2,154],
-"classnlohmann_1_1basic__json.html#adbb8131d4eaea460e8329bc0dfff1f6e":[4,0,1,2,159],
-"classnlohmann_1_1basic__json.html#adc6408fbeaf9545882dc62bc20db7d42":[4,0,1,2,80],
-"classnlohmann_1_1basic__json.html#ade1eb06e9fc3ff2ba1efd709b94b401d":[4,0,1,2,31],
-"classnlohmann_1_1basic__json.html#ade6945272c7b703520f435ad580d3c7f":[4,0,1,2,158],
-"classnlohmann_1_1basic__json.html#ae1e7bbc736b7e9d1155f9ee6c95b2090":[4,0,1,2,123],
-"classnlohmann_1_1basic__json.html#ae3300a95d3bb4a55cb0e04b9f125e42f":[4,0,1,2,57],
-"classnlohmann_1_1basic__json.html#ae3866ccade11e7b73902169714363f21":[4,0,1,2,148],
-"classnlohmann_1_1basic__json.html#ae48280c854cad4ff1b466310511d4815":[4,0,1,2,73],
-"classnlohmann_1_1basic__json.html#ae54982c31d6c21e140980ce502425cf6":[4,0,1,2,132],
-"classnlohmann_1_1basic__json.html#ae76659f8c2fbeab628a6c618e0817dee":[4,0,1,2,1],
-"classnlohmann_1_1basic__json.html#ae83ab5539e404c901ab216aafc9dc6d9":[4,0,1,2,15],
-"classnlohmann_1_1basic__json.html#ae8b2251872b6a3a9b04147d2ffa5a839":[4,0,1,2,5],
-"classnlohmann_1_1basic__json.html#ae91348b027208339c94dbbc6fd769929":[4,0,1,2,169],
-"classnlohmann_1_1basic__json.html#ae958b0bc067c82850145299711d8bcd5":[4,0,1,2,59],
-"classnlohmann_1_1basic__json.html#aeb76c192095f808283822c8401d2a3a1":[4,0,1,2,122],
-"classnlohmann_1_1basic__json.html#aebf93a806247231640c785fbc6985d10":[4,0,1,2,45],
-"classnlohmann_1_1basic__json.html#aee0ae36cbfb0336832ebc0374c3c7679":[4,0,1,2,173],
-"classnlohmann_1_1basic__json.html#aef302e3ae215e46e5035d0e4fdf47235":[4,0,1,2,176],
-"classnlohmann_1_1basic__json.html#af0623f174dc806b5c17b87a485febf68":[4,0,1,2,60],
-"classnlohmann_1_1basic__json.html#af11372ea846fedea8b2098dba7323831":[4,0,1,2,14],
-"classnlohmann_1_1basic__json.html#af21eb13ca205fb51e267e6f7ee269229":[4,0,1,2,42],
-"classnlohmann_1_1basic__json.html#af229d341abc5e2525a8ca4dc247533e1":[4,0,1,2,6],
-"classnlohmann_1_1basic__json.html#af4167275baa0b2da76cdc89b1117c300":[4,0,1,2,116],
-"classnlohmann_1_1basic__json.html#af700bb8239390cf462126f0c96606fae":[4,0,1,2,120],
-"classnlohmann_1_1basic__json.html#afcaf35277a772216232f82c2ecbe51df":[4,0,1,2,65],
-"classnlohmann_1_1basic__json.html#afe3c79845dc1dd2243724558859d7e4b":[4,0,1,2,140],
-"classnlohmann_1_1basic__json.html#afe9a6fe72337a174cfb117a2081d2cfc":[4,0,1,2,51],
-"classnlohmann_1_1basic__json.html#afefc38fc08bdb7a9a7474b5ab4a1140f":[4,0,1,2,178],
-"classnlohmann_1_1basic__json.html#affac3bab5efcb26cdcd0942d24ad0ab5":[4,0,1,2,143],
-"classnlohmann_1_1byte__container__with__subtype.html":[4,0,1,3],
-"classnlohmann_1_1byte__container__with__subtype.html#a4d27e8633c5a5e3b49dd4ccb06515713":[4,0,1,3,0],
-"classnlohmann_1_1byte__container__with__subtype.html#a7b122b28ff2b8680557ca44ac9748e49":[4,0,1,3,4],
-"classnlohmann_1_1byte__container__with__subtype.html#a9fc42fb07003bf7048c2f1fc79478e02":[4,0,1,3,3],
-"classnlohmann_1_1byte__container__with__subtype.html#aa1653b01b420607b359a3e8815b516c2":[4,0,1,3,1],
-"classnlohmann_1_1byte__container__with__subtype.html#ac3ca9d09e55342f9588404e1dc2222f0":[4,0,1,3,2],
-"classnlohmann_1_1detail_1_1binary__reader.html":[4,0,1,0,0],
-"classnlohmann_1_1detail_1_1binary__reader.html#a0ce1d7066597952efb008aaf578b2bd6":[4,0,1,0,0,17],
-"classnlohmann_1_1detail_1_1binary__reader.html#a23921422802aa472360dd05023e20565":[4,0,1,0,0,4],
-"classnlohmann_1_1detail_1_1binary__reader.html#a23bde2450d7a5772bf5051e36ff560a4":[4,0,1,0,0,6],
-"classnlohmann_1_1detail_1_1binary__reader.html#a23eb89a222e22533e9fd43e76722f44f":[4,0,1,0,0,8],
-"classnlohmann_1_1detail_1_1binary__reader.html#a252c1179651d22c5343bcf0b538ed26a":[4,0,1,0,0,27],
-"classnlohmann_1_1detail_1_1binary__reader.html#a354cbbaaea672c024ac949e1801c4302":[4,0,1,0,0,3],
-"classnlohmann_1_1detail_1_1binary__reader.html#a3750658328bf3ec3cf23f1626f9ec3af":[4,0,1,0,0,12],
-"classnlohmann_1_1detail_1_1binary__reader.html#a389e550fd397a48121cb82d92bb7475a":[4,0,1,0,0,16],
-"classnlohmann_1_1detail_1_1binary__reader.html#a47092a2195bf9cd3cdb4dda67cc404ed":[4,0,1,0,0,13],
-"classnlohmann_1_1detail_1_1binary__reader.html#a4ae90db51c102e912b7eac83c78733a6":[4,0,1,0,0,20],
-"classnlohmann_1_1detail_1_1binary__reader.html#a4e07b75ccb2579d0e738b894f0fd8cf8":[4,0,1,0,0,7]
+".html":[2,0,2],
+"annotated.html":[2,0],
+"classLog.html":[2,0,3],
+"classLog.html#a0fbfda88fbee5027c89f6eb121059360":[2,0,3,1],
+"classLog.html#a4fa454441efc3a17a4f6d920523feb43":[2,0,3,4],
+"classLog.html#a7021cb723a7dff6a02f4e88705e25b13":[2,0,3,2],
+"classLog.html#a855b057411fe7f5c69dd5ee80b3d0179":[2,0,3,6],
+"classLog.html#ae0702c44f02849b538f2d4d761b56ee2":[2,0,3,5],
+"classLog.html#aef5a70d6e91909c792df54e501397d83":[2,0,3,3],
+"classLog.html#af6071a60aa52b6c1b511f99b4bc1b8fe":[2,0,3,0],
+"classRenderD7_1_1Image.html":[2,0,1,0],
+"classRenderD7_1_1Image.html#a09b03eb72a948119f3eb3a472d3d6e74":[2,0,1,0,4],
+"classRenderD7_1_1Image.html#a46540860a8785e93be09b68751577f87":[2,0,1,0,0],
+"classRenderD7_1_1Image.html#a649e3ceb6376199a2c246b5a59eb3de8":[2,0,1,0,3],
+"classRenderD7_1_1Image.html#a90f1afb002590c82f5667dfc8c2e74b5":[2,0,1,0,5],
+"classRenderD7_1_1Image.html#aa65130a589ba2bdf8d9388cd4c1baac3":[2,0,1,0,2],
+"classRenderD7_1_1Image.html#aaabaa6026391a82b18103074b0c888a1":[2,0,1,0,1],
+"classRenderD7_1_1Sheet.html":[2,0,1,1],
+"classRenderD7_1_1Sheet.html#a16e025243308080896d6f2a95c58a684":[2,0,1,1,0],
+"classRenderD7_1_1Sheet.html#a869b5bb61b4197eee2b3258e2f3b64e5":[2,0,1,1,1],
+"classRenderD7_1_1Sheet.html#a950debb41e4b392a4a80a9607f4ae7cd":[2,0,1,1,2],
+"classRenderD7_1_1Sprite.html":[2,0,1,2],
+"classRenderD7_1_1Sprite.html#a1e267013d1af5cb5d8f9904d153c8a00":[2,0,1,2,1],
+"classRenderD7_1_1Sprite.html#a2d8335d6739f0295355c5c92dbf06f2f":[2,0,1,2,3],
+"classRenderD7_1_1Sprite.html#ae130fb6026f59acf1543544567d5b6a0":[2,0,1,2,2],
+"classRenderD7_1_1Sprite.html#ae2924bcf030217135967253672e2b33e":[2,0,1,2,0],
+"classes.html":[2,1],
+"classnlohmann_1_1basic__json.html":[2,0,0,2],
+"classnlohmann_1_1basic__json.html#a00601649a4242a528f60b9e0c7b89bd6":[2,0,0,2,68],
+"classnlohmann_1_1basic__json.html#a016b2a512369a464f64e14b72885fd76":[2,0,0,2,93],
+"classnlohmann_1_1basic__json.html#a022404d92eb877a7ad5bfce198ef067a":[2,0,0,2,114],
+"classnlohmann_1_1basic__json.html#a02f1c7f2f2684292590294dccbbd7621":[2,0,0,2,163],
+"classnlohmann_1_1basic__json.html#a02f73d65a38b3f0450c992e8c337d522":[2,0,0,2,160],
+"classnlohmann_1_1basic__json.html#a05b1719e15d24c47f4fce69888967d1e":[2,0,0,2,3],
+"classnlohmann_1_1basic__json.html#a05c86efa156004b090258c1469eab3fd":[2,0,0,2,98],
+"classnlohmann_1_1basic__json.html#a0ac973fb8b3bf1fb60d1b8df880060c3":[2,0,0,2,83],
+"classnlohmann_1_1basic__json.html#a0bd23e6f679145905a78020c07547559":[2,0,0,2,52],
+"classnlohmann_1_1basic__json.html#a0c6ae57643e00da7bf6e4d1c29be6db7":[2,0,0,2,72],
+"classnlohmann_1_1basic__json.html#a0d0f5fb6f22126f7e3803dd7cdf7030f":[2,0,0,2,112],
+"classnlohmann_1_1basic__json.html#a0d26844b03de9067a47752b138e28236":[2,0,0,2,165],
+"classnlohmann_1_1basic__json.html#a0d2df32b8689b776dd3b0865f1362f40":[2,0,0,2,23],
+"classnlohmann_1_1basic__json.html#a0dbd5c8bdff3d633ff6d1d373297b777":[2,0,0,2,157],
+"classnlohmann_1_1basic__json.html#a0e3fba99f98f8b7c54b7e657f02162c9":[2,0,0,2,82],
+"classnlohmann_1_1basic__json.html#a0fb9647ea72df0a3099cf6dd7e3f53e9":[2,0,0,2,164],
+"classnlohmann_1_1basic__json.html#a11bc366554be56ed9832dc25e009acaf":[2,0,0,2,63],
+"classnlohmann_1_1basic__json.html#a122640e7e2db1814fc7bbb3c122ec76e":[2,0,0,2,174],
+"classnlohmann_1_1basic__json.html#a124c319566198d9f092c5bebea46ce77":[2,0,0,2,188],
+"classnlohmann_1_1basic__json.html#a135cc1f0f25c4ad2ceed7132fc83d8ce":[2,0,0,2,77],
+"classnlohmann_1_1basic__json.html#a135d1239f3189866baaede36ec0701c8":[2,0,0,2,109],
+"classnlohmann_1_1basic__json.html#a1395936ee3b5bf12a44b583ce4c42c9c":[2,0,0,2,78],
+"classnlohmann_1_1basic__json.html#a145005bad4fcab4f8620efec8de019ad":[2,0,0,2,54],
+"classnlohmann_1_1basic__json.html#a157868dfcf060bf67fa423bafbf27b57":[2,0,0,2,96],
+"classnlohmann_1_1basic__json.html#a1859e0c783a24df797b758e3fc21b966":[2,0,0,2,58],
+"classnlohmann_1_1basic__json.html#a19622cd7064559888959fe0ef3882bea":[2,0,0,2,197],
+"classnlohmann_1_1basic__json.html#a19e7e8e1811dcbfb35d1855a24abd8aa":[2,0,0,2,87],
+"classnlohmann_1_1basic__json.html#a1c597d3cfa8aeec2ab4492306201851e":[2,0,0,2,161],
+"classnlohmann_1_1basic__json.html#a2204de84d420ad31b29488641815f90e":[2,0,0,2,95],
+"classnlohmann_1_1basic__json.html#a229d672056243afb8f97ccf1b9df6ff7":[2,0,0,2,4],
+"classnlohmann_1_1basic__json.html#a23d4ac15d8df59f36967a46a49dd896d":[2,0,0,2,106],
+"classnlohmann_1_1basic__json.html#a24c397c38ce6984594a87c64b2378dc9":[2,0,0,2,113],
+"classnlohmann_1_1basic__json.html#a24f07b19d83414f342b204da5a400363":[2,0,0,2,84],
+"classnlohmann_1_1basic__json.html#a27d668c5b974f4b3bded760f5553b5c6":[2,0,0,2,129],
+"classnlohmann_1_1basic__json.html#a29333078b6e6cb76f2b5d12590bbf766":[2,0,0,2,119],
+"classnlohmann_1_1basic__json.html#a2c77adc1436dd4c62960d2679e4befee":[2,0,0,2,20],
+"classnlohmann_1_1basic__json.html#a2e8fc803a09152f3174470ea2375b383":[2,0,0,2,11],
+"classnlohmann_1_1basic__json.html#a2fabcdab83c0a3de7fb7d753d75ce2bb":[2,0,0,2,76],
+"classnlohmann_1_1basic__json.html#a32674498f617591fff4002ad0934a4f6":[2,0,0,2,127],
+"classnlohmann_1_1basic__json.html#a34d6a60dd99e9f33b8273a1c8db5669b":[2,0,0,2,193],
+"classnlohmann_1_1basic__json.html#a352187a5ebf3cde865be1b833c18f208":[2,0,0,2,2],
+"classnlohmann_1_1basic__json.html#a364997745e8a4db417d1c1bfd252ee61":[2,0,0,2,64],
+"classnlohmann_1_1basic__json.html#a369cf24de07945494df32e8b61e47917":[2,0,0,2,118],
+"classnlohmann_1_1basic__json.html#a37a6d7eaf9d736a890adb6e9f1444fde":[2,0,0,2,88],
+"classnlohmann_1_1basic__json.html#a3913219f58349e9be2cb8cc6ddfb3abf":[2,0,0,2,13],
+"classnlohmann_1_1basic__json.html#a3b1077520ab6c8682a9039fcc2a50b5d":[2,0,0,2,111],
+"classnlohmann_1_1basic__json.html#a3b1a24eaf07f81ee9cbf01e29cf8fb59":[2,0,0,2,8],
+"classnlohmann_1_1basic__json.html#a3b86713def43fb79d40cb344b826033c":[2,0,0,2,151],
+"classnlohmann_1_1basic__json.html#a3fb693444043639e08ff7be62410b137":[2,0,0,2,41],
+"classnlohmann_1_1basic__json.html#a412895af9a582869a4d369a64fb1b6d6":[2,0,0,2,187],
+"classnlohmann_1_1basic__json.html#a422885c85f603a13c36f8d0ac5d9f278":[2,0,0,2,49],
+"classnlohmann_1_1basic__json.html#a440094de5ef4e119b2771b549b33da70":[2,0,0,2,30],
+"classnlohmann_1_1basic__json.html#a4800ba3349c81c61206add73e2b2e434":[2,0,0,2,75],
+"classnlohmann_1_1basic__json.html#a48d5c5750a7f3164653bd8d3e1e8c893":[2,0,0,2,12],
+"classnlohmann_1_1basic__json.html#a49a7ac46583c77094f96a7717597ff5f":[2,0,0,2,115],
+"classnlohmann_1_1basic__json.html#a4ac83a20750a2bfacbf9d30f3e51c3bb":[2,0,0,2,19],
+"classnlohmann_1_1basic__json.html#a4db895fabb72f717b2c641a5c338d5a8":[2,0,0,2,124],
+"classnlohmann_1_1basic__json.html#a4ec964f3346fa981453933901ca39dd1":[2,0,0,2,142],
+"classnlohmann_1_1basic__json.html#a4ef3a5ec711a8e4b32407a261baee850":[2,0,0,2,102],
+"classnlohmann_1_1basic__json.html#a4f811ef36976a82a8e29cb1ae7c40152":[2,0,0,2,145],
+"classnlohmann_1_1basic__json.html#a4fce66d66c424052b192ba45e08a661d":[2,0,0,2,61],
+"classnlohmann_1_1basic__json.html#a502e4020141ed42d55e5d1fd88b3e80f":[2,0,0,2,137],
+"classnlohmann_1_1basic__json.html#a530ad60b7fb590e0ee45b6803144cc00":[2,0,0,2,48],
+"classnlohmann_1_1basic__json.html#a54599e2a109faaebfb50df824567e5ae":[2,0,0,2,135],
+"classnlohmann_1_1basic__json.html#a5560b65c43ebfa52fd81363f628f0fd6":[2,0,0,2,66],
+"classnlohmann_1_1basic__json.html#a561057a2cc70397ad0ab890745d1d7c7":[2,0,0,2,27],
+"classnlohmann_1_1basic__json.html#a568197da17e5f7f9889607a2524497c6":[2,0,0,2,62],
+"classnlohmann_1_1basic__json.html#a5805a2f5a4f94bdff25423e7ba833ad2":[2,0,0,2,94],
+"classnlohmann_1_1basic__json.html#a581684a08bf3fa341f9fcec34d3885a3":[2,0,0,2,117],
+"classnlohmann_1_1basic__json.html#a58837bac1c40038dcb07f437a02735da":[2,0,0,2,147],
+"classnlohmann_1_1basic__json.html#a58e65af3dd9223d8593c6ca1a8477c3f":[2,0,0,2,152],
+"classnlohmann_1_1basic__json.html#a59564ce7bf7dad8be7d4d8184be05d91":[2,0,0,2,24],
+"classnlohmann_1_1basic__json.html#a5961446010dfc494e0c247b4e9026977":[2,0,0,2,133],
+"classnlohmann_1_1basic__json.html#a5a53e5a09d9123bfeed6f664b1334f8c":[2,0,0,2,50],
+"classnlohmann_1_1basic__json.html#a5c8bb5200f5eac10d31e26be46e5b1ac":[2,0,0,2,183],
+"classnlohmann_1_1basic__json.html#a5ca85574718e7fde0a3113775c3023c8":[2,0,0,2,97],
+"classnlohmann_1_1basic__json.html#a5d5f20be10c6f6d263557def2ac504a3":[2,0,0,2,53],
+"classnlohmann_1_1basic__json.html#a5d8fbc60f29db1c02fa8ce0828fcdc1d":[2,0,0,2,33],
+"classnlohmann_1_1basic__json.html#a5dfdaa906f429f5f8b6e14db46e94852":[2,0,0,2,107],
+"classnlohmann_1_1basic__json.html#a5e34c5435e557d0bf666bd7311211405":[2,0,0,2,192],
+"classnlohmann_1_1basic__json.html#a5e6b5db267db5a283e770296f9e410a0":[2,0,0,2,9],
+"classnlohmann_1_1basic__json.html#a5ee0e3e8afc7cbd932d6ed66418fa80a":[2,0,0,2,191],
+"classnlohmann_1_1basic__json.html#a5f22d74455ea3e1bb6a8a2c31e6be6be":[2,0,0,2,196],
+"classnlohmann_1_1basic__json.html#a60ca396028b8d9714c6e10efbf475af6":[2,0,0,2,194],
+"classnlohmann_1_1basic__json.html#a6365d9b23fd9c554d9fc89121c4df4d0":[2,0,0,2,37],
+"classnlohmann_1_1basic__json.html#a67625415961aa7a1289d3d08cc404284":[2,0,0,2,91],
+"classnlohmann_1_1basic__json.html#a680c6cbaca83984fd7a5dd7496f86594":[2,0,0,2,138],
+"classnlohmann_1_1basic__json.html#a68e3a92b3d9be1faa05c92d096299189":[2,0,0,2,190],
+"classnlohmann_1_1basic__json.html#a69388a77648e83007af1295aaf350c0f":[2,0,0,2,18],
+"classnlohmann_1_1basic__json.html#a69524b1f8f42c0a81b86cee3fc54e034":[2,0,0,2,26],
+"classnlohmann_1_1basic__json.html#a6adf45af5f550ae31fe3bf0759b9af14":[2,0,0,2,130],
+"classnlohmann_1_1basic__json.html#a6b3135f51d4e240e541af2f9d0b16ad9":[2,0,0,2,39],
+"classnlohmann_1_1basic__json.html#a6c02637be3d8bd730a14082cc05f7a85":[2,0,0,2,156],
+"classnlohmann_1_1basic__json.html#a6e2e21da48f5d9471716cd868a068327":[2,0,0,2,177],
+"classnlohmann_1_1basic__json.html#a71a1bdafcb0f849479622e9acc8f825b":[2,0,0,2,171],
+"classnlohmann_1_1basic__json.html#a71ff2578d0655d983f2934a907b0f960":[2,0,0,2,90],
+"classnlohmann_1_1basic__json.html#a74a943800c7f103d0990d7eef82c6453":[2,0,0,2,189],
+"classnlohmann_1_1basic__json.html#a758a9350d03d6eb90a9cb0bf4653d286":[2,0,0,2,43],
+"classnlohmann_1_1basic__json.html#a759e15ae107daa9ca50916aeb5070a18":[2,0,0,2,69],
+"classnlohmann_1_1basic__json.html#a7630fcfd1eda4d7de237af90466bffc6":[2,0,0,2,101],
+"classnlohmann_1_1basic__json.html#a76403180c973eb50c39948ed7b931d7d":[2,0,0,2,92],
+"classnlohmann_1_1basic__json.html#a79473de577bb3f28ef0aa6e9f1571b52":[2,0,0,2,10],
+"classnlohmann_1_1basic__json.html#a7999ee3a69a4979d92e98ab1e88c8759":[2,0,0,2,181],
+"classnlohmann_1_1basic__json.html#a79bac81ac682a6327fbd4e792190dfc6":[2,0,0,2,134],
+"classnlohmann_1_1basic__json.html#a7a09a580613f00c73015c19e5e7c44ba":[2,0,0,2,22],
+"classnlohmann_1_1basic__json.html#a7a378b9282dd1f7eb9bfffea6d177bbe":[2,0,0,2,105],
+"classnlohmann_1_1basic__json.html#a7d35fcb7c72f755a30ae433e58083eca":[2,0,0,2,44],
+"classnlohmann_1_1basic__json.html#a7e368211047f725f333696aefdf39ffd":[2,0,0,2,184],
+"classnlohmann_1_1basic__json.html#a7e5c49156b170062c176e520fb6e0002":[2,0,0,2,71],
+"classnlohmann_1_1basic__json.html#a7eae0427fb22e147d9c2ed1d532ed2aa":[2,0,0,2,121],
+"classnlohmann_1_1basic__json.html#a835557fd75998eb3a83254d051498b30":[2,0,0,2,74],
+"classnlohmann_1_1basic__json.html#a838359d25d318852c8204b999e5f375d":[2,0,0,2,89],
+"classnlohmann_1_1basic__json.html#a87cd77e74fd386d93f26ad04bd01b6a5":[2,0,0,2,34],
+"classnlohmann_1_1basic__json.html#a87db51b6b936fb2ea293cdbc8702dcb8":[2,0,0,2,186],
+"classnlohmann_1_1basic__json.html#a887cd40d16a12596c24cd42c66107ac6":[2,0,0,2,139],
+"classnlohmann_1_1basic__json.html#a8cc04e22d7ef18efd2d34bc04eb6a1b2":[2,0,0,2,28],
+"classnlohmann_1_1basic__json.html#a8d792070799098e6172e82a3865875ee":[2,0,0,2,128],
+"classnlohmann_1_1basic__json.html#a9126e2860908bc6aa34da0063863070e":[2,0,0,2,36],
+"classnlohmann_1_1basic__json.html#a926df0038ca14568f88a92d0caeba044":[2,0,0,2,56],
+"classnlohmann_1_1basic__json.html#a92a2e5bde3f9a1a548b367114e4794f1":[2,0,0,2,168],
+"classnlohmann_1_1basic__json.html#a939390bb7d48b11c64413ec79c7104fa":[2,0,0,2,153],
+"classnlohmann_1_1basic__json.html#a94522e3b348ef50d9c212121b3478ee1":[2,0,0,2,125],
+"classnlohmann_1_1basic__json.html#a949272bf6af5eb8eab9675505422f5b3":[2,0,0,2,25],
+"classnlohmann_1_1basic__json.html#a9b7596a400a85e2dd7ab22f62df8a340":[2,0,0,2,16],
+"classnlohmann_1_1basic__json.html#a9e639075f5b3f1733fcb5f04aea3da95":[2,0,0,2,85],
+"classnlohmann_1_1basic__json.html#a9eaf1dcc25d6e7bd204f72877cef254b":[2,0,0,2,17],
+"classnlohmann_1_1basic__json.html#a9fd9864614513a7191df0bada4880228":[2,0,0,2,99],
+"classnlohmann_1_1basic__json.html#aa39eda8a41872fe4b022855e27fac90d":[2,0,0,2,46],
+"classnlohmann_1_1basic__json.html#aa3ab6c99db6584c47624c29037f9f14d":[2,0,0,2,21],
+"classnlohmann_1_1basic__json.html#aa9fc99ec3a40c1e1ee086d797e2f4eec":[2,0,0,2,70],
+"classnlohmann_1_1basic__json.html#aaa2519eb5a174547b8a2f6019def9b65":[2,0,0,2,136],
+"classnlohmann_1_1basic__json.html#aab2588e4f8767b792656e5ebcf922a9f":[2,0,0,2,126],
+"classnlohmann_1_1basic__json.html#aab2bc544912cb3954b38ee76772c16d7":[2,0,0,2,155],
+"classnlohmann_1_1basic__json.html#aacd442b66140c764c594ac8ad7dfd5b3":[2,0,0,2,180],
+"classnlohmann_1_1basic__json.html#aacff7cb1f9097fcb1f8f97d401220ac0":[2,0,0,2,40],
+"classnlohmann_1_1basic__json.html#aadfe340990ea3f4039f8d3c100f254e6":[2,0,0,2,103],
+"classnlohmann_1_1basic__json.html#aaf363408931d76472ded14017e59c9e8":[2,0,0,2,195],
+"classnlohmann_1_1basic__json.html#ab0e886db6e9fa91ff9fd853333fed05b":[2,0,0,2,179],
+"classnlohmann_1_1basic__json.html#ab227d71ad47b6ed6a3acae52dedbb49d":[2,0,0,2,29],
+"classnlohmann_1_1basic__json.html#ab29a59d20767180d6d2fe4f5054dd245":[2,0,0,2,104],
+"classnlohmann_1_1basic__json.html#ab68414151f2f3347a71c7a9984f1d72d":[2,0,0,2,172],
+"classnlohmann_1_1basic__json.html#ab71294705ef1df01447c423aac909cc7":[2,0,0,2,79],
+"classnlohmann_1_1basic__json.html#ab80c4bdc11b40246f668008bae80df25":[2,0,0,2,149],
+"classnlohmann_1_1basic__json.html#ab87589ef6b14a6e6881109e04d414830":[2,0,0,2,110],
+"classnlohmann_1_1basic__json.html#ab882c22809696716a55d6572527709fa":[2,0,0,2,67],
+"classnlohmann_1_1basic__json.html#aba21440ea1aff44f718285ed7d6d20d9":[2,0,0,2,175],
+"classnlohmann_1_1basic__json.html#abad0f48fa4535a8820e90509b733f16b":[2,0,0,2,86],
+"classnlohmann_1_1basic__json.html#abe4ea2bbb97eba3baad6c4286366e7c5":[2,0,0,2,131],
+"classnlohmann_1_1basic__json.html#abe5adbae0da85a23ad7e812bdb85672f":[2,0,0,2,162],
+"classnlohmann_1_1basic__json.html#abed3e9b4ab75f5bcbd3cd20f5af5cdab":[2,0,0,2,182],
+"classnlohmann_1_1basic__json.html#abf9a7dcd2b7a3080ccfacf5d0ebf12e5":[2,0,0,2,141],
+"classnlohmann_1_1basic__json.html#ac00185487a16455dfdd53884f678040d":[2,0,0,2,7],
+"classnlohmann_1_1basic__json.html#ac07f0518ba7a3af394d37d86753a9845":[2,0,0,2,167],
+"classnlohmann_1_1basic__json.html#ac240ab334bd660975e601b0809c3f1bc":[2,0,0,2,166],
+"classnlohmann_1_1basic__json.html#ac45bc02fd5f4f136f522844222012adc":[2,0,0,2,55],
+"classnlohmann_1_1basic__json.html#ac63d16a141ee5c2046410d2d0ba4cec8":[2,0,0,2,170],
+"classnlohmann_1_1basic__json.html#ac6be8bd68e9dffd793846e0f0b239d62":[2,0,0,2,150],
+"classnlohmann_1_1basic__json.html#acbf51bc13484009ed204bd78a498355e":[2,0,0,2,32],
+"classnlohmann_1_1basic__json.html#acbfa964cfa7c74f92d48a65eae744cfd":[2,0,0,2,144],
+"classnlohmann_1_1basic__json.html#acfc564f36da667b7d9109879d34dc36c":[2,0,0,2,47],
+"classnlohmann_1_1basic__json.html#ad0cf7682c00f137bec6a5a680a80dc6e":[2,0,0,2,38],
+"classnlohmann_1_1basic__json.html#ad1702349b3aeca0e518921336faa570c":[2,0,0,2,108],
+"classnlohmann_1_1basic__json.html#ad6d521a14fe494fb08bea79cfaaa9b46":[2,0,0,2,81],
+"classnlohmann_1_1basic__json.html#ad73f88f70fe5acfa521750a8cd710026":[2,0,0,2,185],
+"classnlohmann_1_1basic__json.html#ad7ca83d8fdd49dae585f9980af5f7a8c":[2,0,0,2,146],
+"classnlohmann_1_1basic__json.html#ad886f4baa2efb7ac6b0ca70dc72f3d18":[2,0,0,2,35],
+"classnlohmann_1_1basic__json.html#ad983106f7d7fd6a03cf609a9641976f4":[2,0,0,2,100],
+"classnlohmann_1_1basic__json.html#adaae3e55f4349e53d1526a6da464d34f":[2,0,0,2,154],
+"classnlohmann_1_1basic__json.html#adbb8131d4eaea460e8329bc0dfff1f6e":[2,0,0,2,159],
+"classnlohmann_1_1basic__json.html#adc6408fbeaf9545882dc62bc20db7d42":[2,0,0,2,80],
+"classnlohmann_1_1basic__json.html#ade1eb06e9fc3ff2ba1efd709b94b401d":[2,0,0,2,31],
+"classnlohmann_1_1basic__json.html#ade6945272c7b703520f435ad580d3c7f":[2,0,0,2,158],
+"classnlohmann_1_1basic__json.html#ae1e7bbc736b7e9d1155f9ee6c95b2090":[2,0,0,2,123],
+"classnlohmann_1_1basic__json.html#ae3300a95d3bb4a55cb0e04b9f125e42f":[2,0,0,2,57],
+"classnlohmann_1_1basic__json.html#ae3866ccade11e7b73902169714363f21":[2,0,0,2,148],
+"classnlohmann_1_1basic__json.html#ae48280c854cad4ff1b466310511d4815":[2,0,0,2,73],
+"classnlohmann_1_1basic__json.html#ae54982c31d6c21e140980ce502425cf6":[2,0,0,2,132],
+"classnlohmann_1_1basic__json.html#ae76659f8c2fbeab628a6c618e0817dee":[2,0,0,2,1],
+"classnlohmann_1_1basic__json.html#ae83ab5539e404c901ab216aafc9dc6d9":[2,0,0,2,15],
+"classnlohmann_1_1basic__json.html#ae8b2251872b6a3a9b04147d2ffa5a839":[2,0,0,2,5],
+"classnlohmann_1_1basic__json.html#ae91348b027208339c94dbbc6fd769929":[2,0,0,2,169],
+"classnlohmann_1_1basic__json.html#ae958b0bc067c82850145299711d8bcd5":[2,0,0,2,59],
+"classnlohmann_1_1basic__json.html#aeb76c192095f808283822c8401d2a3a1":[2,0,0,2,122],
+"classnlohmann_1_1basic__json.html#aebf93a806247231640c785fbc6985d10":[2,0,0,2,45],
+"classnlohmann_1_1basic__json.html#aee0ae36cbfb0336832ebc0374c3c7679":[2,0,0,2,173],
+"classnlohmann_1_1basic__json.html#aef302e3ae215e46e5035d0e4fdf47235":[2,0,0,2,176],
+"classnlohmann_1_1basic__json.html#af0623f174dc806b5c17b87a485febf68":[2,0,0,2,60],
+"classnlohmann_1_1basic__json.html#af11372ea846fedea8b2098dba7323831":[2,0,0,2,14],
+"classnlohmann_1_1basic__json.html#af21eb13ca205fb51e267e6f7ee269229":[2,0,0,2,42],
+"classnlohmann_1_1basic__json.html#af229d341abc5e2525a8ca4dc247533e1":[2,0,0,2,6],
+"classnlohmann_1_1basic__json.html#af4167275baa0b2da76cdc89b1117c300":[2,0,0,2,116],
+"classnlohmann_1_1basic__json.html#af700bb8239390cf462126f0c96606fae":[2,0,0,2,120],
+"classnlohmann_1_1basic__json.html#afcaf35277a772216232f82c2ecbe51df":[2,0,0,2,65],
+"classnlohmann_1_1basic__json.html#afe3c79845dc1dd2243724558859d7e4b":[2,0,0,2,140],
+"classnlohmann_1_1basic__json.html#afe9a6fe72337a174cfb117a2081d2cfc":[2,0,0,2,51],
+"classnlohmann_1_1basic__json.html#afefc38fc08bdb7a9a7474b5ab4a1140f":[2,0,0,2,178],
+"classnlohmann_1_1basic__json.html#affac3bab5efcb26cdcd0942d24ad0ab5":[2,0,0,2,143],
+"classnlohmann_1_1byte__container__with__subtype.html":[2,0,0,3],
+"classnlohmann_1_1byte__container__with__subtype.html#a4d27e8633c5a5e3b49dd4ccb06515713":[2,0,0,3,0],
+"classnlohmann_1_1byte__container__with__subtype.html#a7b122b28ff2b8680557ca44ac9748e49":[2,0,0,3,4],
+"classnlohmann_1_1byte__container__with__subtype.html#a9fc42fb07003bf7048c2f1fc79478e02":[2,0,0,3,3],
+"classnlohmann_1_1byte__container__with__subtype.html#aa1653b01b420607b359a3e8815b516c2":[2,0,0,3,1],
+"classnlohmann_1_1byte__container__with__subtype.html#ac3ca9d09e55342f9588404e1dc2222f0":[2,0,0,3,2],
+"classnlohmann_1_1detail_1_1binary__reader.html":[2,0,0,0,0],
+"classnlohmann_1_1detail_1_1binary__reader.html#a0ce1d7066597952efb008aaf578b2bd6":[2,0,0,0,0,17],
+"classnlohmann_1_1detail_1_1binary__reader.html#a23921422802aa472360dd05023e20565":[2,0,0,0,0,4],
+"classnlohmann_1_1detail_1_1binary__reader.html#a23bde2450d7a5772bf5051e36ff560a4":[2,0,0,0,0,6],
+"classnlohmann_1_1detail_1_1binary__reader.html#a23eb89a222e22533e9fd43e76722f44f":[2,0,0,0,0,8],
+"classnlohmann_1_1detail_1_1binary__reader.html#a252c1179651d22c5343bcf0b538ed26a":[2,0,0,0,0,27],
+"classnlohmann_1_1detail_1_1binary__reader.html#a354cbbaaea672c024ac949e1801c4302":[2,0,0,0,0,3],
+"classnlohmann_1_1detail_1_1binary__reader.html#a3750658328bf3ec3cf23f1626f9ec3af":[2,0,0,0,0,12],
+"classnlohmann_1_1detail_1_1binary__reader.html#a389e550fd397a48121cb82d92bb7475a":[2,0,0,0,0,16],
+"classnlohmann_1_1detail_1_1binary__reader.html#a47092a2195bf9cd3cdb4dda67cc404ed":[2,0,0,0,0,13],
+"classnlohmann_1_1detail_1_1binary__reader.html#a4ae90db51c102e912b7eac83c78733a6":[2,0,0,0,0,20],
+"classnlohmann_1_1detail_1_1binary__reader.html#a4e07b75ccb2579d0e738b894f0fd8cf8":[2,0,0,0,0,7],
+"classnlohmann_1_1detail_1_1binary__reader.html#a4e4accd5a2a41bfb2f18a8a0fcc9421c":[2,0,0,0,0,9],
+"classnlohmann_1_1detail_1_1binary__reader.html#a540919db22df36512f05a88945c13263":[2,0,0,0,0,28],
+"classnlohmann_1_1detail_1_1binary__reader.html#a545a44ae4b3fa2b7a61d9e8517fb7154":[2,0,0,0,0,10],
+"classnlohmann_1_1detail_1_1binary__reader.html#a548c770e60f2285a931de4b7333c1ab0":[2,0,0,0,0,33],
+"classnlohmann_1_1detail_1_1binary__reader.html#a55e13d567a53234573ab3833c0ca32e9":[2,0,0,0,0,29],
+"classnlohmann_1_1detail_1_1binary__reader.html#a5a79480d661019b0f3fc615ae12f7de7":[2,0,0,0,0,19],
+"classnlohmann_1_1detail_1_1binary__reader.html#a61a0bd8bbe7b560bd429fa990ba3ba1a":[2,0,0,0,0,30]
};
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 51bd921..d254e73 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX1 =
{
-"classnlohmann_1_1detail_1_1binary__reader.html#a4e4accd5a2a41bfb2f18a8a0fcc9421c":[4,0,1,0,0,9],
-"classnlohmann_1_1detail_1_1binary__reader.html#a540919db22df36512f05a88945c13263":[4,0,1,0,0,28],
-"classnlohmann_1_1detail_1_1binary__reader.html#a545a44ae4b3fa2b7a61d9e8517fb7154":[4,0,1,0,0,10],
-"classnlohmann_1_1detail_1_1binary__reader.html#a548c770e60f2285a931de4b7333c1ab0":[4,0,1,0,0,33],
-"classnlohmann_1_1detail_1_1binary__reader.html#a55e13d567a53234573ab3833c0ca32e9":[4,0,1,0,0,29],
-"classnlohmann_1_1detail_1_1binary__reader.html#a5a79480d661019b0f3fc615ae12f7de7":[4,0,1,0,0,19],
-"classnlohmann_1_1detail_1_1binary__reader.html#a61a0bd8bbe7b560bd429fa990ba3ba1a":[4,0,1,0,0,30],
-"classnlohmann_1_1detail_1_1binary__reader.html#a7b6c2d4c95d56751e233e285a5f1fea7":[4,0,1,0,0,22],
-"classnlohmann_1_1detail_1_1binary__reader.html#a7d323283c60a0b89ee5eeadf5cb9a5ad":[4,0,1,0,0,31],
-"classnlohmann_1_1detail_1_1binary__reader.html#a7e5e0b71548d0649ce4f131280d06c33":[4,0,1,0,0,23],
-"classnlohmann_1_1detail_1_1binary__reader.html#a8bebd21ceef09b6b2562e87861832700":[4,0,1,0,0,18],
-"classnlohmann_1_1detail_1_1binary__reader.html#a9940f56290b9278c58772eda2931e599":[4,0,1,0,0,5],
-"classnlohmann_1_1detail_1_1binary__reader.html#a9c413c9a1bade1ce345740f4d69156f0":[4,0,1,0,0,32],
-"classnlohmann_1_1detail_1_1binary__reader.html#aa03c779d4512b5764895dc341b0ef902":[4,0,1,0,0,35],
-"classnlohmann_1_1detail_1_1binary__reader.html#ab47df98119524e9c7d9ff0b820913883":[4,0,1,0,0,34],
-"classnlohmann_1_1detail_1_1binary__reader.html#ab4afd9ee276bbb15a0f898061aad94dd":[4,0,1,0,0,1],
-"classnlohmann_1_1detail_1_1binary__reader.html#aba4d89d9d38235f72f60332d6c385222":[4,0,1,0,0,37],
-"classnlohmann_1_1detail_1_1binary__reader.html#aba7ba9ec9a52ad2bee8baff70176aa20":[4,0,1,0,0,21],
-"classnlohmann_1_1detail_1_1binary__reader.html#abf2051ba57d9ea9b378a2e7c14e22b34":[4,0,1,0,0,2],
-"classnlohmann_1_1detail_1_1binary__reader.html#acb001d18095dc5bcf7336ae5122b8340":[4,0,1,0,0,11],
-"classnlohmann_1_1detail_1_1binary__reader.html#ad222095c0b21a87824cb10629299629a":[4,0,1,0,0,26],
-"classnlohmann_1_1detail_1_1binary__reader.html#ad615eba561e265165a80c95061af75b0":[4,0,1,0,0,36],
-"classnlohmann_1_1detail_1_1binary__reader.html#ad7cb69186e01b77ec021e83137461457":[4,0,1,0,0,0],
-"classnlohmann_1_1detail_1_1binary__reader.html#ad8cba5585327caa550dd5b6dd25a64f8":[4,0,1,0,0,15],
-"classnlohmann_1_1detail_1_1binary__reader.html#adcf64ad3207f4bf37a5a31c920a385c3":[4,0,1,0,0,25],
-"classnlohmann_1_1detail_1_1binary__reader.html#ae020385ce9424271d61f85d3842c02cb":[4,0,1,0,0,14],
-"classnlohmann_1_1detail_1_1binary__reader.html#afb36cb588b795efa513fc95e949493b7":[4,0,1,0,0,24],
-"classnlohmann_1_1detail_1_1binary__writer.html":[4,0,1,0,1],
-"classnlohmann_1_1detail_1_1binary__writer.html#a025212bd170253638b9f05b3b6aa5bf9":[4,0,1,0,1,13],
-"classnlohmann_1_1detail_1_1binary__writer.html#a048887c907afe39759b777e8c888414c":[4,0,1,0,1,18],
-"classnlohmann_1_1detail_1_1binary__writer.html#a0f6c65053d859269f88eb4ebb0cd7060":[4,0,1,0,1,4],
-"classnlohmann_1_1detail_1_1binary__writer.html#a1b5b7f5c03b1f8b1f59ea61db9634108":[4,0,1,0,1,5],
-"classnlohmann_1_1detail_1_1binary__writer.html#a263ec18815467bb9919021ef126919ca":[4,0,1,0,1,7],
-"classnlohmann_1_1detail_1_1binary__writer.html#a29b3e0f83a8e5f2307804023109ba2c9":[4,0,1,0,1,16],
-"classnlohmann_1_1detail_1_1binary__writer.html#a373289af95a946c19bb4a58a5df71a78":[4,0,1,0,1,0],
-"classnlohmann_1_1detail_1_1binary__writer.html#a4c129249a5aee8e4ec8add6c6184e4f7":[4,0,1,0,1,17],
-"classnlohmann_1_1detail_1_1binary__writer.html#a553ad4dbdf27238eef90867e4bf2f3e5":[4,0,1,0,1,10],
-"classnlohmann_1_1detail_1_1binary__writer.html#a5e295ed1be6af6260d2a65f7397c3742":[4,0,1,0,1,11],
-"classnlohmann_1_1detail_1_1binary__writer.html#a5e6574416915208fc035b57338ae3252":[4,0,1,0,1,8],
-"classnlohmann_1_1detail_1_1binary__writer.html#a6231302930265eccb3f56c378f7b0661":[4,0,1,0,1,12],
-"classnlohmann_1_1detail_1_1binary__writer.html#a6f15b782a7900f50ef37d123008e601b":[4,0,1,0,1,19],
-"classnlohmann_1_1detail_1_1binary__writer.html#a7ff58bf1a80018148bed860667ffca07":[4,0,1,0,1,15],
-"classnlohmann_1_1detail_1_1binary__writer.html#a97d34d9a70ddc06ae782c55454df42bc":[4,0,1,0,1,14],
-"classnlohmann_1_1detail_1_1binary__writer.html#a9927c1110b18661e0224a76156e5a7a9":[4,0,1,0,1,9],
-"classnlohmann_1_1detail_1_1binary__writer.html#a9ffc566db5219b473762462234b47db9":[4,0,1,0,1,1],
-"classnlohmann_1_1detail_1_1binary__writer.html#aa0ab8d27fd88a33a2f801413ac4c7fbc":[4,0,1,0,1,2],
-"classnlohmann_1_1detail_1_1binary__writer.html#ae099435e1df3096e0fc78333282f8f67":[4,0,1,0,1,6],
-"classnlohmann_1_1detail_1_1binary__writer.html#ae4e0852b64102ce4b07d99f08f828b7c":[4,0,1,0,1,3],
-"classnlohmann_1_1detail_1_1exception.html":[4,0,1,0,2],
-"classnlohmann_1_1detail_1_1exception.html#a0d4589a3fb54e81646d986c05efa3b9a":[4,0,1,0,2,1],
-"classnlohmann_1_1detail_1_1exception.html#a11fe48748e811531614c84883b00ccd5":[4,0,1,0,2,0],
-"classnlohmann_1_1detail_1_1exception.html#ad54778dc4f125488cbce8ec276dfdde2":[4,0,1,0,2,2],
-"classnlohmann_1_1detail_1_1file__input__adapter.html":[4,0,1,0,3],
-"classnlohmann_1_1detail_1_1file__input__adapter.html#a164fbe2739ac97e517e22bc1fff1c174":[4,0,1,0,3,0],
-"classnlohmann_1_1detail_1_1input__stream__adapter.html":[4,0,1,0,4],
-"classnlohmann_1_1detail_1_1input__stream__adapter.html#a55893bf84cb17d877464984942df9632":[4,0,1,0,4,0],
-"classnlohmann_1_1detail_1_1invalid__iterator.html":[4,0,1,0,6],
-"classnlohmann_1_1detail_1_1iter__impl.html":[4,0,1,0,7],
-"classnlohmann_1_1detail_1_1iter__impl.html#a0d14cd76203e00bdcef6a64a5d055cc7":[4,0,1,0,7,21],
-"classnlohmann_1_1detail_1_1iter__impl.html#a0dd9c415b94a02ff2aa25da75e52da30":[4,0,1,0,7,28],
-"classnlohmann_1_1detail_1_1iter__impl.html#a15dfb2744fed2ef40c12a9e9a20d6dbc":[4,0,1,0,7,31],
-"classnlohmann_1_1detail_1_1iter__impl.html#a19aa457f9c4af1b7e3af59839132cc5c":[4,0,1,0,7,5],
-"classnlohmann_1_1detail_1_1iter__impl.html#a23e50ad4c13aa62d9ac7f60a123823ee":[4,0,1,0,7,12],
-"classnlohmann_1_1detail_1_1iter__impl.html#a2b592605b63ae7f5401996ffa3b14393":[4,0,1,0,7,19],
-"classnlohmann_1_1detail_1_1iter__impl.html#a2f7ea9f7022850809c60fc3263775840":[4,0,1,0,7,2],
-"classnlohmann_1_1detail_1_1iter__impl.html#a3eef94f9d167046e7f773aeb6b78090c":[4,0,1,0,7,25],
-"classnlohmann_1_1detail_1_1iter__impl.html#a49bf3e708a9c1c88c415011735962d06":[4,0,1,0,7,29],
-"classnlohmann_1_1detail_1_1iter__impl.html#a5be8001be099c6b82310f4d387b953ce":[4,0,1,0,7,4],
-"classnlohmann_1_1detail_1_1iter__impl.html#a5ca57856d9bba54a5fc51cee891de827":[4,0,1,0,7,13],
-"classnlohmann_1_1detail_1_1iter__impl.html#a5d5f92c7f6848814bc82cf7e4e541820":[4,0,1,0,7,11],
-"classnlohmann_1_1detail_1_1iter__impl.html#a60f3b0a96cc0bff9a7e6ab84ca538a45":[4,0,1,0,7,15],
-"classnlohmann_1_1detail_1_1iter__impl.html#a634f85da575cb60b012a687efa26e11a":[4,0,1,0,7,24],
-"classnlohmann_1_1detail_1_1iter__impl.html#a69e52f890ce8c556fd68ce109e24b360":[4,0,1,0,7,3],
-"classnlohmann_1_1detail_1_1iter__impl.html#a6da3d2b34528aff328f3dcb513076dec":[4,0,1,0,7,14],
-"classnlohmann_1_1detail_1_1iter__impl.html#a7159ed1cfe7c423a2baef8bea0c94509":[4,0,1,0,7,10],
-"classnlohmann_1_1detail_1_1iter__impl.html#a71f84fb6e009619f12972bcf9002b8cd":[4,0,1,0,7,7],
-"classnlohmann_1_1detail_1_1iter__impl.html#a84e689fb581d651d130039f7cb81494a":[4,0,1,0,7,18],
-"classnlohmann_1_1detail_1_1iter__impl.html#a867f7eb55091be31b013adb3e46816d3":[4,0,1,0,7,8],
-"classnlohmann_1_1detail_1_1iter__impl.html#a88a00484ac201c52fc5f613d88a2918b":[4,0,1,0,7,6],
-"classnlohmann_1_1detail_1_1iter__impl.html#a8a86a7c0d4af0cc4ab345b6f0e13cdfa":[4,0,1,0,7,35],
-"classnlohmann_1_1detail_1_1iter__impl.html#a8ef76aeb5a5032768f0f61f48ac189c0":[4,0,1,0,7,27],
-"classnlohmann_1_1detail_1_1iter__impl.html#a94108d1a7563e103534f23eb5c1ee175":[4,0,1,0,7,33],
-"classnlohmann_1_1detail_1_1iter__impl.html#a9a5cd7864a8f848ef107d3f5a330f5e7":[4,0,1,0,7,9],
-"classnlohmann_1_1detail_1_1iter__impl.html#aaf3620b8dfa4bed8a9ac2b51dd55dbd7":[4,0,1,0,7,23],
-"classnlohmann_1_1detail_1_1iter__impl.html#ab35586a44f2222272c5346baa3013f67":[4,0,1,0,7,1],
-"classnlohmann_1_1detail_1_1iter__impl.html#ab447c50354c6611fa2ae0100ac17845c":[4,0,1,0,7,32],
-"classnlohmann_1_1detail_1_1iter__impl.html#abcc9d51bc52f2e8483bbe4018f05e978":[4,0,1,0,7,26],
-"classnlohmann_1_1detail_1_1iter__impl.html#abdfe2a7f464400a7ab572782d14b922f":[4,0,1,0,7,16],
-"classnlohmann_1_1detail_1_1iter__impl.html#ac0b9276f1102ed4b9cd3f5f56287e3ce":[4,0,1,0,7,30],
-"classnlohmann_1_1detail_1_1iter__impl.html#ac6f71b36d7c87e427d1fee83f2600fad":[4,0,1,0,7,22],
-"classnlohmann_1_1detail_1_1iter__impl.html#aca84f84be598bdfaaddd23d928c42bbb":[4,0,1,0,7,34],
-"classnlohmann_1_1detail_1_1iter__impl.html#ad9e091f5c70b34b5b1abc1ab15fd9106":[4,0,1,0,7,0],
-"classnlohmann_1_1detail_1_1iter__impl.html#aeab0e2b5da70b3bdebecd5b1a6ee66a6":[4,0,1,0,7,20],
-"classnlohmann_1_1detail_1_1iter__impl.html#af91fb0bb9b2a2e96af030564ded2d92c":[4,0,1,0,7,17],
-"classnlohmann_1_1detail_1_1iteration__proxy.html":[4,0,1,0,8],
-"classnlohmann_1_1detail_1_1iteration__proxy.html#a379f86709d340c4ab1995539b8af623d":[4,0,1,0,8,1],
-"classnlohmann_1_1detail_1_1iteration__proxy.html#a88c0532ba4a5de1d527b18053b24fd19":[4,0,1,0,8,3],
-"classnlohmann_1_1detail_1_1iteration__proxy.html#a90091f8492d23576edef72c5e8b9d4cf":[4,0,1,0,8,2],
-"classnlohmann_1_1detail_1_1iteration__proxy.html#afe257e972e3b4658ef2e355f7389d4a5":[4,0,1,0,8,0],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html":[4,0,1,0,9],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a0246de16ece16293f2917dfa5d96e278":[4,0,1,0,9,2],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a2488d6a902103610943920ac49d12a04":[4,0,1,0,9,7],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a26caf0069a50ce4ecb010a1453e883fc":[4,0,1,0,9,5],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a42f51a69bac7b2aebb613b2164e457f1":[4,0,1,0,9,1],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a43dceb18497ff745d936068c77c8cd56":[4,0,1,0,9,4],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a4e5d0a3bee433104ef87366e00536e01":[4,0,1,0,9,8],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a549c6eb10b6434eaf772f71d129a6d79":[4,0,1,0,9,10],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a6b2ef1d632fe49bfcc22fbd1abd62395":[4,0,1,0,9,0],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a6c2d025530114ed989188e8adfc8467e":[4,0,1,0,9,3],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a7bbf1ecd75b7a0a488608a2760237c9f":[4,0,1,0,9,6],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a8ed9e445e03c49c46612eb7f7d55bb61":[4,0,1,0,9,12],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#aaaa6c0b1d74e74e35e5f7b56dfd6c5d1":[4,0,1,0,9,11],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#aabf172b436988e2edde22f13f27caaed":[4,0,1,0,9,9],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#adc648a641e8e9a1072c5abd56ad06401":[4,0,1,0,9,13],
-"classnlohmann_1_1detail_1_1json__reverse__iterator.html#ae22803d442d483041d17239615f83b58":[4,0,1,0,9,14],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html":[4,0,1,0,10],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#a31ccb472ed855e2f2370fd091d91aad7":[4,0,1,0,10,5],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#a9c03c76d3a8e89c8928097ba0b92c2db":[4,0,1,0,10,4],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#aa1a5e21be350727cf61a101aa5c6796e":[4,0,1,0,10,1],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#aa7526e7ae7be7f63803a23fd8cf36e5d":[4,0,1,0,10,3],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#ad0953e8d888339421d909d9016bc6e2c":[4,0,1,0,10,6],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#aef0477277389e399d7128898841b71c0":[4,0,1,0,10,2],
-"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#afc50fee0a92ce84afb84041ebbdfba80":[4,0,1,0,10,0],
-"classnlohmann_1_1detail_1_1lexer.html":[4,0,1,0,11],
-"classnlohmann_1_1detail_1_1lexer.html#a11528814930243028ac5b8901f4a17d7":[4,0,1,0,11,18],
-"classnlohmann_1_1detail_1_1lexer.html#a36ffc3c33c3aea18291ead7a30fa7cc6":[4,0,1,0,11,8],
-"classnlohmann_1_1detail_1_1lexer.html#a3bda093837339813916d11fb6e396606":[4,0,1,0,11,6],
-"classnlohmann_1_1detail_1_1lexer.html#a40b108a0e45a7253f6ad85fbdaa6a262":[4,0,1,0,11,20],
-"classnlohmann_1_1detail_1_1lexer.html#a40bd85d91d377ade9ccb910e35776c22":[4,0,1,0,11,19],
-"classnlohmann_1_1detail_1_1lexer.html#a526d001dd91ec55b8032ba98466765c0":[4,0,1,0,11,17],
-"classnlohmann_1_1detail_1_1lexer.html#a5ff4935dd3a007659d17efd626b93982":[4,0,1,0,11,15],
-"classnlohmann_1_1detail_1_1lexer.html#a6f2fd5b4b6b153f11fc8f77213350073":[4,0,1,0,11,25],
-"classnlohmann_1_1detail_1_1lexer.html#a76875bb49a480763f6c48b8586f7e60e":[4,0,1,0,11,12],
-"classnlohmann_1_1detail_1_1lexer.html#a7cd7d55de2cd398660bc243c7229caf9":[4,0,1,0,11,16],
-"classnlohmann_1_1detail_1_1lexer.html#a84cbcd8c897c98c2ce04d29a29bf84cc":[4,0,1,0,11,24],
-"classnlohmann_1_1detail_1_1lexer.html#a8a1bda107ce1622c0cb3174fa12155ea":[4,0,1,0,11,21],
-"classnlohmann_1_1detail_1_1lexer.html#a948c80b8bd8a3095b544e4655e1ca37e":[4,0,1,0,11,13],
-"classnlohmann_1_1detail_1_1lexer.html#a94aec416b883f742ba7f20bd16adb3c3":[4,0,1,0,11,22],
-"classnlohmann_1_1detail_1_1lexer.html#a9535d0c72adbe9fe149853ebad5faee8":[4,0,1,0,11,9],
-"classnlohmann_1_1detail_1_1lexer.html#aab51a28e32c1957329141baff8eda1c4":[4,0,1,0,11,4],
-"classnlohmann_1_1detail_1_1lexer.html#ab5811afe1c3efb0b769f7733b8373c6f":[4,0,1,0,11,7],
-"classnlohmann_1_1detail_1_1lexer.html#ab6352978e03ebcbc3cd618cd17142f26":[4,0,1,0,11,2],
-"classnlohmann_1_1detail_1_1lexer.html#abfc85ff04fcb1a5a8d8ea299a4c479e5":[4,0,1,0,11,10],
-"classnlohmann_1_1detail_1_1lexer.html#ac4eaf39567bd5f0750e5d7e913fb474d":[4,0,1,0,11,23],
-"classnlohmann_1_1detail_1_1lexer.html#ad89dec0ac0f4e851925a0499e043b18b":[4,0,1,0,11,5],
-"classnlohmann_1_1detail_1_1lexer.html#adb1a71f6a3e65ed32c452a318967b61e":[4,0,1,0,11,11],
-"classnlohmann_1_1detail_1_1lexer.html#adcf663a9878f58544790f1b6faad2e42":[4,0,1,0,11,0],
-"classnlohmann_1_1detail_1_1lexer.html#ae000b7571480e528dee4b281f63d5b15":[4,0,1,0,11,14],
-"classnlohmann_1_1detail_1_1lexer.html#af6fe701b8b3ca5f4a1b58db4658bdf87":[4,0,1,0,11,1],
-"classnlohmann_1_1detail_1_1lexer.html#afdc68706ad20be93977cd0f97043ea7f":[4,0,1,0,11,3],
-"classnlohmann_1_1detail_1_1other__error.html":[4,0,1,0,12],
-"classnlohmann_1_1detail_1_1out__of__range.html":[4,0,1,0,13],
-"classnlohmann_1_1detail_1_1output__stream__adapter.html":[4,0,1,0,15],
-"classnlohmann_1_1detail_1_1output__string__adapter.html":[4,0,1,0,16],
-"classnlohmann_1_1detail_1_1output__vector__adapter.html":[4,0,1,0,17],
-"classnlohmann_1_1detail_1_1parse__error.html":[4,0,1,0,18],
-"classnlohmann_1_1detail_1_1parse__error.html#a9505aaa1ca943be927eec7cc579592ff":[4,0,1,0,18,0],
-"classnlohmann_1_1detail_1_1parser.html":[4,0,1,0,19],
-"classnlohmann_1_1detail_1_1parser.html#a01a73810f794c239aaf123aa2af7371d":[4,0,1,0,19,6],
-"classnlohmann_1_1detail_1_1parser.html#a1212088ee1e23633a76b2ed80514de79":[4,0,1,0,19,3],
-"classnlohmann_1_1detail_1_1parser.html#a307ed42d5f31a9c5bec991ceee87b0e7":[4,0,1,0,19,5],
-"classnlohmann_1_1detail_1_1parser.html#a33b852bf63cba58310d9c0d1242cfb12":[4,0,1,0,19,0],
-"classnlohmann_1_1detail_1_1parser.html#a39784a586867c05388cb0adca0fd72b5":[4,0,1,0,19,2],
-"classnlohmann_1_1detail_1_1parser.html#a6bf70a72a1632ef55c0068557b1be37a":[4,0,1,0,19,4],
-"classnlohmann_1_1detail_1_1parser.html#a75fb9145ea85f1ad9cc14f61981e1111":[4,0,1,0,19,1],
-"classnlohmann_1_1detail_1_1parser.html#ab0dbaeaa6df00631072f902068c57750":[4,0,1,0,19,7],
-"classnlohmann_1_1detail_1_1type__error.html":[4,0,1,0,21],
-"classnlohmann_1_1json__pointer.html":[4,0,1,4],
-"classnlohmann_1_1json__pointer.html#a07a990a6838de4f38ee9d881e7b9fd61":[4,0,1,4,23],
-"classnlohmann_1_1json__pointer.html#a213bc67c32a30c68ac6bf06f5195d482":[4,0,1,4,8],
-"classnlohmann_1_1json__pointer.html#a366d68a67e40d86676d3bdb52e167294":[4,0,1,4,14],
-"classnlohmann_1_1json__pointer.html#a3d4b15d32d096e3776c5d2c773b524f5":[4,0,1,4,1],
-"classnlohmann_1_1json__pointer.html#a4667ef558c8c3f8a646bfda0c6654653":[4,0,1,4,21],
-"classnlohmann_1_1json__pointer.html#a4b1ee4d511ca195bed896a3da47e264c":[4,0,1,4,7],
-"classnlohmann_1_1json__pointer.html#a55a5bbbc3007e479607304a3e8cb9bf5":[4,0,1,4,16],
-"classnlohmann_1_1json__pointer.html#a577512ee6b7f030e8872b4d29fa5c3e5":[4,0,1,4,13],
-"classnlohmann_1_1json__pointer.html#a583c726016f440ffe65553935c101ff5":[4,0,1,4,12],
-"classnlohmann_1_1json__pointer.html#a649252bda4a2e75a0915b11a25d8bcc3":[4,0,1,4,11],
-"classnlohmann_1_1json__pointer.html#a6779edcf28e6f018a3bbb29c0b4b5e1e":[4,0,1,4,22],
-"classnlohmann_1_1json__pointer.html#a697d12b5bd6205f8866691b166b7c7dc":[4,0,1,4,9],
-"classnlohmann_1_1json__pointer.html#a7395bd0af29ac23fd3f21543c935cdfa":[4,0,1,4,3],
-"classnlohmann_1_1json__pointer.html#a7de51480324eb1c5a89ed552cd699875":[4,0,1,4,5],
-"classnlohmann_1_1json__pointer.html#a7f32d7c62841f0c4a6784cf741a6e4f8":[4,0,1,4,0],
-"classnlohmann_1_1json__pointer.html#a90a11fe6c7f37b1746a3ff9cb24b0d53":[4,0,1,4,18],
-"classnlohmann_1_1json__pointer.html#a90d38e45e2d3add52d824bc55da8f772":[4,0,1,4,17],
-"classnlohmann_1_1json__pointer.html#a926c9065dbed1bedc17857a813f7a46f":[4,0,1,4,19],
-"classnlohmann_1_1json__pointer.html#abdd21567b2b1d69329af0f520335e68b":[4,0,1,4,4],
-"classnlohmann_1_1json__pointer.html#ac228b13596d3c34185da9fe61b570194":[4,0,1,4,10],
-"classnlohmann_1_1json__pointer.html#ad6a01f8e1556eef68e5a49b33fef1548":[4,0,1,4,15],
-"classnlohmann_1_1json__pointer.html#ae9015c658f99cf3d48a8563accc79988":[4,0,1,4,2],
-"classnlohmann_1_1json__pointer.html#af5a4bc4f82113c271c9a0cd4d3b5f31c":[4,0,1,4,20],
-"classnlohmann_1_1json__pointer.html#afdaacce1edb7145e0434e014f0e8685a":[4,0,1,4,6],
-"classsound.html":[4,0,5],
-"classsound.html#a2f69382c0ac7e2aa90d8278cc5b6bd70":[4,0,5,0],
-"classsound.html#a4a82f1972ceb6a2642bb2dcc067c3d72":[4,0,5,1],
-"classsound.html#abb2c33709eb822528889e32722fc1153":[4,0,5,2],
-"classsound.html#adf45b194f1b8bcbaca3ee6eec0ecc71a":[4,0,5,3],
-"deprecated.html":[1],
-"functions.html":[4,3,0,0],
-"functions.html":[4,3,0],
-"functions_b.html":[4,3,0,1],
-"functions_c.html":[4,3,0,2],
-"functions_d.html":[4,3,0,3],
-"functions_e.html":[4,3,0,4],
-"functions_f.html":[4,3,0,5],
-"functions_func.html":[4,3,1,0],
-"functions_func.html":[4,3,1],
-"functions_func_b.html":[4,3,1,1],
-"functions_func_c.html":[4,3,1,2],
-"functions_func_d.html":[4,3,1,3],
-"functions_func_e.html":[4,3,1,4],
-"functions_func_f.html":[4,3,1,5],
-"functions_func_g.html":[4,3,1,6],
-"functions_func_h.html":[4,3,1,7],
-"functions_func_i.html":[4,3,1,8],
-"functions_func_j.html":[4,3,1,9],
-"functions_func_k.html":[4,3,1,10],
-"functions_func_l.html":[4,3,1,11],
-"functions_func_m.html":[4,3,1,12],
-"functions_func_n.html":[4,3,1,13],
-"functions_func_o.html":[4,3,1,14],
-"functions_func_p.html":[4,3,1,15],
-"functions_func_r.html":[4,3,1,16],
-"functions_func_s.html":[4,3,1,17],
-"functions_func_t.html":[4,3,1,18],
-"functions_func_u.html":[4,3,1,19],
-"functions_func_v.html":[4,3,1,20],
-"functions_func_w.html":[4,3,1,21],
-"functions_func_~.html":[4,3,1,22],
-"functions_g.html":[4,3,0,6],
-"functions_h.html":[4,3,0,7],
-"functions_i.html":[4,3,0,8],
-"functions_j.html":[4,3,0,9],
-"functions_k.html":[4,3,0,10],
-"functions_l.html":[4,3,0,11],
-"functions_m.html":[4,3,0,12],
-"functions_n.html":[4,3,0,13],
-"functions_o.html":[4,3,0,14],
-"functions_p.html":[4,3,0,15],
-"functions_r.html":[4,3,0,16],
-"functions_rela.html":[4,3,4],
-"functions_s.html":[4,3,0,17],
-"functions_t.html":[4,3,0,18],
-"functions_type.html":[4,3,3],
-"functions_u.html":[4,3,0,19],
-"functions_v.html":[4,3,0,20],
-"functions_vars.html":[4,3,2],
-"functions_w.html":[4,3,0,21],
-"functions_~.html":[4,3,0,22],
-"hierarchy.html":[4,2]
+"classnlohmann_1_1detail_1_1binary__reader.html#a7b6c2d4c95d56751e233e285a5f1fea7":[2,0,0,0,0,22],
+"classnlohmann_1_1detail_1_1binary__reader.html#a7d323283c60a0b89ee5eeadf5cb9a5ad":[2,0,0,0,0,31],
+"classnlohmann_1_1detail_1_1binary__reader.html#a7e5e0b71548d0649ce4f131280d06c33":[2,0,0,0,0,23],
+"classnlohmann_1_1detail_1_1binary__reader.html#a8bebd21ceef09b6b2562e87861832700":[2,0,0,0,0,18],
+"classnlohmann_1_1detail_1_1binary__reader.html#a9940f56290b9278c58772eda2931e599":[2,0,0,0,0,5],
+"classnlohmann_1_1detail_1_1binary__reader.html#a9c413c9a1bade1ce345740f4d69156f0":[2,0,0,0,0,32],
+"classnlohmann_1_1detail_1_1binary__reader.html#aa03c779d4512b5764895dc341b0ef902":[2,0,0,0,0,35],
+"classnlohmann_1_1detail_1_1binary__reader.html#ab47df98119524e9c7d9ff0b820913883":[2,0,0,0,0,34],
+"classnlohmann_1_1detail_1_1binary__reader.html#ab4afd9ee276bbb15a0f898061aad94dd":[2,0,0,0,0,1],
+"classnlohmann_1_1detail_1_1binary__reader.html#aba4d89d9d38235f72f60332d6c385222":[2,0,0,0,0,37],
+"classnlohmann_1_1detail_1_1binary__reader.html#aba7ba9ec9a52ad2bee8baff70176aa20":[2,0,0,0,0,21],
+"classnlohmann_1_1detail_1_1binary__reader.html#abf2051ba57d9ea9b378a2e7c14e22b34":[2,0,0,0,0,2],
+"classnlohmann_1_1detail_1_1binary__reader.html#acb001d18095dc5bcf7336ae5122b8340":[2,0,0,0,0,11],
+"classnlohmann_1_1detail_1_1binary__reader.html#ad222095c0b21a87824cb10629299629a":[2,0,0,0,0,26],
+"classnlohmann_1_1detail_1_1binary__reader.html#ad615eba561e265165a80c95061af75b0":[2,0,0,0,0,36],
+"classnlohmann_1_1detail_1_1binary__reader.html#ad7cb69186e01b77ec021e83137461457":[2,0,0,0,0,0],
+"classnlohmann_1_1detail_1_1binary__reader.html#ad8cba5585327caa550dd5b6dd25a64f8":[2,0,0,0,0,15],
+"classnlohmann_1_1detail_1_1binary__reader.html#adcf64ad3207f4bf37a5a31c920a385c3":[2,0,0,0,0,25],
+"classnlohmann_1_1detail_1_1binary__reader.html#ae020385ce9424271d61f85d3842c02cb":[2,0,0,0,0,14],
+"classnlohmann_1_1detail_1_1binary__reader.html#afb36cb588b795efa513fc95e949493b7":[2,0,0,0,0,24],
+"classnlohmann_1_1detail_1_1binary__writer.html":[2,0,0,0,1],
+"classnlohmann_1_1detail_1_1binary__writer.html#a025212bd170253638b9f05b3b6aa5bf9":[2,0,0,0,1,13],
+"classnlohmann_1_1detail_1_1binary__writer.html#a048887c907afe39759b777e8c888414c":[2,0,0,0,1,18],
+"classnlohmann_1_1detail_1_1binary__writer.html#a0f6c65053d859269f88eb4ebb0cd7060":[2,0,0,0,1,4],
+"classnlohmann_1_1detail_1_1binary__writer.html#a1b5b7f5c03b1f8b1f59ea61db9634108":[2,0,0,0,1,5],
+"classnlohmann_1_1detail_1_1binary__writer.html#a263ec18815467bb9919021ef126919ca":[2,0,0,0,1,7],
+"classnlohmann_1_1detail_1_1binary__writer.html#a29b3e0f83a8e5f2307804023109ba2c9":[2,0,0,0,1,16],
+"classnlohmann_1_1detail_1_1binary__writer.html#a373289af95a946c19bb4a58a5df71a78":[2,0,0,0,1,0],
+"classnlohmann_1_1detail_1_1binary__writer.html#a4c129249a5aee8e4ec8add6c6184e4f7":[2,0,0,0,1,17],
+"classnlohmann_1_1detail_1_1binary__writer.html#a553ad4dbdf27238eef90867e4bf2f3e5":[2,0,0,0,1,10],
+"classnlohmann_1_1detail_1_1binary__writer.html#a5e295ed1be6af6260d2a65f7397c3742":[2,0,0,0,1,11],
+"classnlohmann_1_1detail_1_1binary__writer.html#a5e6574416915208fc035b57338ae3252":[2,0,0,0,1,8],
+"classnlohmann_1_1detail_1_1binary__writer.html#a6231302930265eccb3f56c378f7b0661":[2,0,0,0,1,12],
+"classnlohmann_1_1detail_1_1binary__writer.html#a6f15b782a7900f50ef37d123008e601b":[2,0,0,0,1,19],
+"classnlohmann_1_1detail_1_1binary__writer.html#a7ff58bf1a80018148bed860667ffca07":[2,0,0,0,1,15],
+"classnlohmann_1_1detail_1_1binary__writer.html#a97d34d9a70ddc06ae782c55454df42bc":[2,0,0,0,1,14],
+"classnlohmann_1_1detail_1_1binary__writer.html#a9927c1110b18661e0224a76156e5a7a9":[2,0,0,0,1,9],
+"classnlohmann_1_1detail_1_1binary__writer.html#a9ffc566db5219b473762462234b47db9":[2,0,0,0,1,1],
+"classnlohmann_1_1detail_1_1binary__writer.html#aa0ab8d27fd88a33a2f801413ac4c7fbc":[2,0,0,0,1,2],
+"classnlohmann_1_1detail_1_1binary__writer.html#ae099435e1df3096e0fc78333282f8f67":[2,0,0,0,1,6],
+"classnlohmann_1_1detail_1_1binary__writer.html#ae4e0852b64102ce4b07d99f08f828b7c":[2,0,0,0,1,3],
+"classnlohmann_1_1detail_1_1exception.html":[2,0,0,0,2],
+"classnlohmann_1_1detail_1_1exception.html#a0d4589a3fb54e81646d986c05efa3b9a":[2,0,0,0,2,1],
+"classnlohmann_1_1detail_1_1exception.html#a11fe48748e811531614c84883b00ccd5":[2,0,0,0,2,0],
+"classnlohmann_1_1detail_1_1exception.html#ad54778dc4f125488cbce8ec276dfdde2":[2,0,0,0,2,2],
+"classnlohmann_1_1detail_1_1file__input__adapter.html":[2,0,0,0,3],
+"classnlohmann_1_1detail_1_1file__input__adapter.html#a164fbe2739ac97e517e22bc1fff1c174":[2,0,0,0,3,0],
+"classnlohmann_1_1detail_1_1input__stream__adapter.html":[2,0,0,0,4],
+"classnlohmann_1_1detail_1_1input__stream__adapter.html#a55893bf84cb17d877464984942df9632":[2,0,0,0,4,0],
+"classnlohmann_1_1detail_1_1invalid__iterator.html":[2,0,0,0,6],
+"classnlohmann_1_1detail_1_1iter__impl.html":[2,0,0,0,7],
+"classnlohmann_1_1detail_1_1iter__impl.html#a0d14cd76203e00bdcef6a64a5d055cc7":[2,0,0,0,7,21],
+"classnlohmann_1_1detail_1_1iter__impl.html#a0dd9c415b94a02ff2aa25da75e52da30":[2,0,0,0,7,28],
+"classnlohmann_1_1detail_1_1iter__impl.html#a15dfb2744fed2ef40c12a9e9a20d6dbc":[2,0,0,0,7,31],
+"classnlohmann_1_1detail_1_1iter__impl.html#a19aa457f9c4af1b7e3af59839132cc5c":[2,0,0,0,7,5],
+"classnlohmann_1_1detail_1_1iter__impl.html#a23e50ad4c13aa62d9ac7f60a123823ee":[2,0,0,0,7,12],
+"classnlohmann_1_1detail_1_1iter__impl.html#a2b592605b63ae7f5401996ffa3b14393":[2,0,0,0,7,19],
+"classnlohmann_1_1detail_1_1iter__impl.html#a2f7ea9f7022850809c60fc3263775840":[2,0,0,0,7,2],
+"classnlohmann_1_1detail_1_1iter__impl.html#a3eef94f9d167046e7f773aeb6b78090c":[2,0,0,0,7,25],
+"classnlohmann_1_1detail_1_1iter__impl.html#a49bf3e708a9c1c88c415011735962d06":[2,0,0,0,7,29],
+"classnlohmann_1_1detail_1_1iter__impl.html#a5be8001be099c6b82310f4d387b953ce":[2,0,0,0,7,4],
+"classnlohmann_1_1detail_1_1iter__impl.html#a5ca57856d9bba54a5fc51cee891de827":[2,0,0,0,7,13],
+"classnlohmann_1_1detail_1_1iter__impl.html#a5d5f92c7f6848814bc82cf7e4e541820":[2,0,0,0,7,11],
+"classnlohmann_1_1detail_1_1iter__impl.html#a60f3b0a96cc0bff9a7e6ab84ca538a45":[2,0,0,0,7,15],
+"classnlohmann_1_1detail_1_1iter__impl.html#a634f85da575cb60b012a687efa26e11a":[2,0,0,0,7,24],
+"classnlohmann_1_1detail_1_1iter__impl.html#a69e52f890ce8c556fd68ce109e24b360":[2,0,0,0,7,3],
+"classnlohmann_1_1detail_1_1iter__impl.html#a6da3d2b34528aff328f3dcb513076dec":[2,0,0,0,7,14],
+"classnlohmann_1_1detail_1_1iter__impl.html#a7159ed1cfe7c423a2baef8bea0c94509":[2,0,0,0,7,10],
+"classnlohmann_1_1detail_1_1iter__impl.html#a71f84fb6e009619f12972bcf9002b8cd":[2,0,0,0,7,7],
+"classnlohmann_1_1detail_1_1iter__impl.html#a84e689fb581d651d130039f7cb81494a":[2,0,0,0,7,18],
+"classnlohmann_1_1detail_1_1iter__impl.html#a867f7eb55091be31b013adb3e46816d3":[2,0,0,0,7,8],
+"classnlohmann_1_1detail_1_1iter__impl.html#a88a00484ac201c52fc5f613d88a2918b":[2,0,0,0,7,6],
+"classnlohmann_1_1detail_1_1iter__impl.html#a8a86a7c0d4af0cc4ab345b6f0e13cdfa":[2,0,0,0,7,35],
+"classnlohmann_1_1detail_1_1iter__impl.html#a8ef76aeb5a5032768f0f61f48ac189c0":[2,0,0,0,7,27],
+"classnlohmann_1_1detail_1_1iter__impl.html#a94108d1a7563e103534f23eb5c1ee175":[2,0,0,0,7,33],
+"classnlohmann_1_1detail_1_1iter__impl.html#a9a5cd7864a8f848ef107d3f5a330f5e7":[2,0,0,0,7,9],
+"classnlohmann_1_1detail_1_1iter__impl.html#aaf3620b8dfa4bed8a9ac2b51dd55dbd7":[2,0,0,0,7,23],
+"classnlohmann_1_1detail_1_1iter__impl.html#ab35586a44f2222272c5346baa3013f67":[2,0,0,0,7,1],
+"classnlohmann_1_1detail_1_1iter__impl.html#ab447c50354c6611fa2ae0100ac17845c":[2,0,0,0,7,32],
+"classnlohmann_1_1detail_1_1iter__impl.html#abcc9d51bc52f2e8483bbe4018f05e978":[2,0,0,0,7,26],
+"classnlohmann_1_1detail_1_1iter__impl.html#abdfe2a7f464400a7ab572782d14b922f":[2,0,0,0,7,16],
+"classnlohmann_1_1detail_1_1iter__impl.html#ac0b9276f1102ed4b9cd3f5f56287e3ce":[2,0,0,0,7,30],
+"classnlohmann_1_1detail_1_1iter__impl.html#ac6f71b36d7c87e427d1fee83f2600fad":[2,0,0,0,7,22],
+"classnlohmann_1_1detail_1_1iter__impl.html#aca84f84be598bdfaaddd23d928c42bbb":[2,0,0,0,7,34],
+"classnlohmann_1_1detail_1_1iter__impl.html#ad9e091f5c70b34b5b1abc1ab15fd9106":[2,0,0,0,7,0],
+"classnlohmann_1_1detail_1_1iter__impl.html#aeab0e2b5da70b3bdebecd5b1a6ee66a6":[2,0,0,0,7,20],
+"classnlohmann_1_1detail_1_1iter__impl.html#af91fb0bb9b2a2e96af030564ded2d92c":[2,0,0,0,7,17],
+"classnlohmann_1_1detail_1_1iteration__proxy.html":[2,0,0,0,8],
+"classnlohmann_1_1detail_1_1iteration__proxy.html#a379f86709d340c4ab1995539b8af623d":[2,0,0,0,8,1],
+"classnlohmann_1_1detail_1_1iteration__proxy.html#a88c0532ba4a5de1d527b18053b24fd19":[2,0,0,0,8,3],
+"classnlohmann_1_1detail_1_1iteration__proxy.html#a90091f8492d23576edef72c5e8b9d4cf":[2,0,0,0,8,2],
+"classnlohmann_1_1detail_1_1iteration__proxy.html#afe257e972e3b4658ef2e355f7389d4a5":[2,0,0,0,8,0],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html":[2,0,0,0,9],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a0246de16ece16293f2917dfa5d96e278":[2,0,0,0,9,2],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a2488d6a902103610943920ac49d12a04":[2,0,0,0,9,7],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a26caf0069a50ce4ecb010a1453e883fc":[2,0,0,0,9,5],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a42f51a69bac7b2aebb613b2164e457f1":[2,0,0,0,9,1],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a43dceb18497ff745d936068c77c8cd56":[2,0,0,0,9,4],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a4e5d0a3bee433104ef87366e00536e01":[2,0,0,0,9,8],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a549c6eb10b6434eaf772f71d129a6d79":[2,0,0,0,9,10],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a6b2ef1d632fe49bfcc22fbd1abd62395":[2,0,0,0,9,0],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a6c2d025530114ed989188e8adfc8467e":[2,0,0,0,9,3],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a7bbf1ecd75b7a0a488608a2760237c9f":[2,0,0,0,9,6],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#a8ed9e445e03c49c46612eb7f7d55bb61":[2,0,0,0,9,12],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#aaaa6c0b1d74e74e35e5f7b56dfd6c5d1":[2,0,0,0,9,11],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#aabf172b436988e2edde22f13f27caaed":[2,0,0,0,9,9],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#adc648a641e8e9a1072c5abd56ad06401":[2,0,0,0,9,13],
+"classnlohmann_1_1detail_1_1json__reverse__iterator.html#ae22803d442d483041d17239615f83b58":[2,0,0,0,9,14],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html":[2,0,0,0,10],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#a31ccb472ed855e2f2370fd091d91aad7":[2,0,0,0,10,5],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#a9c03c76d3a8e89c8928097ba0b92c2db":[2,0,0,0,10,4],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#aa1a5e21be350727cf61a101aa5c6796e":[2,0,0,0,10,1],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#aa7526e7ae7be7f63803a23fd8cf36e5d":[2,0,0,0,10,3],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#ad0953e8d888339421d909d9016bc6e2c":[2,0,0,0,10,6],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#aef0477277389e399d7128898841b71c0":[2,0,0,0,10,2],
+"classnlohmann_1_1detail_1_1json__sax__dom__parser.html#afc50fee0a92ce84afb84041ebbdfba80":[2,0,0,0,10,0],
+"classnlohmann_1_1detail_1_1lexer.html":[2,0,0,0,11],
+"classnlohmann_1_1detail_1_1lexer.html#a11528814930243028ac5b8901f4a17d7":[2,0,0,0,11,18],
+"classnlohmann_1_1detail_1_1lexer.html#a36ffc3c33c3aea18291ead7a30fa7cc6":[2,0,0,0,11,8],
+"classnlohmann_1_1detail_1_1lexer.html#a3bda093837339813916d11fb6e396606":[2,0,0,0,11,6],
+"classnlohmann_1_1detail_1_1lexer.html#a40b108a0e45a7253f6ad85fbdaa6a262":[2,0,0,0,11,20],
+"classnlohmann_1_1detail_1_1lexer.html#a40bd85d91d377ade9ccb910e35776c22":[2,0,0,0,11,19],
+"classnlohmann_1_1detail_1_1lexer.html#a526d001dd91ec55b8032ba98466765c0":[2,0,0,0,11,17],
+"classnlohmann_1_1detail_1_1lexer.html#a5ff4935dd3a007659d17efd626b93982":[2,0,0,0,11,15],
+"classnlohmann_1_1detail_1_1lexer.html#a6f2fd5b4b6b153f11fc8f77213350073":[2,0,0,0,11,25],
+"classnlohmann_1_1detail_1_1lexer.html#a76875bb49a480763f6c48b8586f7e60e":[2,0,0,0,11,12],
+"classnlohmann_1_1detail_1_1lexer.html#a7cd7d55de2cd398660bc243c7229caf9":[2,0,0,0,11,16],
+"classnlohmann_1_1detail_1_1lexer.html#a84cbcd8c897c98c2ce04d29a29bf84cc":[2,0,0,0,11,24],
+"classnlohmann_1_1detail_1_1lexer.html#a8a1bda107ce1622c0cb3174fa12155ea":[2,0,0,0,11,21],
+"classnlohmann_1_1detail_1_1lexer.html#a948c80b8bd8a3095b544e4655e1ca37e":[2,0,0,0,11,13],
+"classnlohmann_1_1detail_1_1lexer.html#a94aec416b883f742ba7f20bd16adb3c3":[2,0,0,0,11,22],
+"classnlohmann_1_1detail_1_1lexer.html#a9535d0c72adbe9fe149853ebad5faee8":[2,0,0,0,11,9],
+"classnlohmann_1_1detail_1_1lexer.html#aab51a28e32c1957329141baff8eda1c4":[2,0,0,0,11,4],
+"classnlohmann_1_1detail_1_1lexer.html#ab5811afe1c3efb0b769f7733b8373c6f":[2,0,0,0,11,7],
+"classnlohmann_1_1detail_1_1lexer.html#ab6352978e03ebcbc3cd618cd17142f26":[2,0,0,0,11,2],
+"classnlohmann_1_1detail_1_1lexer.html#abfc85ff04fcb1a5a8d8ea299a4c479e5":[2,0,0,0,11,10],
+"classnlohmann_1_1detail_1_1lexer.html#ac4eaf39567bd5f0750e5d7e913fb474d":[2,0,0,0,11,23],
+"classnlohmann_1_1detail_1_1lexer.html#ad89dec0ac0f4e851925a0499e043b18b":[2,0,0,0,11,5],
+"classnlohmann_1_1detail_1_1lexer.html#adb1a71f6a3e65ed32c452a318967b61e":[2,0,0,0,11,11],
+"classnlohmann_1_1detail_1_1lexer.html#adcf663a9878f58544790f1b6faad2e42":[2,0,0,0,11,0],
+"classnlohmann_1_1detail_1_1lexer.html#ae000b7571480e528dee4b281f63d5b15":[2,0,0,0,11,14],
+"classnlohmann_1_1detail_1_1lexer.html#af6fe701b8b3ca5f4a1b58db4658bdf87":[2,0,0,0,11,1],
+"classnlohmann_1_1detail_1_1lexer.html#afdc68706ad20be93977cd0f97043ea7f":[2,0,0,0,11,3],
+"classnlohmann_1_1detail_1_1other__error.html":[2,0,0,0,12],
+"classnlohmann_1_1detail_1_1out__of__range.html":[2,0,0,0,13],
+"classnlohmann_1_1detail_1_1output__stream__adapter.html":[2,0,0,0,15],
+"classnlohmann_1_1detail_1_1output__string__adapter.html":[2,0,0,0,16],
+"classnlohmann_1_1detail_1_1output__vector__adapter.html":[2,0,0,0,17],
+"classnlohmann_1_1detail_1_1parse__error.html":[2,0,0,0,18],
+"classnlohmann_1_1detail_1_1parse__error.html#a9505aaa1ca943be927eec7cc579592ff":[2,0,0,0,18,0],
+"classnlohmann_1_1detail_1_1parser.html":[2,0,0,0,19],
+"classnlohmann_1_1detail_1_1parser.html#a01a73810f794c239aaf123aa2af7371d":[2,0,0,0,19,6],
+"classnlohmann_1_1detail_1_1parser.html#a1212088ee1e23633a76b2ed80514de79":[2,0,0,0,19,3],
+"classnlohmann_1_1detail_1_1parser.html#a307ed42d5f31a9c5bec991ceee87b0e7":[2,0,0,0,19,5],
+"classnlohmann_1_1detail_1_1parser.html#a33b852bf63cba58310d9c0d1242cfb12":[2,0,0,0,19,0],
+"classnlohmann_1_1detail_1_1parser.html#a39784a586867c05388cb0adca0fd72b5":[2,0,0,0,19,2],
+"classnlohmann_1_1detail_1_1parser.html#a6bf70a72a1632ef55c0068557b1be37a":[2,0,0,0,19,4],
+"classnlohmann_1_1detail_1_1parser.html#a75fb9145ea85f1ad9cc14f61981e1111":[2,0,0,0,19,1],
+"classnlohmann_1_1detail_1_1parser.html#ab0dbaeaa6df00631072f902068c57750":[2,0,0,0,19,7],
+"classnlohmann_1_1detail_1_1type__error.html":[2,0,0,0,21],
+"classnlohmann_1_1json__pointer.html":[2,0,0,4],
+"classnlohmann_1_1json__pointer.html#a07a990a6838de4f38ee9d881e7b9fd61":[2,0,0,4,23],
+"classnlohmann_1_1json__pointer.html#a213bc67c32a30c68ac6bf06f5195d482":[2,0,0,4,8],
+"classnlohmann_1_1json__pointer.html#a366d68a67e40d86676d3bdb52e167294":[2,0,0,4,14],
+"classnlohmann_1_1json__pointer.html#a3d4b15d32d096e3776c5d2c773b524f5":[2,0,0,4,1],
+"classnlohmann_1_1json__pointer.html#a4667ef558c8c3f8a646bfda0c6654653":[2,0,0,4,21],
+"classnlohmann_1_1json__pointer.html#a4b1ee4d511ca195bed896a3da47e264c":[2,0,0,4,7],
+"classnlohmann_1_1json__pointer.html#a55a5bbbc3007e479607304a3e8cb9bf5":[2,0,0,4,16],
+"classnlohmann_1_1json__pointer.html#a577512ee6b7f030e8872b4d29fa5c3e5":[2,0,0,4,13],
+"classnlohmann_1_1json__pointer.html#a583c726016f440ffe65553935c101ff5":[2,0,0,4,12],
+"classnlohmann_1_1json__pointer.html#a649252bda4a2e75a0915b11a25d8bcc3":[2,0,0,4,11],
+"classnlohmann_1_1json__pointer.html#a6779edcf28e6f018a3bbb29c0b4b5e1e":[2,0,0,4,22],
+"classnlohmann_1_1json__pointer.html#a697d12b5bd6205f8866691b166b7c7dc":[2,0,0,4,9],
+"classnlohmann_1_1json__pointer.html#a7395bd0af29ac23fd3f21543c935cdfa":[2,0,0,4,3],
+"classnlohmann_1_1json__pointer.html#a7de51480324eb1c5a89ed552cd699875":[2,0,0,4,5],
+"classnlohmann_1_1json__pointer.html#a7f32d7c62841f0c4a6784cf741a6e4f8":[2,0,0,4,0],
+"classnlohmann_1_1json__pointer.html#a90a11fe6c7f37b1746a3ff9cb24b0d53":[2,0,0,4,18],
+"classnlohmann_1_1json__pointer.html#a90d38e45e2d3add52d824bc55da8f772":[2,0,0,4,17],
+"classnlohmann_1_1json__pointer.html#a926c9065dbed1bedc17857a813f7a46f":[2,0,0,4,19],
+"classnlohmann_1_1json__pointer.html#abdd21567b2b1d69329af0f520335e68b":[2,0,0,4,4],
+"classnlohmann_1_1json__pointer.html#ac228b13596d3c34185da9fe61b570194":[2,0,0,4,10],
+"classnlohmann_1_1json__pointer.html#ad6a01f8e1556eef68e5a49b33fef1548":[2,0,0,4,15],
+"classnlohmann_1_1json__pointer.html#ae9015c658f99cf3d48a8563accc79988":[2,0,0,4,2],
+"classnlohmann_1_1json__pointer.html#af5a4bc4f82113c271c9a0cd4d3b5f31c":[2,0,0,4,20],
+"classnlohmann_1_1json__pointer.html#afdaacce1edb7145e0434e014f0e8685a":[2,0,0,4,6],
+"classsound.html":[2,0,4],
+"classsound.html#a2f69382c0ac7e2aa90d8278cc5b6bd70":[2,0,4,0],
+"classsound.html#a4a82f1972ceb6a2642bb2dcc067c3d72":[2,0,4,1],
+"classsound.html#abb2c33709eb822528889e32722fc1153":[2,0,4,2],
+"classsound.html#adf45b194f1b8bcbaca3ee6eec0ecc71a":[2,0,4,3],
+"deprecated.html":[0],
+"functions.html":[2,3,0],
+"functions.html":[2,3,0,0],
+"functions_b.html":[2,3,0,1],
+"functions_c.html":[2,3,0,2],
+"functions_d.html":[2,3,0,3],
+"functions_e.html":[2,3,0,4],
+"functions_f.html":[2,3,0,5],
+"functions_func.html":[2,3,1,0],
+"functions_func.html":[2,3,1],
+"functions_func_b.html":[2,3,1,1],
+"functions_func_c.html":[2,3,1,2],
+"functions_func_d.html":[2,3,1,3],
+"functions_func_e.html":[2,3,1,4],
+"functions_func_f.html":[2,3,1,5],
+"functions_func_g.html":[2,3,1,6],
+"functions_func_h.html":[2,3,1,7],
+"functions_func_i.html":[2,3,1,8],
+"functions_func_j.html":[2,3,1,9],
+"functions_func_k.html":[2,3,1,10],
+"functions_func_l.html":[2,3,1,11],
+"functions_func_m.html":[2,3,1,12],
+"functions_func_n.html":[2,3,1,13],
+"functions_func_o.html":[2,3,1,14],
+"functions_func_p.html":[2,3,1,15],
+"functions_func_r.html":[2,3,1,16],
+"functions_func_s.html":[2,3,1,17],
+"functions_func_t.html":[2,3,1,18],
+"functions_func_u.html":[2,3,1,19],
+"functions_func_v.html":[2,3,1,20],
+"functions_func_w.html":[2,3,1,21],
+"functions_func_~.html":[2,3,1,22],
+"functions_g.html":[2,3,0,6],
+"functions_h.html":[2,3,0,7],
+"functions_i.html":[2,3,0,8],
+"functions_j.html":[2,3,0,9],
+"functions_k.html":[2,3,0,10],
+"functions_l.html":[2,3,0,11],
+"functions_m.html":[2,3,0,12],
+"functions_n.html":[2,3,0,13],
+"functions_o.html":[2,3,0,14],
+"functions_p.html":[2,3,0,15],
+"functions_r.html":[2,3,0,16],
+"functions_rela.html":[2,3,4],
+"functions_s.html":[2,3,0,17],
+"functions_t.html":[2,3,0,18],
+"functions_type.html":[2,3,3],
+"functions_u.html":[2,3,0,19],
+"functions_v.html":[2,3,0,20],
+"functions_vars.html":[2,3,2],
+"functions_w.html":[2,3,0,21],
+"functions_~.html":[2,3,0,22],
+"hierarchy.html":[2,2],
+"index.html":[],
+"namespaceRenderD7.html":[2,0,1],
+"namespaceRenderD7.html":[1,0,1],
+"namespaceRenderD7_1_1Lang.html":[1,0,1,0],
+"namespacemembers.html":[1,1,0],
+"namespacemembers_enum.html":[1,1,3],
+"namespacemembers_func.html":[1,1,1]
};
diff --git a/navtreeindex2.js b/navtreeindex2.js
index 8a7ea63..3493a87 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,74 +1,66 @@
var NAVTREEINDEX2 =
{
-"index.html":[],
-"namespaceRenderD7.html":[3,0,1],
-"namespaceRenderD7.html":[4,0,2],
-"namespaceRenderD7_1_1Lang.html":[3,0,1,0],
-"namespacemembers.html":[3,1,0],
-"namespacemembers_enum.html":[3,1,3],
-"namespacemembers_func.html":[3,1,1],
-"namespacemembers_type.html":[3,1,2],
-"namespacenlohmann.html":[3,0,0],
-"namespacenlohmann.html":[4,0,1],
-"namespacenlohmann_1_1detail.html":[4,0,1,0],
-"namespacenlohmann_1_1detail.html":[3,0,0,0],
-"namespacenlohmann_1_1detail_1_1dtoa__impl.html":[3,0,0,0,0],
-"namespaces.html":[3,0],
+"namespacemembers_type.html":[1,1,2],
+"namespacenlohmann.html":[1,0,0],
+"namespacenlohmann.html":[2,0,0],
+"namespacenlohmann_1_1detail.html":[2,0,0,0],
+"namespacenlohmann_1_1detail.html":[1,0,0,0],
+"namespacenlohmann_1_1detail_1_1dtoa__impl.html":[1,0,0,0,0],
+"namespaces.html":[1,0],
"pages.html":[],
-"structnlohmann_1_1adl__serializer.html":[4,0,1,1],
-"structnlohmann_1_1detail_1_1internal__iterator.html":[4,0,1,0,5],
-"structnlohmann_1_1detail_1_1internal__iterator.html#a2b3bb45f968210e42c282017eeeb63a8":[4,0,1,0,5,2],
-"structnlohmann_1_1detail_1_1internal__iterator.html#a8294a6e6f01b58e1cce8fbae66a50b5d":[4,0,1,0,5,1],
-"structnlohmann_1_1detail_1_1internal__iterator.html#a8cb0af3498061426c1d0a65ad6220408":[4,0,1,0,5,0],
-"structnlohmann_1_1detail_1_1output__adapter__protocol.html":[4,0,1,0,14],
-"structnlohmann_1_1detail_1_1position__t.html":[4,0,1,0,20],
-"structnlohmann_1_1detail_1_1position__t.html#a4bbad8bc2c0d17c1b61c3ce729908b71":[4,0,1,0,20,3],
-"structnlohmann_1_1detail_1_1position__t.html#a74df94563dd32102152ceb8c6d9041d8":[4,0,1,0,20,2],
-"structnlohmann_1_1detail_1_1position__t.html#a94cf85cd91d478c20ae143eba906ea1a":[4,0,1,0,20,1],
-"structnlohmann_1_1detail_1_1position__t.html#ac9ad1e0f143f162e2e0c979cd678d683":[4,0,1,0,20,0],
-"structnlohmann_1_1json__sax.html":[4,0,1,5],
-"structnlohmann_1_1json__sax.html#a0671528b0debb5a348169d61f0382a0f":[4,0,1,5,7],
-"structnlohmann_1_1json__sax.html#a07eab82f6c82d606787eee9ad73d2bda":[4,0,1,5,5],
-"structnlohmann_1_1json__sax.html#a0ad26edef3f8d530dcec3192bba82df6":[4,0,1,5,0],
-"structnlohmann_1_1json__sax.html#a235ee975617f28e6a996d1e36a282312":[4,0,1,5,11],
-"structnlohmann_1_1json__sax.html#a2e0c7ecd80b18d18a8cc76f71cfc2028":[4,0,1,5,8],
-"structnlohmann_1_1json__sax.html#a38c2dbde07138cc436ea7fbf22c1e92d":[4,0,1,5,6],
-"structnlohmann_1_1json__sax.html#a5c53878cf08d463eb4e7ca0270532572":[4,0,1,5,10],
-"structnlohmann_1_1json__sax.html#a60287e3bd85f489e04c83f7e3b76e613":[4,0,1,5,12],
-"structnlohmann_1_1json__sax.html#a82ed080814fa656191a537284bb0c575":[4,0,1,5,1],
-"structnlohmann_1_1json__sax.html#ad0c722d53ff97be700ccf6a9468bd456":[4,0,1,5,9],
-"structnlohmann_1_1json__sax.html#ad9b253083e0509923ba195136f49face":[4,0,1,5,3],
-"structnlohmann_1_1json__sax.html#ae7c31614e8a82164d2d7f8dbf4671b25":[4,0,1,5,4],
-"structnlohmann_1_1json__sax.html#affa7a78b8e9cc9cc3ac99927143142a5":[4,0,1,5,2],
-"structnlohmann_1_1ordered__map.html":[4,0,1,6],
-"structstd_1_1hash_3_01nlohmann_1_1json_01_4.html":[4,0,3,0],
-"structstd_1_1hash_3_01nlohmann_1_1json_01_4.html#aec1567d1fa47dbe5b77954dce3a55b64":[4,0,3,0,0],
-"structstd_1_1less_3_1_1nlohmann_1_1detail_1_1value__t_01_4.html":[4,0,3,1],
-"structstd_1_1less_3_1_1nlohmann_1_1detail_1_1value__t_01_4.html#a10d3fea50edf7b15ead8f4ceeb006000":[4,0,3,1,0],
-"todo.html":[0],
-"unionnlohmann_1_1basic__json_1_1json__value.html":[4,0,1,2,0],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a03d2d3f64da9403ffc2393c4b419e514":[4,0,1,2,0,9],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a10e0feb275d431d984cefd4b293d42d5":[4,0,1,2,0,20],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a11a68bfcc7bd3623023594705788f25b":[4,0,1,2,0,10],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a15baffa618c4e5bacd7daf7bba0f8e74":[4,0,1,2,0,15],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a16cf11cea854b7d33ece1204c044d91d":[4,0,1,2,0,7],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a230c40872531081809d0265a45e1a3be":[4,0,1,2,0,17],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a2807432b367e5bd4e49f76c206b5cecf":[4,0,1,2,0,14],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a356100d324dddcc0ed1bdcca086bc809":[4,0,1,2,0,3],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a359b6d7bdd95150e28a21c2def590b3b":[4,0,1,2,0,1],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a36022bc146c1c190fb77f51ab654964d":[4,0,1,2,0,21],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a5b3c9b26efff2a7e4ff417df750db888":[4,0,1,2,0,5],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a5e02afb384ff616835e7756c54385015":[4,0,1,2,0,19],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a5f3f88981a4c2a2a19aeb650e37bb117":[4,0,1,2,0,4],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a685ff0842614609b61fd634a6c958ca6":[4,0,1,2,0,23],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a7bd504626c862a55f3e464089390be61":[4,0,1,2,0,2],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a7d36046b1d3a41021459229963aa906d":[4,0,1,2,0,6],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a9a17d18e60b32adfe4f7f978d3ab5f15":[4,0,1,2,0,16],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a9a865e1935c91145c9d73aa1d925ce6b":[4,0,1,2,0,22],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a9bfee5458a35e4b1d259797bb142bb12":[4,0,1,2,0,12],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a9d5a9dd88cf61a0fa90fec56d035273d":[4,0,1,2,0,8],
-"unionnlohmann_1_1basic__json_1_1json__value.html#a9eb894164977ae59922dddc11e1d901d":[4,0,1,2,0,18],
-"unionnlohmann_1_1basic__json_1_1json__value.html#addaa9da9958343a8687079c6c8561828":[4,0,1,2,0,0],
-"unionnlohmann_1_1basic__json_1_1json__value.html#ae6cfc1f8254912522487a3596a030f8b":[4,0,1,2,0,13],
-"unionnlohmann_1_1basic__json_1_1json__value.html#ae9a619d174aa0f8020847e965db7752d":[4,0,1,2,0,11]
+"structnlohmann_1_1adl__serializer.html":[2,0,0,1],
+"structnlohmann_1_1detail_1_1internal__iterator.html":[2,0,0,0,5],
+"structnlohmann_1_1detail_1_1internal__iterator.html#a2b3bb45f968210e42c282017eeeb63a8":[2,0,0,0,5,2],
+"structnlohmann_1_1detail_1_1internal__iterator.html#a8294a6e6f01b58e1cce8fbae66a50b5d":[2,0,0,0,5,1],
+"structnlohmann_1_1detail_1_1internal__iterator.html#a8cb0af3498061426c1d0a65ad6220408":[2,0,0,0,5,0],
+"structnlohmann_1_1detail_1_1output__adapter__protocol.html":[2,0,0,0,14],
+"structnlohmann_1_1detail_1_1position__t.html":[2,0,0,0,20],
+"structnlohmann_1_1detail_1_1position__t.html#a4bbad8bc2c0d17c1b61c3ce729908b71":[2,0,0,0,20,3],
+"structnlohmann_1_1detail_1_1position__t.html#a74df94563dd32102152ceb8c6d9041d8":[2,0,0,0,20,2],
+"structnlohmann_1_1detail_1_1position__t.html#a94cf85cd91d478c20ae143eba906ea1a":[2,0,0,0,20,1],
+"structnlohmann_1_1detail_1_1position__t.html#ac9ad1e0f143f162e2e0c979cd678d683":[2,0,0,0,20,0],
+"structnlohmann_1_1json__sax.html":[2,0,0,5],
+"structnlohmann_1_1json__sax.html#a0671528b0debb5a348169d61f0382a0f":[2,0,0,5,7],
+"structnlohmann_1_1json__sax.html#a07eab82f6c82d606787eee9ad73d2bda":[2,0,0,5,5],
+"structnlohmann_1_1json__sax.html#a0ad26edef3f8d530dcec3192bba82df6":[2,0,0,5,0],
+"structnlohmann_1_1json__sax.html#a235ee975617f28e6a996d1e36a282312":[2,0,0,5,11],
+"structnlohmann_1_1json__sax.html#a2e0c7ecd80b18d18a8cc76f71cfc2028":[2,0,0,5,8],
+"structnlohmann_1_1json__sax.html#a38c2dbde07138cc436ea7fbf22c1e92d":[2,0,0,5,6],
+"structnlohmann_1_1json__sax.html#a5c53878cf08d463eb4e7ca0270532572":[2,0,0,5,10],
+"structnlohmann_1_1json__sax.html#a60287e3bd85f489e04c83f7e3b76e613":[2,0,0,5,12],
+"structnlohmann_1_1json__sax.html#a82ed080814fa656191a537284bb0c575":[2,0,0,5,1],
+"structnlohmann_1_1json__sax.html#ad0c722d53ff97be700ccf6a9468bd456":[2,0,0,5,9],
+"structnlohmann_1_1json__sax.html#ad9b253083e0509923ba195136f49face":[2,0,0,5,3],
+"structnlohmann_1_1json__sax.html#ae7c31614e8a82164d2d7f8dbf4671b25":[2,0,0,5,4],
+"structnlohmann_1_1json__sax.html#affa7a78b8e9cc9cc3ac99927143142a5":[2,0,0,5,2],
+"structnlohmann_1_1ordered__map.html":[2,0,0,6],
+"structstd_1_1hash_3_01nlohmann_1_1json_01_4.html":[2,0,2,0],
+"structstd_1_1hash_3_01nlohmann_1_1json_01_4.html#aec1567d1fa47dbe5b77954dce3a55b64":[2,0,2,0,0],
+"structstd_1_1less_3_1_1nlohmann_1_1detail_1_1value__t_01_4.html":[2,0,2,1],
+"structstd_1_1less_3_1_1nlohmann_1_1detail_1_1value__t_01_4.html#a10d3fea50edf7b15ead8f4ceeb006000":[2,0,2,1,0],
+"unionnlohmann_1_1basic__json_1_1json__value.html":[2,0,0,2,0],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a03d2d3f64da9403ffc2393c4b419e514":[2,0,0,2,0,9],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a10e0feb275d431d984cefd4b293d42d5":[2,0,0,2,0,20],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a11a68bfcc7bd3623023594705788f25b":[2,0,0,2,0,10],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a15baffa618c4e5bacd7daf7bba0f8e74":[2,0,0,2,0,15],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a16cf11cea854b7d33ece1204c044d91d":[2,0,0,2,0,7],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a230c40872531081809d0265a45e1a3be":[2,0,0,2,0,17],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a2807432b367e5bd4e49f76c206b5cecf":[2,0,0,2,0,14],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a356100d324dddcc0ed1bdcca086bc809":[2,0,0,2,0,3],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a359b6d7bdd95150e28a21c2def590b3b":[2,0,0,2,0,1],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a36022bc146c1c190fb77f51ab654964d":[2,0,0,2,0,21],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a5b3c9b26efff2a7e4ff417df750db888":[2,0,0,2,0,5],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a5e02afb384ff616835e7756c54385015":[2,0,0,2,0,19],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a5f3f88981a4c2a2a19aeb650e37bb117":[2,0,0,2,0,4],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a685ff0842614609b61fd634a6c958ca6":[2,0,0,2,0,23],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a7bd504626c862a55f3e464089390be61":[2,0,0,2,0,2],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a7d36046b1d3a41021459229963aa906d":[2,0,0,2,0,6],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a9a17d18e60b32adfe4f7f978d3ab5f15":[2,0,0,2,0,16],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a9a865e1935c91145c9d73aa1d925ce6b":[2,0,0,2,0,22],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a9bfee5458a35e4b1d259797bb142bb12":[2,0,0,2,0,12],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a9d5a9dd88cf61a0fa90fec56d035273d":[2,0,0,2,0,8],
+"unionnlohmann_1_1basic__json_1_1json__value.html#a9eb894164977ae59922dddc11e1d901d":[2,0,0,2,0,18],
+"unionnlohmann_1_1basic__json_1_1json__value.html#addaa9da9958343a8687079c6c8561828":[2,0,0,2,0,0],
+"unionnlohmann_1_1basic__json_1_1json__value.html#ae6cfc1f8254912522487a3596a030f8b":[2,0,0,2,0,13],
+"unionnlohmann_1_1basic__json_1_1json__value.html#ae9a619d174aa0f8020847e965db7752d":[2,0,0,2,0,11]
};
diff --git a/pages.html b/pages.html
index 6880da4..dd774da 100644
--- a/pages.html
+++ b/pages.html
@@ -82,9 +82,7 @@ $(document).ready(function(){initNavTree('pages.html',''); initResizable(); });
Here is a list of all related documentation pages: