blob: 91666e20e3f3e940ef2c1342ae893d0e069d8bda [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_ACCESSIBILITY_MOJOM_AX_TREE_DATA_MOJOM_H_
#define UI_ACCESSIBILITY_MOJOM_AX_TREE_DATA_MOJOM_H_
#include <stdint.h>
#include <limits>
#include <type_traits>
#include <utility>
#include "base/callback.h"
#include "base/macros.h"
#include "base/optional.h"
#include "mojo/public/cpp/bindings/mojo_buildflags.h"
#if BUILDFLAG(MOJO_TRACE_ENABLED)
#include "base/trace_event/trace_event.h"
#endif
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "mojo/public/cpp/bindings/equals_traits.h"
#include "mojo/public/cpp/bindings/lib/serialization.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "mojo/public/cpp/bindings/union_traits.h"
#include "ui/accessibility/mojom/ax_tree_data.mojom-shared.h"
#include "ui/accessibility/mojom/ax_tree_data.mojom-forward.h"
#include "ui/accessibility/ax_enums.mojom.h"
#include "ui/accessibility/mojom/ax_tree_id.mojom.h"
#include <string>
#include <vector>
#include "mojo/public/cpp/bindings/associated_interface_ptr.h"
#include "mojo/public/cpp/bindings/associated_interface_ptr_info.h"
#include "mojo/public/cpp/bindings/associated_interface_request.h"
#include "mojo/public/cpp/bindings/interface_ptr.h"
#include "mojo/public/cpp/bindings/interface_request.h"
#include "mojo/public/cpp/bindings/lib/control_message_handler.h"
#include "mojo/public/cpp/bindings/raw_ptr_impl_ref_traits.h"
#include "mojo/public/cpp/bindings/thread_safe_interface_ptr.h"
#include "mojo/public/cpp/bindings/lib/native_enum_serialization.h"
#include "mojo/public/cpp/bindings/lib/native_struct_serialization.h"
#include "ui/accessibility/ax_tree_data.h"
#ifdef KYTHE_IS_RUNNING
#pragma kythe_inline_metadata "Metadata comment"
#endif
namespace ax {
namespace mojom {
// @generated_from: ax.mojom.AXTreeData
class AXTreeData {
public:
template <typename T>
using EnableIfSame = std::enable_if_t<std::is_same<AXTreeData, T>::value>;
using DataView = AXTreeDataDataView;
using Data_ = internal::AXTreeData_Data;
template <typename... Args>
static AXTreeDataPtr New(Args&&... args) {
return AXTreeDataPtr(
base::in_place, std::forward<Args>(args)...);
}
template <typename U>
static AXTreeDataPtr From(const U& u) {
return mojo::TypeConverter<AXTreeDataPtr, U>::Convert(u);
}
template <typename U>
U To() const {
return mojo::TypeConverter<U, AXTreeData>::Convert(*this);
}
AXTreeData();
AXTreeData(
const ui::AXTreeID& tree_id,
const ui::AXTreeID& parent_tree_id,
const ui::AXTreeID& focused_tree_id,
const std::string& doctype,
bool loaded,
float loading_progress,
const std::string& mimetype,
const std::string& title,
const std::string& url,
int32_t focus_id,
bool sel_is_backward,
int32_t sel_anchor_object_id,
int32_t sel_anchor_offset,
::ax::mojom::TextAffinity sel_anchor_affinity,
int32_t sel_focus_object_id,
int32_t sel_focus_offset,
::ax::mojom::TextAffinity sel_focus_affinity);
~AXTreeData();
// Clone() is a template so it is only instantiated if it is used. Thus, the
// bindings generator does not need to know whether Clone() or copy
// constructor/assignment are available for members.
template <typename StructPtrType = AXTreeDataPtr>
AXTreeDataPtr Clone() const;
// Equals() is a template so it is only instantiated if it is used. Thus, the
// bindings generator does not need to know whether Equals() or == operator
// are available for members.
template <typename T, AXTreeData::EnableIfSame<T>* = nullptr>
bool Equals(const T& other) const;
template <typename UserType>
static std::vector<uint8_t> Serialize(UserType* input) {
return mojo::internal::SerializeImpl<
AXTreeData::DataView, std::vector<uint8_t>>(input);
}
template <typename UserType>
static mojo::Message SerializeAsMessage(UserType* input) {
return mojo::internal::SerializeAsMessageImpl<
AXTreeData::DataView>(input);
}
// The returned Message is serialized only if the message is moved
// cross-process or cross-language. Otherwise if the message is Deserialized
// as the same UserType |input| will just be moved to |output| in
// DeserializeFromMessage.
template <typename UserType>
static mojo::Message WrapAsMessage(UserType input) {
return mojo::Message(std::make_unique<
internal::AXTreeData_UnserializedMessageContext<
UserType, AXTreeData::DataView>>(0, 0, std::move(input)));
}
template <typename UserType>
static bool Deserialize(const void* data,
size_t data_num_bytes,
UserType* output) {
return mojo::internal::DeserializeImpl<AXTreeData::DataView>(
data, data_num_bytes, std::vector<mojo::ScopedHandle>(), output, Validate);
}
template <typename UserType>
static bool Deserialize(const std::vector<uint8_t>& input,
UserType* output) {
return AXTreeData::Deserialize(
input.size() == 0 ? nullptr : &input.front(), input.size(), output);
}
template <typename UserType>
static bool DeserializeFromMessage(mojo::Message input,
UserType* output) {
auto context = input.TakeUnserializedContext<
internal::AXTreeData_UnserializedMessageContext<
UserType, AXTreeData::DataView>>();
if (context) {
*output = std::move(context->TakeData());
return true;
}
input.SerializeIfNecessary();
return mojo::internal::DeserializeImpl<AXTreeData::DataView>(
input.payload(), input.payload_num_bytes(),
std::move(*input.mutable_handles()), output, Validate);
}
// @generated_from: ax.mojom.AXTreeData.tree_id
ui::AXTreeID tree_id;
// @generated_from: ax.mojom.AXTreeData.parent_tree_id
ui::AXTreeID parent_tree_id;
// @generated_from: ax.mojom.AXTreeData.focused_tree_id
ui::AXTreeID focused_tree_id;
// @generated_from: ax.mojom.AXTreeData.doctype
std::string doctype;
// @generated_from: ax.mojom.AXTreeData.loaded
bool loaded;
// @generated_from: ax.mojom.AXTreeData.loading_progress
float loading_progress;
// @generated_from: ax.mojom.AXTreeData.mimetype
std::string mimetype;
// @generated_from: ax.mojom.AXTreeData.title
std::string title;
// @generated_from: ax.mojom.AXTreeData.url
std::string url;
// @generated_from: ax.mojom.AXTreeData.focus_id
int32_t focus_id;
// @generated_from: ax.mojom.AXTreeData.sel_is_backward
bool sel_is_backward;
// @generated_from: ax.mojom.AXTreeData.sel_anchor_object_id
int32_t sel_anchor_object_id;
// @generated_from: ax.mojom.AXTreeData.sel_anchor_offset
int32_t sel_anchor_offset;
// @generated_from: ax.mojom.AXTreeData.sel_anchor_affinity
::ax::mojom::TextAffinity sel_anchor_affinity;
// @generated_from: ax.mojom.AXTreeData.sel_focus_object_id
int32_t sel_focus_object_id;
// @generated_from: ax.mojom.AXTreeData.sel_focus_offset
int32_t sel_focus_offset;
// @generated_from: ax.mojom.AXTreeData.sel_focus_affinity
::ax::mojom::TextAffinity sel_focus_affinity;
private:
static bool Validate(const void* data,
mojo::internal::ValidationContext* validation_context);
};
// The comparison operators are templates, so they are only instantiated if they
// are used. Thus, the bindings generator does not need to know whether
// comparison operators are available for members.
template <typename T, AXTreeData::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, AXTreeData::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) {
return !(rhs < lhs);
}
template <typename T, AXTreeData::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) {
return rhs < lhs;
}
template <typename T, AXTreeData::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) {
return !(lhs < rhs);
}
template <typename StructPtrType>
AXTreeDataPtr AXTreeData::Clone() const {
return New(
mojo::Clone(tree_id),
mojo::Clone(parent_tree_id),
mojo::Clone(focused_tree_id),
mojo::Clone(doctype),
mojo::Clone(loaded),
mojo::Clone(loading_progress),
mojo::Clone(mimetype),
mojo::Clone(title),
mojo::Clone(url),
mojo::Clone(focus_id),
mojo::Clone(sel_is_backward),
mojo::Clone(sel_anchor_object_id),
mojo::Clone(sel_anchor_offset),
mojo::Clone(sel_anchor_affinity),
mojo::Clone(sel_focus_object_id),
mojo::Clone(sel_focus_offset),
mojo::Clone(sel_focus_affinity)
);
}
template <typename T, AXTreeData::EnableIfSame<T>*>
bool AXTreeData::Equals(const T& other_struct) const {
if (!mojo::Equals(this->tree_id, other_struct.tree_id))
return false;
if (!mojo::Equals(this->parent_tree_id, other_struct.parent_tree_id))
return false;
if (!mojo::Equals(this->focused_tree_id, other_struct.focused_tree_id))
return false;
if (!mojo::Equals(this->doctype, other_struct.doctype))
return false;
if (!mojo::Equals(this->loaded, other_struct.loaded))
return false;
if (!mojo::Equals(this->loading_progress, other_struct.loading_progress))
return false;
if (!mojo::Equals(this->mimetype, other_struct.mimetype))
return false;
if (!mojo::Equals(this->title, other_struct.title))
return false;
if (!mojo::Equals(this->url, other_struct.url))
return false;
if (!mojo::Equals(this->focus_id, other_struct.focus_id))
return false;
if (!mojo::Equals(this->sel_is_backward, other_struct.sel_is_backward))
return false;
if (!mojo::Equals(this->sel_anchor_object_id, other_struct.sel_anchor_object_id))
return false;
if (!mojo::Equals(this->sel_anchor_offset, other_struct.sel_anchor_offset))
return false;
if (!mojo::Equals(this->sel_anchor_affinity, other_struct.sel_anchor_affinity))
return false;
if (!mojo::Equals(this->sel_focus_object_id, other_struct.sel_focus_object_id))
return false;
if (!mojo::Equals(this->sel_focus_offset, other_struct.sel_focus_offset))
return false;
if (!mojo::Equals(this->sel_focus_affinity, other_struct.sel_focus_affinity))
return false;
return true;
}
template <typename T, AXTreeData::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) {
if (lhs.tree_id < rhs.tree_id)
return true;
if (rhs.tree_id < lhs.tree_id)
return false;
if (lhs.parent_tree_id < rhs.parent_tree_id)
return true;
if (rhs.parent_tree_id < lhs.parent_tree_id)
return false;
if (lhs.focused_tree_id < rhs.focused_tree_id)
return true;
if (rhs.focused_tree_id < lhs.focused_tree_id)
return false;
if (lhs.doctype < rhs.doctype)
return true;
if (rhs.doctype < lhs.doctype)
return false;
if (lhs.loaded < rhs.loaded)
return true;
if (rhs.loaded < lhs.loaded)
return false;
if (lhs.loading_progress < rhs.loading_progress)
return true;
if (rhs.loading_progress < lhs.loading_progress)
return false;
if (lhs.mimetype < rhs.mimetype)
return true;
if (rhs.mimetype < lhs.mimetype)
return false;
if (lhs.title < rhs.title)
return true;
if (rhs.title < lhs.title)
return false;
if (lhs.url < rhs.url)
return true;
if (rhs.url < lhs.url)
return false;
if (lhs.focus_id < rhs.focus_id)
return true;
if (rhs.focus_id < lhs.focus_id)
return false;
if (lhs.sel_is_backward < rhs.sel_is_backward)
return true;
if (rhs.sel_is_backward < lhs.sel_is_backward)
return false;
if (lhs.sel_anchor_object_id < rhs.sel_anchor_object_id)
return true;
if (rhs.sel_anchor_object_id < lhs.sel_anchor_object_id)
return false;
if (lhs.sel_anchor_offset < rhs.sel_anchor_offset)
return true;
if (rhs.sel_anchor_offset < lhs.sel_anchor_offset)
return false;
if (lhs.sel_anchor_affinity < rhs.sel_anchor_affinity)
return true;
if (rhs.sel_anchor_affinity < lhs.sel_anchor_affinity)
return false;
if (lhs.sel_focus_object_id < rhs.sel_focus_object_id)
return true;
if (rhs.sel_focus_object_id < lhs.sel_focus_object_id)
return false;
if (lhs.sel_focus_offset < rhs.sel_focus_offset)
return true;
if (rhs.sel_focus_offset < lhs.sel_focus_offset)
return false;
if (lhs.sel_focus_affinity < rhs.sel_focus_affinity)
return true;
if (rhs.sel_focus_affinity < lhs.sel_focus_affinity)
return false;
return false;
}
} // namespace mojom
} // namespace ax
namespace mojo {
template <>
struct StructTraits<::ax::mojom::AXTreeData::DataView,
::ax::mojom::AXTreeDataPtr> {
static bool IsNull(const ::ax::mojom::AXTreeDataPtr& input) { return !input; }
static void SetToNull(::ax::mojom::AXTreeDataPtr* output) { output->reset(); }
static const decltype(::ax::mojom::AXTreeData::tree_id)& tree_id(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->tree_id;
}
static const decltype(::ax::mojom::AXTreeData::parent_tree_id)& parent_tree_id(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->parent_tree_id;
}
static const decltype(::ax::mojom::AXTreeData::focused_tree_id)& focused_tree_id(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->focused_tree_id;
}
static const decltype(::ax::mojom::AXTreeData::doctype)& doctype(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->doctype;
}
static decltype(::ax::mojom::AXTreeData::loaded) loaded(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->loaded;
}
static decltype(::ax::mojom::AXTreeData::loading_progress) loading_progress(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->loading_progress;
}
static const decltype(::ax::mojom::AXTreeData::mimetype)& mimetype(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->mimetype;
}
static const decltype(::ax::mojom::AXTreeData::title)& title(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->title;
}
static const decltype(::ax::mojom::AXTreeData::url)& url(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->url;
}
static decltype(::ax::mojom::AXTreeData::focus_id) focus_id(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->focus_id;
}
static decltype(::ax::mojom::AXTreeData::sel_is_backward) sel_is_backward(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->sel_is_backward;
}
static decltype(::ax::mojom::AXTreeData::sel_anchor_object_id) sel_anchor_object_id(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->sel_anchor_object_id;
}
static decltype(::ax::mojom::AXTreeData::sel_anchor_offset) sel_anchor_offset(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->sel_anchor_offset;
}
static decltype(::ax::mojom::AXTreeData::sel_anchor_affinity) sel_anchor_affinity(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->sel_anchor_affinity;
}
static decltype(::ax::mojom::AXTreeData::sel_focus_object_id) sel_focus_object_id(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->sel_focus_object_id;
}
static decltype(::ax::mojom::AXTreeData::sel_focus_offset) sel_focus_offset(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->sel_focus_offset;
}
static decltype(::ax::mojom::AXTreeData::sel_focus_affinity) sel_focus_affinity(
const ::ax::mojom::AXTreeDataPtr& input) {
return input->sel_focus_affinity;
}
static bool Read(::ax::mojom::AXTreeData::DataView input, ::ax::mojom::AXTreeDataPtr* output);
};
} // namespace mojo
#endif // UI_ACCESSIBILITY_MOJOM_AX_TREE_DATA_MOJOM_H_
/* Metadata comment
eyJtZXRhIjogW3siZW5kIjogMjAwNSwgImJlZ2luIjogMTk5NSwgImVkZ2UiOiAiJS9reXRoZS9l
ZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjogImFuY2hvcl9kZWZpbmVzIiwgInZuYW1lIjogeyJjb3Jw
dXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jaHJvbWl1bS9zcmMiLCAibGFuZ3VhZ2Ui
OiAibW9qb20iLCAic2lnbmF0dXJlIjogImF4Lm1vam9tLkFYVHJlZURhdGEifX0sIHsiZW5kIjog
NTk4NiwgImJlZ2luIjogNTk3OSwgImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyIsICJ0
eXBlIjogImFuY2hvcl9kZWZpbmVzIiwgInZuYW1lIjogeyJjb3JwdXMiOiAiY2hyb21pdW0uZ29v
Z2xlc291cmNlLmNvbS9jaHJvbWl1bS9zcmMiLCAibGFuZ3VhZ2UiOiAibW9qb20iLCAic2lnbmF0
dXJlIjogImF4Lm1vam9tLkFYVHJlZURhdGEudHJlZV9pZCJ9fSwgeyJlbmQiOiA2MDc1LCAiYmVn
aW4iOiA2MDYxLCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIiwgInR5cGUiOiAiYW5j
aG9yX2RlZmluZXMiLCAidm5hbWUiOiB7ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29nbGVzb3VyY2Uu
Y29tL2Nocm9taXVtL3NyYyIsICJsYW5ndWFnZSI6ICJtb2pvbSIsICJzaWduYXR1cmUiOiAiYXgu
bW9qb20uQVhUcmVlRGF0YS5wYXJlbnRfdHJlZV9pZCJ9fSwgeyJlbmQiOiA2MTY2LCAiYmVnaW4i
OiA2MTUxLCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIiwgInR5cGUiOiAiYW5jaG9y
X2RlZmluZXMiLCAidm5hbWUiOiB7ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29nbGVzb3VyY2UuY29t
L2Nocm9taXVtL3NyYyIsICJsYW5ndWFnZSI6ICJtb2pvbSIsICJzaWduYXR1cmUiOiAiYXgubW9q
b20uQVhUcmVlRGF0YS5mb2N1c2VkX3RyZWVfaWQifX0sIHsiZW5kIjogNjI0MCwgImJlZ2luIjog
NjIzMywgImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjogImFuY2hvcl9k
ZWZpbmVzIiwgInZuYW1lIjogeyJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9j
aHJvbWl1bS9zcmMiLCAibGFuZ3VhZ2UiOiAibW9qb20iLCAic2lnbmF0dXJlIjogImF4Lm1vam9t
LkFYVHJlZURhdGEuZG9jdHlwZSJ9fSwgeyJlbmQiOiA2MzA1LCAiYmVnaW4iOiA2Mjk5LCAiZWRn
ZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIiwgInR5cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAi
dm5hbWUiOiB7ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29nbGVzb3VyY2UuY29tL2Nocm9taXVtL3Ny
YyIsICJsYW5ndWFnZSI6ICJtb2pvbSIsICJzaWduYXR1cmUiOiAiYXgubW9qb20uQVhUcmVlRGF0
YS5sb2FkZWQifX0sIHsiZW5kIjogNjM5MSwgImJlZ2luIjogNjM3NSwgImVkZ2UiOiAiJS9reXRo
ZS9lZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjogImFuY2hvcl9kZWZpbmVzIiwgInZuYW1lIjogeyJj
b3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jaHJvbWl1bS9zcmMiLCAibGFuZ3Vh
Z2UiOiAibW9qb20iLCAic2lnbmF0dXJlIjogImF4Lm1vam9tLkFYVHJlZURhdGEubG9hZGluZ19w
cm9ncmVzcyJ9fSwgeyJlbmQiOiA2NDY3LCAiYmVnaW4iOiA2NDU5LCAiZWRnZSI6ICIlL2t5dGhl
L2VkZ2UvZ2VuZXJhdGVzIiwgInR5cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAidm5hbWUiOiB7ImNv
cnB1cyI6ICJjaHJvbWl1bS5nb29nbGVzb3VyY2UuY29tL2Nocm9taXVtL3NyYyIsICJsYW5ndWFn
ZSI6ICJtb2pvbSIsICJzaWduYXR1cmUiOiAiYXgubW9qb20uQVhUcmVlRGF0YS5taW1ldHlwZSJ9
fSwgeyJlbmQiOiA2NTM3LCAiYmVnaW4iOiA2NTMyLCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2Vu
ZXJhdGVzIiwgInR5cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAidm5hbWUiOiB7ImNvcnB1cyI6ICJj
aHJvbWl1bS5nb29nbGVzb3VyY2UuY29tL2Nocm9taXVtL3NyYyIsICJsYW5ndWFnZSI6ICJtb2pv
bSIsICJzaWduYXR1cmUiOiAiYXgubW9qb20uQVhUcmVlRGF0YS50aXRsZSJ9fSwgeyJlbmQiOiA2
NjAzLCAiYmVnaW4iOiA2NjAwLCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIiwgInR5
cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAidm5hbWUiOiB7ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29n
bGVzb3VyY2UuY29tL2Nocm9taXVtL3NyYyIsICJsYW5ndWFnZSI6ICJtb2pvbSIsICJzaWduYXR1
cmUiOiAiYXgubW9qb20uQVhUcmVlRGF0YS51cmwifX0sIHsiZW5kIjogNjY3NSwgImJlZ2luIjog
NjY2NywgImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjogImFuY2hvcl9k
ZWZpbmVzIiwgInZuYW1lIjogeyJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9j
aHJvbWl1bS9zcmMiLCAibGFuZ3VhZ2UiOiAibW9qb20iLCAic2lnbmF0dXJlIjogImF4Lm1vam9t
LkFYVHJlZURhdGEuZm9jdXNfaWQifX0sIHsiZW5kIjogNjc1OCwgImJlZ2luIjogNjc0MywgImVk
Z2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjogImFuY2hvcl9kZWZpbmVzIiwg
InZuYW1lIjogeyJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jaHJvbWl1bS9z
cmMiLCAibGFuZ3VhZ2UiOiAibW9qb20iLCAic2lnbmF0dXJlIjogImF4Lm1vam9tLkFYVHJlZURh
dGEuc2VsX2lzX2JhY2t3YXJkIn19LCB7ImVuZCI6IDY4NTQsICJiZWdpbiI6IDY4MzQsICJlZGdl
IjogIiUva3l0aGUvZWRnZS9nZW5lcmF0ZXMiLCAidHlwZSI6ICJhbmNob3JfZGVmaW5lcyIsICJ2
bmFtZSI6IHsiY29ycHVzIjogImNocm9taXVtLmdvb2dsZXNvdXJjZS5jb20vY2hyb21pdW0vc3Jj
IiwgImxhbmd1YWdlIjogIm1vam9tIiwgInNpZ25hdHVyZSI6ICJheC5tb2pvbS5BWFRyZWVEYXRh
LnNlbF9hbmNob3Jfb2JqZWN0X2lkIn19LCB7ImVuZCI6IDY5NDQsICJiZWdpbiI6IDY5MjcsICJl
ZGdlIjogIiUva3l0aGUvZWRnZS9nZW5lcmF0ZXMiLCAidHlwZSI6ICJhbmNob3JfZGVmaW5lcyIs
ICJ2bmFtZSI6IHsiY29ycHVzIjogImNocm9taXVtLmdvb2dsZXNvdXJjZS5jb20vY2hyb21pdW0v
c3JjIiwgImxhbmd1YWdlIjogIm1vam9tIiwgInNpZ25hdHVyZSI6ICJheC5tb2pvbS5BWFRyZWVE
YXRhLnNlbF9hbmNob3Jfb2Zmc2V0In19LCB7ImVuZCI6IDcwNTYsICJiZWdpbiI6IDcwMzcsICJl
ZGdlIjogIiUva3l0aGUvZWRnZS9nZW5lcmF0ZXMiLCAidHlwZSI6ICJhbmNob3JfZGVmaW5lcyIs
ICJ2bmFtZSI6IHsiY29ycHVzIjogImNocm9taXVtLmdvb2dsZXNvdXJjZS5jb20vY2hyb21pdW0v
c3JjIiwgImxhbmd1YWdlIjogIm1vam9tIiwgInNpZ25hdHVyZSI6ICJheC5tb2pvbS5BWFRyZWVE
YXRhLnNlbF9hbmNob3JfYWZmaW5pdHkifX0sIHsiZW5kIjogNzE1MCwgImJlZ2luIjogNzEzMSwg
ImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjogImFuY2hvcl9kZWZpbmVz
IiwgInZuYW1lIjogeyJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jaHJvbWl1
bS9zcmMiLCAibGFuZ3VhZ2UiOiAibW9qb20iLCAic2lnbmF0dXJlIjogImF4Lm1vam9tLkFYVHJl
ZURhdGEuc2VsX2ZvY3VzX29iamVjdF9pZCJ9fSwgeyJlbmQiOiA3MjM4LCAiYmVnaW4iOiA3MjIy
LCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIiwgInR5cGUiOiAiYW5jaG9yX2RlZmlu
ZXMiLCAidm5hbWUiOiB7ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29nbGVzb3VyY2UuY29tL2Nocm9t
aXVtL3NyYyIsICJsYW5ndWFnZSI6ICJtb2pvbSIsICJzaWduYXR1cmUiOiAiYXgubW9qb20uQVhU
cmVlRGF0YS5zZWxfZm9jdXNfb2Zmc2V0In19LCB7ImVuZCI6IDczNDgsICJiZWdpbiI6IDczMzAs
ICJlZGdlIjogIiUva3l0aGUvZWRnZS9nZW5lcmF0ZXMiLCAidHlwZSI6ICJhbmNob3JfZGVmaW5l
cyIsICJ2bmFtZSI6IHsiY29ycHVzIjogImNocm9taXVtLmdvb2dsZXNvdXJjZS5jb20vY2hyb21p
dW0vc3JjIiwgImxhbmd1YWdlIjogIm1vam9tIiwgInNpZ25hdHVyZSI6ICJheC5tb2pvbS5BWFRy
ZWVEYXRhLnNlbF9mb2N1c19hZmZpbml0eSJ9fV0sICJ0eXBlIjogImt5dGhlMCJ9
*/