Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 14 from a total of 14 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Mint | 14087810 | 1517 days ago | IN | 0 ETH | 0.00762822 | ||||
| Mint | 14080919 | 1518 days ago | IN | 0 ETH | 0.00869611 | ||||
| Mint | 14080782 | 1518 days ago | IN | 0 ETH | 0.00663293 | ||||
| Mint | 14080710 | 1518 days ago | IN | 0 ETH | 0.00946255 | ||||
| Mint | 14080703 | 1518 days ago | IN | 0 ETH | 0.00908339 | ||||
| Set Approval For... | 14080692 | 1518 days ago | IN | 0 ETH | 0.00370632 | ||||
| Set Approval For... | 14080673 | 1518 days ago | IN | 0 ETH | 0.00366915 | ||||
| Mint | 14080664 | 1518 days ago | IN | 0 ETH | 0.00805165 | ||||
| Mint | 14080661 | 1518 days ago | IN | 0 ETH | 0.00771717 | ||||
| Mint | 14080633 | 1518 days ago | IN | 0 ETH | 0.00656684 | ||||
| Mint | 14080621 | 1518 days ago | IN | 0 ETH | 0.00734209 | ||||
| Mint | 14075092 | 1519 days ago | IN | 0 ETH | 0.00952636 | ||||
| Set Base URI | 14067177 | 1520 days ago | IN | 0 ETH | 0.00821645 | ||||
| Mint | 14067023 | 1520 days ago | IN | 0 ETH | 0.00744126 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
HOH
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-01-24
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(
address indexed from,
address indexed to,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(
address indexed owner,
address indexed approved,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId)
external
view
returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator)
external
view
returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length)
internal
pure
returns (string memory)
{
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data)
internal
view
returns (bytes memory)
{
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner)
public
view
virtual
override
returns (uint256)
{
require(
owner != address(0),
"ERC721: balance query for the zero address"
);
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId)
public
view
virtual
override
returns (address)
{
address owner = _owners[tokenId];
require(
owner != address(0),
"ERC721: owner query for nonexistent token"
);
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
virtual
override
returns (address)
{
require(
_exists(tokenId),
"ERC721: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId)
internal
view
virtual
returns (bool)
{
require(
_exists(tokenId),
"ERC721: operator query for nonexistent token"
);
address owner = ERC721.ownerOf(tokenId);
return (spender == owner ||
getApproved(tokenId) == spender ||
isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(
ERC721.ownerOf(tokenId) == from,
"ERC721: transfer of token that is not own"
);
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
pragma solidity ^0.8.0;
contract HOH is ERC721, Ownable {
uint256 public constant MAX_SUPPLY = 1029;
uint256 private mintCount = 0;
uint256 public price = 0;
string baseTokenURI;
bool public saleOpen = true;
mapping(address => bool) public nftMinted;
event Minted(uint256 totalMinted);
constructor(string memory baseURI) ERC721("Heng Ong Huat Ah!", "HOH") {
setBaseURI(baseURI);
}
function totalSupply() public view returns (uint256) {
return mintCount;
}
function setBaseURI(string memory baseURI) public onlyOwner {
baseTokenURI = baseURI;
}
function setPrice(uint256 _newPrice) external onlyOwner {
price = _newPrice;
}
function toggleSale() external onlyOwner {
saleOpen = !saleOpen;
}
function withdraw() external onlyOwner {
(bool success, ) = payable(msg.sender).call{
value: address(this).balance
}("");
require(success, "Transfer failed.");
}
function mint() external payable {
uint256 supply = totalSupply();
require(supply + 1 <= MAX_SUPPLY, "Exceeds maximum supply");
if (msg.sender != owner()) {
require(saleOpen, "Sale is not open yet");
require(!nftMinted[msg.sender], "You have already minted an NFT");
require(
msg.value >= price,
"Ether sent with this transaction is not correct"
);
nftMinted[msg.sender] = true;
}
mintCount += 1;
_safeMint(msg.sender, ++supply);
emit Minted(supply);
}
function _baseURI() internal view virtual override returns (string memory) {
return baseTokenURI;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nftMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600060075560006008556001600a60006101000a81548160ff0219169083151502179055503480156200003657600080fd5b5060405162003e4238038062003e4283398181016040528101906200005c919062000405565b6040518060400160405280601181526020017f48656e67204f6e672048756174204168210000000000000000000000000000008152506040518060400160405280600381526020017f484f4800000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e0929190620002d7565b508060019080519060200190620000f9929190620002d7565b5050506200011c620001106200013460201b60201c565b6200013c60201b60201c565b6200012d816200020260201b60201c565b506200065d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002126200013460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000238620002ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000288906200047d565b60405180910390fd5b8060099080519060200190620002a9929190620002d7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e59062000545565b90600052602060002090601f01602090048101928262000309576000855562000355565b82601f106200032457805160ff191683800117855562000355565b8280016001018555821562000355579182015b828111156200035457825182559160200191906001019062000337565b5b50905062000364919062000368565b5090565b5b808211156200038357600081600090555060010162000369565b5090565b60006200039e6200039884620004c8565b6200049f565b905082815260208101848484011115620003bd57620003bc62000614565b5b620003ca8482856200050f565b509392505050565b600082601f830112620003ea57620003e96200060f565b5b8151620003fc84826020860162000387565b91505092915050565b6000602082840312156200041e576200041d6200061e565b5b600082015167ffffffffffffffff8111156200043f576200043e62000619565b5b6200044d84828501620003d2565b91505092915050565b600062000465602083620004fe565b9150620004728262000634565b602082019050919050565b60006020820190508181036000830152620004988162000456565b9050919050565b6000620004ab620004be565b9050620004b982826200057b565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e657620004e5620005e0565b5b620004f18262000623565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200052f57808201518184015260208101905062000512565b838111156200053f576000848401525b50505050565b600060028204905060018216806200055e57607f821691505b60208210811415620005755762000574620005b1565b5b50919050565b620005868262000623565b810181811067ffffffffffffffff82111715620005a857620005a7620005e0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6137d5806200066d6000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d157806399288dbb1161008a578063b88d4fde11610064578063b88d4fde14610529578063c87b56dd14610552578063e985e9c51461058f578063f2fde38b146105cc57610181565b806399288dbb146104aa578063a035b1fe146104d5578063a22cb4651461050057610181565b806370a08231146103c0578063715018a6146103fd5780637d8966e4146104145780638da5cb5b1461042b57806391b7f5ed1461045657806395d89b411461047f57610181565b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b1461031a57806342842e0e1461033157806355f804b31461035a5780636352211e1461038357610181565b806323b872dd146102895780632f6f92b3146102b257806332cb6b0c146102ef57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780631249c58b1461025457806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612588565b6105f5565b6040516101ba9190612aca565b60405180910390f35b3480156101cf57600080fd5b506101d86106d7565b6040516101e59190612ae5565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061262b565b610769565b6040516102229190612a63565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612548565b6107ee565b005b61025c610906565b005b34801561026a57600080fd5b50610273610b81565b6040516102809190612da7565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190612432565b610b8b565b005b3480156102be57600080fd5b506102d960048036038101906102d491906123c5565b610beb565b6040516102e69190612aca565b60405180910390f35b3480156102fb57600080fd5b50610304610c0b565b6040516103119190612da7565b60405180910390f35b34801561032657600080fd5b5061032f610c11565b005b34801561033d57600080fd5b5061035860048036038101906103539190612432565b610d3c565b005b34801561036657600080fd5b50610381600480360381019061037c91906125e2565b610d5c565b005b34801561038f57600080fd5b506103aa60048036038101906103a5919061262b565b610df2565b6040516103b79190612a63565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906123c5565b610ea4565b6040516103f49190612da7565b60405180910390f35b34801561040957600080fd5b50610412610f5c565b005b34801561042057600080fd5b50610429610fe4565b005b34801561043757600080fd5b5061044061108c565b60405161044d9190612a63565b60405180910390f35b34801561046257600080fd5b5061047d6004803603810190610478919061262b565b6110b6565b005b34801561048b57600080fd5b5061049461113c565b6040516104a19190612ae5565b60405180910390f35b3480156104b657600080fd5b506104bf6111ce565b6040516104cc9190612aca565b60405180910390f35b3480156104e157600080fd5b506104ea6111e1565b6040516104f79190612da7565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612508565b6111e7565b005b34801561053557600080fd5b50610550600480360381019061054b9190612485565b611368565b005b34801561055e57600080fd5b506105796004803603810190610574919061262b565b6113ca565b6040516105869190612ae5565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b191906123f2565b611471565b6040516105c39190612aca565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee91906123c5565b611505565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d057506106cf826115fd565b5b9050919050565b6060600080546106e690613008565b80601f016020809104026020016040519081016040528092919081815260200182805461071290613008565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611667565b6107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90612c87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f982610df2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612d27565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108896116d3565b73ffffffffffffffffffffffffffffffffffffffff1614806108b857506108b7816108b26116d3565b611471565b5b6108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90612c07565b60405180910390fd5b61090183836116db565b505050565b6000610910610b81565b90506104056001826109229190612e97565b1115610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90612d47565b60405180910390fd5b61096b61108c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b1757600a60009054906101000a900460ff166109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390612bc7565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090612b67565b60405180910390fd5b600854341015610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590612ca7565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600160076000828254610b2a9190612e97565b92505081905550610b473382610b3f9061306b565b925082611794565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a81604051610b769190612da7565b60405180910390a150565b6000600754905090565b610b9c610b966116d3565b826117b2565b610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290612d87565b60405180910390fd5b610be6838383611890565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61040581565b610c196116d3565b73ffffffffffffffffffffffffffffffffffffffff16610c3761108c565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490612cc7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cb390612a4e565b60006040518083038185875af1925050503d8060008114610cf0576040519150601f19603f3d011682016040523d82523d6000602084013e610cf5565b606091505b5050905080610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090612d67565b60405180910390fd5b50565b610d5783838360405180602001604052806000815250611368565b505050565b610d646116d3565b73ffffffffffffffffffffffffffffffffffffffff16610d8261108c565b73ffffffffffffffffffffffffffffffffffffffff1614610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612cc7565b60405180910390fd5b8060099080519060200190610dee9291906121d9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612c47565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612c27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f646116d3565b73ffffffffffffffffffffffffffffffffffffffff16610f8261108c565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90612cc7565b60405180910390fd5b610fe26000611aec565b565b610fec6116d3565b73ffffffffffffffffffffffffffffffffffffffff1661100a61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612cc7565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110be6116d3565b73ffffffffffffffffffffffffffffffffffffffff166110dc61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990612cc7565b60405180910390fd5b8060088190555050565b60606001805461114b90613008565b80601f016020809104026020016040519081016040528092919081815260200182805461117790613008565b80156111c45780601f10611199576101008083540402835291602001916111c4565b820191906000526020600020905b8154815290600101906020018083116111a757829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b60085481565b6111ef6116d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490612ba7565b60405180910390fd5b806005600061126a6116d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113176116d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135c9190612aca565b60405180910390a35050565b6113796113736116d3565b836117b2565b6113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612d87565b60405180910390fd5b6113c484848484611bb2565b50505050565b60606113d582611667565b611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612d07565b60405180910390fd5b600061141e611c0e565b9050600081511161143e5760405180602001604052806000815250611469565b8061144884611ca0565b604051602001611459929190612a2a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61150d6116d3565b73ffffffffffffffffffffffffffffffffffffffff1661152b61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890612cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612b27565b60405180910390fd5b6115fa81611aec565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661174e83610df2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117ae828260405180602001604052806000815250611e01565b5050565b60006117bd82611667565b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390612be7565b60405180910390fd5b600061180783610df2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061187657508373ffffffffffffffffffffffffffffffffffffffff1661185e84610769565b73ffffffffffffffffffffffffffffffffffffffff16145b8061188757506118868185611471565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118b082610df2565b73ffffffffffffffffffffffffffffffffffffffff1614611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd90612ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612b87565b60405180910390fd5b611981838383611e5c565b61198c6000826116db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119dc9190612f1e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a339190612e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bbd848484611890565b611bc984848484611e61565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90612b07565b60405180910390fd5b50505050565b606060098054611c1d90613008565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4990613008565b8015611c965780601f10611c6b57610100808354040283529160200191611c96565b820191906000526020600020905b815481529060010190602001808311611c7957829003601f168201915b5050505050905090565b60606000821415611ce8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dfc565b600082905060005b60008214611d1a578080611d039061306b565b915050600a82611d139190612eed565b9150611cf0565b60008167ffffffffffffffff811115611d3657611d356131a1565b5b6040519080825280601f01601f191660200182016040528015611d685781602001600182028036833780820191505090505b5090505b60008514611df557600182611d819190612f1e565b9150600a85611d9091906130b4565b6030611d9c9190612e97565b60f81b818381518110611db257611db1613172565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dee9190612eed565b9450611d6c565b8093505050505b919050565b611e0b8383611ff8565b611e186000848484611e61565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612b07565b60405180910390fd5b505050565b505050565b6000611e828473ffffffffffffffffffffffffffffffffffffffff166121c6565b15611feb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eab6116d3565b8786866040518563ffffffff1660e01b8152600401611ecd9493929190612a7e565b602060405180830381600087803b158015611ee757600080fd5b505af1925050508015611f1857506040513d601f19601f82011682018060405250810190611f1591906125b5565b60015b611f9b573d8060008114611f48576040519150601f19603f3d011682016040523d82523d6000602084013e611f4d565b606091505b50600081511415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90612b07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90612c67565b60405180910390fd5b61207181611667565b156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890612b47565b60405180910390fd5b6120bd60008383611e5c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210d9190612e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546121e590613008565b90600052602060002090601f016020900481019282612207576000855561224e565b82601f1061222057805160ff191683800117855561224e565b8280016001018555821561224e579182015b8281111561224d578251825591602001919060010190612232565b5b50905061225b919061225f565b5090565b5b80821115612278576000816000905550600101612260565b5090565b600061228f61228a84612de7565b612dc2565b9050828152602081018484840111156122ab576122aa6131d5565b5b6122b6848285612fc6565b509392505050565b60006122d16122cc84612e18565b612dc2565b9050828152602081018484840111156122ed576122ec6131d5565b5b6122f8848285612fc6565b509392505050565b60008135905061230f81613743565b92915050565b6000813590506123248161375a565b92915050565b60008135905061233981613771565b92915050565b60008151905061234e81613771565b92915050565b600082601f830112612369576123686131d0565b5b813561237984826020860161227c565b91505092915050565b600082601f830112612397576123966131d0565b5b81356123a78482602086016122be565b91505092915050565b6000813590506123bf81613788565b92915050565b6000602082840312156123db576123da6131df565b5b60006123e984828501612300565b91505092915050565b60008060408385031215612409576124086131df565b5b600061241785828601612300565b925050602061242885828601612300565b9150509250929050565b60008060006060848603121561244b5761244a6131df565b5b600061245986828701612300565b935050602061246a86828701612300565b925050604061247b868287016123b0565b9150509250925092565b6000806000806080858703121561249f5761249e6131df565b5b60006124ad87828801612300565b94505060206124be87828801612300565b93505060406124cf878288016123b0565b925050606085013567ffffffffffffffff8111156124f0576124ef6131da565b5b6124fc87828801612354565b91505092959194509250565b6000806040838503121561251f5761251e6131df565b5b600061252d85828601612300565b925050602061253e85828601612315565b9150509250929050565b6000806040838503121561255f5761255e6131df565b5b600061256d85828601612300565b925050602061257e858286016123b0565b9150509250929050565b60006020828403121561259e5761259d6131df565b5b60006125ac8482850161232a565b91505092915050565b6000602082840312156125cb576125ca6131df565b5b60006125d98482850161233f565b91505092915050565b6000602082840312156125f8576125f76131df565b5b600082013567ffffffffffffffff811115612616576126156131da565b5b61262284828501612382565b91505092915050565b600060208284031215612641576126406131df565b5b600061264f848285016123b0565b91505092915050565b61266181612f52565b82525050565b61267081612f64565b82525050565b600061268182612e49565b61268b8185612e5f565b935061269b818560208601612fd5565b6126a4816131e4565b840191505092915050565b60006126ba82612e54565b6126c48185612e7b565b93506126d4818560208601612fd5565b6126dd816131e4565b840191505092915050565b60006126f382612e54565b6126fd8185612e8c565b935061270d818560208601612fd5565b80840191505092915050565b6000612726603283612e7b565b9150612731826131f5565b604082019050919050565b6000612749602683612e7b565b915061275482613244565b604082019050919050565b600061276c601c83612e7b565b915061277782613293565b602082019050919050565b600061278f601e83612e7b565b915061279a826132bc565b602082019050919050565b60006127b2602483612e7b565b91506127bd826132e5565b604082019050919050565b60006127d5601983612e7b565b91506127e082613334565b602082019050919050565b60006127f8601483612e7b565b91506128038261335d565b602082019050919050565b600061281b602c83612e7b565b915061282682613386565b604082019050919050565b600061283e603883612e7b565b9150612849826133d5565b604082019050919050565b6000612861602a83612e7b565b915061286c82613424565b604082019050919050565b6000612884602983612e7b565b915061288f82613473565b604082019050919050565b60006128a7602083612e7b565b91506128b2826134c2565b602082019050919050565b60006128ca602c83612e7b565b91506128d5826134eb565b604082019050919050565b60006128ed602f83612e7b565b91506128f88261353a565b604082019050919050565b6000612910602083612e7b565b915061291b82613589565b602082019050919050565b6000612933602983612e7b565b915061293e826135b2565b604082019050919050565b6000612956602f83612e7b565b915061296182613601565b604082019050919050565b6000612979602183612e7b565b915061298482613650565b604082019050919050565b600061299c601683612e7b565b91506129a78261369f565b602082019050919050565b60006129bf600083612e70565b91506129ca826136c8565b600082019050919050565b60006129e2601083612e7b565b91506129ed826136cb565b602082019050919050565b6000612a05603183612e7b565b9150612a10826136f4565b604082019050919050565b612a2481612fbc565b82525050565b6000612a3682856126e8565b9150612a4282846126e8565b91508190509392505050565b6000612a59826129b2565b9150819050919050565b6000602082019050612a786000830184612658565b92915050565b6000608082019050612a936000830187612658565b612aa06020830186612658565b612aad6040830185612a1b565b8181036060830152612abf8184612676565b905095945050505050565b6000602082019050612adf6000830184612667565b92915050565b60006020820190508181036000830152612aff81846126af565b905092915050565b60006020820190508181036000830152612b2081612719565b9050919050565b60006020820190508181036000830152612b408161273c565b9050919050565b60006020820190508181036000830152612b608161275f565b9050919050565b60006020820190508181036000830152612b8081612782565b9050919050565b60006020820190508181036000830152612ba0816127a5565b9050919050565b60006020820190508181036000830152612bc0816127c8565b9050919050565b60006020820190508181036000830152612be0816127eb565b9050919050565b60006020820190508181036000830152612c008161280e565b9050919050565b60006020820190508181036000830152612c2081612831565b9050919050565b60006020820190508181036000830152612c4081612854565b9050919050565b60006020820190508181036000830152612c6081612877565b9050919050565b60006020820190508181036000830152612c808161289a565b9050919050565b60006020820190508181036000830152612ca0816128bd565b9050919050565b60006020820190508181036000830152612cc0816128e0565b9050919050565b60006020820190508181036000830152612ce081612903565b9050919050565b60006020820190508181036000830152612d0081612926565b9050919050565b60006020820190508181036000830152612d2081612949565b9050919050565b60006020820190508181036000830152612d408161296c565b9050919050565b60006020820190508181036000830152612d608161298f565b9050919050565b60006020820190508181036000830152612d80816129d5565b9050919050565b60006020820190508181036000830152612da0816129f8565b9050919050565b6000602082019050612dbc6000830184612a1b565b92915050565b6000612dcc612ddd565b9050612dd8828261303a565b919050565b6000604051905090565b600067ffffffffffffffff821115612e0257612e016131a1565b5b612e0b826131e4565b9050602081019050919050565b600067ffffffffffffffff821115612e3357612e326131a1565b5b612e3c826131e4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea282612fbc565b9150612ead83612fbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee257612ee16130e5565b5b828201905092915050565b6000612ef882612fbc565b9150612f0383612fbc565b925082612f1357612f12613114565b5b828204905092915050565b6000612f2982612fbc565b9150612f3483612fbc565b925082821015612f4757612f466130e5565b5b828203905092915050565b6000612f5d82612f9c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ff3578082015181840152602081019050612fd8565b83811115613002576000848401525b50505050565b6000600282049050600182168061302057607f821691505b6020821081141561303457613033613143565b5b50919050565b613043826131e4565b810181811067ffffffffffffffff82111715613062576130616131a1565b5b80604052505050565b600061307682612fbc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130a9576130a86130e5565b5b600182019050919050565b60006130bf82612fbc565b91506130ca83612fbc565b9250826130da576130d9613114565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f75206861766520616c7265616479206d696e74656420616e204e46540000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61374c81612f52565b811461375757600080fd5b50565b61376381612f64565b811461376e57600080fd5b50565b61377a81612f70565b811461378557600080fd5b50565b61379181612fbc565b811461379c57600080fd5b5056fea2646970667358221220bbe25369f6daf3c971f3cf7d372f45f14b85e38f6b97f74eb831aba8159219eb64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101815760003560e01c806370a08231116100d157806399288dbb1161008a578063b88d4fde11610064578063b88d4fde14610529578063c87b56dd14610552578063e985e9c51461058f578063f2fde38b146105cc57610181565b806399288dbb146104aa578063a035b1fe146104d5578063a22cb4651461050057610181565b806370a08231146103c0578063715018a6146103fd5780637d8966e4146104145780638da5cb5b1461042b57806391b7f5ed1461045657806395d89b411461047f57610181565b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b1461031a57806342842e0e1461033157806355f804b31461035a5780636352211e1461038357610181565b806323b872dd146102895780632f6f92b3146102b257806332cb6b0c146102ef57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780631249c58b1461025457806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612588565b6105f5565b6040516101ba9190612aca565b60405180910390f35b3480156101cf57600080fd5b506101d86106d7565b6040516101e59190612ae5565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061262b565b610769565b6040516102229190612a63565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612548565b6107ee565b005b61025c610906565b005b34801561026a57600080fd5b50610273610b81565b6040516102809190612da7565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190612432565b610b8b565b005b3480156102be57600080fd5b506102d960048036038101906102d491906123c5565b610beb565b6040516102e69190612aca565b60405180910390f35b3480156102fb57600080fd5b50610304610c0b565b6040516103119190612da7565b60405180910390f35b34801561032657600080fd5b5061032f610c11565b005b34801561033d57600080fd5b5061035860048036038101906103539190612432565b610d3c565b005b34801561036657600080fd5b50610381600480360381019061037c91906125e2565b610d5c565b005b34801561038f57600080fd5b506103aa60048036038101906103a5919061262b565b610df2565b6040516103b79190612a63565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906123c5565b610ea4565b6040516103f49190612da7565b60405180910390f35b34801561040957600080fd5b50610412610f5c565b005b34801561042057600080fd5b50610429610fe4565b005b34801561043757600080fd5b5061044061108c565b60405161044d9190612a63565b60405180910390f35b34801561046257600080fd5b5061047d6004803603810190610478919061262b565b6110b6565b005b34801561048b57600080fd5b5061049461113c565b6040516104a19190612ae5565b60405180910390f35b3480156104b657600080fd5b506104bf6111ce565b6040516104cc9190612aca565b60405180910390f35b3480156104e157600080fd5b506104ea6111e1565b6040516104f79190612da7565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612508565b6111e7565b005b34801561053557600080fd5b50610550600480360381019061054b9190612485565b611368565b005b34801561055e57600080fd5b506105796004803603810190610574919061262b565b6113ca565b6040516105869190612ae5565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b191906123f2565b611471565b6040516105c39190612aca565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee91906123c5565b611505565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d057506106cf826115fd565b5b9050919050565b6060600080546106e690613008565b80601f016020809104026020016040519081016040528092919081815260200182805461071290613008565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611667565b6107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90612c87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f982610df2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612d27565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108896116d3565b73ffffffffffffffffffffffffffffffffffffffff1614806108b857506108b7816108b26116d3565b611471565b5b6108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90612c07565b60405180910390fd5b61090183836116db565b505050565b6000610910610b81565b90506104056001826109229190612e97565b1115610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90612d47565b60405180910390fd5b61096b61108c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b1757600a60009054906101000a900460ff166109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390612bc7565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090612b67565b60405180910390fd5b600854341015610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590612ca7565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600160076000828254610b2a9190612e97565b92505081905550610b473382610b3f9061306b565b925082611794565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a81604051610b769190612da7565b60405180910390a150565b6000600754905090565b610b9c610b966116d3565b826117b2565b610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290612d87565b60405180910390fd5b610be6838383611890565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61040581565b610c196116d3565b73ffffffffffffffffffffffffffffffffffffffff16610c3761108c565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490612cc7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cb390612a4e565b60006040518083038185875af1925050503d8060008114610cf0576040519150601f19603f3d011682016040523d82523d6000602084013e610cf5565b606091505b5050905080610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090612d67565b60405180910390fd5b50565b610d5783838360405180602001604052806000815250611368565b505050565b610d646116d3565b73ffffffffffffffffffffffffffffffffffffffff16610d8261108c565b73ffffffffffffffffffffffffffffffffffffffff1614610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612cc7565b60405180910390fd5b8060099080519060200190610dee9291906121d9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612c47565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612c27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f646116d3565b73ffffffffffffffffffffffffffffffffffffffff16610f8261108c565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90612cc7565b60405180910390fd5b610fe26000611aec565b565b610fec6116d3565b73ffffffffffffffffffffffffffffffffffffffff1661100a61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612cc7565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110be6116d3565b73ffffffffffffffffffffffffffffffffffffffff166110dc61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990612cc7565b60405180910390fd5b8060088190555050565b60606001805461114b90613008565b80601f016020809104026020016040519081016040528092919081815260200182805461117790613008565b80156111c45780601f10611199576101008083540402835291602001916111c4565b820191906000526020600020905b8154815290600101906020018083116111a757829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b60085481565b6111ef6116d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490612ba7565b60405180910390fd5b806005600061126a6116d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113176116d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135c9190612aca565b60405180910390a35050565b6113796113736116d3565b836117b2565b6113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612d87565b60405180910390fd5b6113c484848484611bb2565b50505050565b60606113d582611667565b611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612d07565b60405180910390fd5b600061141e611c0e565b9050600081511161143e5760405180602001604052806000815250611469565b8061144884611ca0565b604051602001611459929190612a2a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61150d6116d3565b73ffffffffffffffffffffffffffffffffffffffff1661152b61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890612cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612b27565b60405180910390fd5b6115fa81611aec565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661174e83610df2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117ae828260405180602001604052806000815250611e01565b5050565b60006117bd82611667565b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390612be7565b60405180910390fd5b600061180783610df2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061187657508373ffffffffffffffffffffffffffffffffffffffff1661185e84610769565b73ffffffffffffffffffffffffffffffffffffffff16145b8061188757506118868185611471565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118b082610df2565b73ffffffffffffffffffffffffffffffffffffffff1614611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd90612ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612b87565b60405180910390fd5b611981838383611e5c565b61198c6000826116db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119dc9190612f1e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a339190612e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bbd848484611890565b611bc984848484611e61565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90612b07565b60405180910390fd5b50505050565b606060098054611c1d90613008565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4990613008565b8015611c965780601f10611c6b57610100808354040283529160200191611c96565b820191906000526020600020905b815481529060010190602001808311611c7957829003601f168201915b5050505050905090565b60606000821415611ce8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dfc565b600082905060005b60008214611d1a578080611d039061306b565b915050600a82611d139190612eed565b9150611cf0565b60008167ffffffffffffffff811115611d3657611d356131a1565b5b6040519080825280601f01601f191660200182016040528015611d685781602001600182028036833780820191505090505b5090505b60008514611df557600182611d819190612f1e565b9150600a85611d9091906130b4565b6030611d9c9190612e97565b60f81b818381518110611db257611db1613172565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dee9190612eed565b9450611d6c565b8093505050505b919050565b611e0b8383611ff8565b611e186000848484611e61565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612b07565b60405180910390fd5b505050565b505050565b6000611e828473ffffffffffffffffffffffffffffffffffffffff166121c6565b15611feb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eab6116d3565b8786866040518563ffffffff1660e01b8152600401611ecd9493929190612a7e565b602060405180830381600087803b158015611ee757600080fd5b505af1925050508015611f1857506040513d601f19601f82011682018060405250810190611f1591906125b5565b60015b611f9b573d8060008114611f48576040519150601f19603f3d011682016040523d82523d6000602084013e611f4d565b606091505b50600081511415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90612b07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90612c67565b60405180910390fd5b61207181611667565b156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890612b47565b60405180910390fd5b6120bd60008383611e5c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210d9190612e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546121e590613008565b90600052602060002090601f016020900481019282612207576000855561224e565b82601f1061222057805160ff191683800117855561224e565b8280016001018555821561224e579182015b8281111561224d578251825591602001919060010190612232565b5b50905061225b919061225f565b5090565b5b80821115612278576000816000905550600101612260565b5090565b600061228f61228a84612de7565b612dc2565b9050828152602081018484840111156122ab576122aa6131d5565b5b6122b6848285612fc6565b509392505050565b60006122d16122cc84612e18565b612dc2565b9050828152602081018484840111156122ed576122ec6131d5565b5b6122f8848285612fc6565b509392505050565b60008135905061230f81613743565b92915050565b6000813590506123248161375a565b92915050565b60008135905061233981613771565b92915050565b60008151905061234e81613771565b92915050565b600082601f830112612369576123686131d0565b5b813561237984826020860161227c565b91505092915050565b600082601f830112612397576123966131d0565b5b81356123a78482602086016122be565b91505092915050565b6000813590506123bf81613788565b92915050565b6000602082840312156123db576123da6131df565b5b60006123e984828501612300565b91505092915050565b60008060408385031215612409576124086131df565b5b600061241785828601612300565b925050602061242885828601612300565b9150509250929050565b60008060006060848603121561244b5761244a6131df565b5b600061245986828701612300565b935050602061246a86828701612300565b925050604061247b868287016123b0565b9150509250925092565b6000806000806080858703121561249f5761249e6131df565b5b60006124ad87828801612300565b94505060206124be87828801612300565b93505060406124cf878288016123b0565b925050606085013567ffffffffffffffff8111156124f0576124ef6131da565b5b6124fc87828801612354565b91505092959194509250565b6000806040838503121561251f5761251e6131df565b5b600061252d85828601612300565b925050602061253e85828601612315565b9150509250929050565b6000806040838503121561255f5761255e6131df565b5b600061256d85828601612300565b925050602061257e858286016123b0565b9150509250929050565b60006020828403121561259e5761259d6131df565b5b60006125ac8482850161232a565b91505092915050565b6000602082840312156125cb576125ca6131df565b5b60006125d98482850161233f565b91505092915050565b6000602082840312156125f8576125f76131df565b5b600082013567ffffffffffffffff811115612616576126156131da565b5b61262284828501612382565b91505092915050565b600060208284031215612641576126406131df565b5b600061264f848285016123b0565b91505092915050565b61266181612f52565b82525050565b61267081612f64565b82525050565b600061268182612e49565b61268b8185612e5f565b935061269b818560208601612fd5565b6126a4816131e4565b840191505092915050565b60006126ba82612e54565b6126c48185612e7b565b93506126d4818560208601612fd5565b6126dd816131e4565b840191505092915050565b60006126f382612e54565b6126fd8185612e8c565b935061270d818560208601612fd5565b80840191505092915050565b6000612726603283612e7b565b9150612731826131f5565b604082019050919050565b6000612749602683612e7b565b915061275482613244565b604082019050919050565b600061276c601c83612e7b565b915061277782613293565b602082019050919050565b600061278f601e83612e7b565b915061279a826132bc565b602082019050919050565b60006127b2602483612e7b565b91506127bd826132e5565b604082019050919050565b60006127d5601983612e7b565b91506127e082613334565b602082019050919050565b60006127f8601483612e7b565b91506128038261335d565b602082019050919050565b600061281b602c83612e7b565b915061282682613386565b604082019050919050565b600061283e603883612e7b565b9150612849826133d5565b604082019050919050565b6000612861602a83612e7b565b915061286c82613424565b604082019050919050565b6000612884602983612e7b565b915061288f82613473565b604082019050919050565b60006128a7602083612e7b565b91506128b2826134c2565b602082019050919050565b60006128ca602c83612e7b565b91506128d5826134eb565b604082019050919050565b60006128ed602f83612e7b565b91506128f88261353a565b604082019050919050565b6000612910602083612e7b565b915061291b82613589565b602082019050919050565b6000612933602983612e7b565b915061293e826135b2565b604082019050919050565b6000612956602f83612e7b565b915061296182613601565b604082019050919050565b6000612979602183612e7b565b915061298482613650565b604082019050919050565b600061299c601683612e7b565b91506129a78261369f565b602082019050919050565b60006129bf600083612e70565b91506129ca826136c8565b600082019050919050565b60006129e2601083612e7b565b91506129ed826136cb565b602082019050919050565b6000612a05603183612e7b565b9150612a10826136f4565b604082019050919050565b612a2481612fbc565b82525050565b6000612a3682856126e8565b9150612a4282846126e8565b91508190509392505050565b6000612a59826129b2565b9150819050919050565b6000602082019050612a786000830184612658565b92915050565b6000608082019050612a936000830187612658565b612aa06020830186612658565b612aad6040830185612a1b565b8181036060830152612abf8184612676565b905095945050505050565b6000602082019050612adf6000830184612667565b92915050565b60006020820190508181036000830152612aff81846126af565b905092915050565b60006020820190508181036000830152612b2081612719565b9050919050565b60006020820190508181036000830152612b408161273c565b9050919050565b60006020820190508181036000830152612b608161275f565b9050919050565b60006020820190508181036000830152612b8081612782565b9050919050565b60006020820190508181036000830152612ba0816127a5565b9050919050565b60006020820190508181036000830152612bc0816127c8565b9050919050565b60006020820190508181036000830152612be0816127eb565b9050919050565b60006020820190508181036000830152612c008161280e565b9050919050565b60006020820190508181036000830152612c2081612831565b9050919050565b60006020820190508181036000830152612c4081612854565b9050919050565b60006020820190508181036000830152612c6081612877565b9050919050565b60006020820190508181036000830152612c808161289a565b9050919050565b60006020820190508181036000830152612ca0816128bd565b9050919050565b60006020820190508181036000830152612cc0816128e0565b9050919050565b60006020820190508181036000830152612ce081612903565b9050919050565b60006020820190508181036000830152612d0081612926565b9050919050565b60006020820190508181036000830152612d2081612949565b9050919050565b60006020820190508181036000830152612d408161296c565b9050919050565b60006020820190508181036000830152612d608161298f565b9050919050565b60006020820190508181036000830152612d80816129d5565b9050919050565b60006020820190508181036000830152612da0816129f8565b9050919050565b6000602082019050612dbc6000830184612a1b565b92915050565b6000612dcc612ddd565b9050612dd8828261303a565b919050565b6000604051905090565b600067ffffffffffffffff821115612e0257612e016131a1565b5b612e0b826131e4565b9050602081019050919050565b600067ffffffffffffffff821115612e3357612e326131a1565b5b612e3c826131e4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea282612fbc565b9150612ead83612fbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee257612ee16130e5565b5b828201905092915050565b6000612ef882612fbc565b9150612f0383612fbc565b925082612f1357612f12613114565b5b828204905092915050565b6000612f2982612fbc565b9150612f3483612fbc565b925082821015612f4757612f466130e5565b5b828203905092915050565b6000612f5d82612f9c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ff3578082015181840152602081019050612fd8565b83811115613002576000848401525b50505050565b6000600282049050600182168061302057607f821691505b6020821081141561303457613033613143565b5b50919050565b613043826131e4565b810181811067ffffffffffffffff82111715613062576130616131a1565b5b80604052505050565b600061307682612fbc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130a9576130a86130e5565b5b600182019050919050565b60006130bf82612fbc565b91506130ca83612fbc565b9250826130da576130d9613114565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f75206861766520616c7265616479206d696e74656420616e204e46540000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61374c81612f52565b811461375757600080fd5b50565b61376381612f64565b811461376e57600080fd5b50565b61377a81612f70565b811461378557600080fd5b50565b61379181612fbc565b811461379c57600080fd5b5056fea2646970667358221220bbe25369f6daf3c971f3cf7d372f45f14b85e38f6b97f74eb831aba8159219eb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36559:1784:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26307:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25830:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37592:627;;;:::i;:::-;;36985:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27366:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36777:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36598;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37378:206;;;;;;;;;;;;;:::i;:::-;;27813:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37081:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24221:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23864:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8333:94;;;;;;;;;;;;;:::i;:::-;;37290:80;;;;;;;;;;;;;:::i;:::-;;7682:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37190:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24783:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36741:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36684:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26687:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28069:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24958:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27085:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8582:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23445:355;23592:4;23649:25;23634:40;;;:11;:40;;;;:105;;;;23706:33;23691:48;;;:11;:48;;;;23634:105;:158;;;;23756:36;23780:11;23756:23;:36::i;:::-;23634:158;23614:178;;23445:355;;;:::o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;26475:16;26483:7;26475;:16::i;:::-;26453:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26583:15;:24;26599:7;26583:24;;;;;;;;;;;;;;;;;;;;;26576:31;;26307:308;;;:::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;25969:11;;:2;:11;;;;25961:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26069:5;26053:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26078:37;26095:5;26102:12;:10;:12::i;:::-;26078:16;:37::i;:::-;26053:62;26031:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25900:341;25830:411;;:::o;37592:627::-;37636:14;37653:13;:11;:13::i;:::-;37636:30;;36635:4;37696:1;37687:6;:10;;;;:::i;:::-;:24;;37679:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;37769:7;:5;:7::i;:::-;37755:21;;:10;:21;;;37751:360;;37801:8;;;;;;;;;;;37793:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;37858:9;:21;37868:10;37858:21;;;;;;;;;;;;;;;;;;;;;;;;;37857:22;37849:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37968:5;;37955:9;:18;;37929:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;38095:4;38071:9;:21;38081:10;38071:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;37751:360;38136:1;38123:9;;:14;;;;;;;:::i;:::-;;;;;;;;38150:31;38160:10;38172:8;;;;:::i;:::-;;;;38150:9;:31::i;:::-;38197:14;38204:6;38197:14;;;;;;:::i;:::-;;;;;;;;37625:594;37592:627::o;36985:88::-;37029:7;37056:9;;37049:16;;36985:88;:::o;27366:376::-;27575:41;27594:12;:10;:12::i;:::-;27608:7;27575:18;:41::i;:::-;27553:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;:::-;27366:376;;;:::o;36777:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;36598:::-;36635:4;36598:41;:::o;37378:206::-;7913:12;:10;:12::i;:::-;7902:23;;:7;:5;:7::i;:::-;:23;;;7894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37429:12:::1;37455:10;37447:24;;37493:21;37447:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37428:101;;;37548:7;37540:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;37417:167;37378:206::o:0;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;:::-;27813:185;;;:::o;37081:101::-;7913:12;:10;:12::i;:::-;7902:23;;:7;:5;:7::i;:::-;:23;;;7894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37167:7:::1;37152:12;:22;;;;;;;;;;;;:::i;:::-;;37081:101:::0;:::o;24221:326::-;24338:7;24363:13;24379:7;:16;24387:7;24379:16;;;;;;;;;;;;;;;;;;;;;24363:32;;24445:1;24428:19;;:5;:19;;;;24406:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;24534:5;24527:12;;;24221:326;;;:::o;23864:295::-;23981:7;24045:1;24028:19;;:5;:19;;;;24006:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24135:9;:16;24145:5;24135:16;;;;;;;;;;;;;;;;24128:23;;23864:295;;;:::o;8333:94::-;7913:12;:10;:12::i;:::-;7902:23;;:7;:5;:7::i;:::-;:23;;;7894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;37290:80::-;7913:12;:10;:12::i;:::-;7902:23;;:7;:5;:7::i;:::-;:23;;;7894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37354:8:::1;;;;;;;;;;;37353:9;37342:8;;:20;;;;;;;;;;;;;;;;;;37290:80::o:0;7682:87::-;7728:7;7755:6;;;;;;;;;;;7748:13;;7682:87;:::o;37190:92::-;7913:12;:10;:12::i;:::-;7902:23;;:7;:5;:7::i;:::-;:23;;;7894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37265:9:::1;37257:5;:17;;;;37190:92:::0;:::o;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24783:104;:::o;36741:27::-;;;;;;;;;;;;;:::o;36684:24::-;;;;:::o;26687:327::-;26834:12;:10;:12::i;:::-;26822:24;;:8;:24;;;;26814:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26934:8;26889:18;:32;26908:12;:10;:12::i;:::-;26889:32;;;;;;;;;;;;;;;:42;26922:8;26889:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26987:8;26958:48;;26973:12;:10;:12::i;:::-;26958:48;;;26997:8;26958:48;;;;;;:::i;:::-;;;;;;;;26687:327;;:::o;28069:365::-;28258:41;28277:12;:10;:12::i;:::-;28291:7;28258:18;:41::i;:::-;28236:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;:::-;28069:365;;;;:::o;24958:468::-;25076:13;25129:16;25137:7;25129;:16::i;:::-;25107:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25298:120;25278:140;;;24958:468;;;:::o;27085:214::-;27227:4;27256:18;:25;27275:5;27256:25;;;;;;;;;;;;;;;:35;27282:8;27256:35;;;;;;;;;;;;;;;;;;;;;;;;;27249:42;;27085:214;;;;:::o;8582:229::-;7913:12;:10;:12::i;:::-;7902:23;;:7;:5;:7::i;:::-;:23;;;7894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8705:1:::1;8685:22;;:8;:22;;;;8663:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;8784:19;8794:8;8784:9;:19::i;:::-;8582:229:::0;:::o;9791:207::-;9921:4;9965:25;9950:40;;;:11;:40;;;;9943:47;;9791:207;;;:::o;29981:127::-;30046:4;30098:1;30070:30;;:7;:16;30078:7;30070:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30063:37;;29981:127;;;:::o;655:98::-;708:7;735:10;728:17;;655:98;:::o;34104:174::-;34206:2;34179:15;:24;34195:7;34179:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34262:7;34258:2;34224:46;;34233:23;34248:7;34233:14;:23::i;:::-;34224:46;;;;;;;;;;;;34104:174;;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;:::-;31069:110;;:::o;30275:452::-;30404:4;30448:16;30456:7;30448;:16::i;:::-;30426:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;30605:16;;:7;:16;;;:64;;;;30662:7;30638:31;;:20;30650:7;30638:11;:20::i;:::-;:31;;;30605:64;:113;;;;30686:32;30703:5;30710:7;30686:16;:32::i;:::-;30605:113;30597:122;;;30275:452;;;;:::o;33371:615::-;33544:4;33517:31;;:23;33532:7;33517:14;:23::i;:::-;:31;;;33495:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;33650:1;33636:16;;:2;:16;;;;33628:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33706:39;33727:4;33733:2;33737:7;33706:20;:39::i;:::-;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;33871:1;33852:9;:15;33862:4;33852:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33900:1;33883:9;:13;33893:2;33883:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33931:2;33912:7;:16;33920:7;33912:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33970:7;33966:2;33951:27;;33960:4;33951:27;;;;;;;;;;;;33371:615;;;:::o;8819:173::-;8875:16;8894:6;;;;;;;;;;;8875:25;;8920:8;8911:6;;:17;;;;;;;;;;;;;;;;;;8975:8;8944:40;;8965:8;8944:40;;;;;;;;;;;;8864:128;8819:173;:::o;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;29316:352;;;;:::o;38227:113::-;38287:13;38320:12;38313:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38227:113;:::o;10312:723::-;10368:13;10598:1;10589:5;:10;10585:53;;;10616:10;;;;;;;;;;;;;;;;;;;;;10585:53;10648:12;10663:5;10648:20;;10679:14;10704:78;10719:1;10711:4;:9;10704:78;;10737:8;;;;;:::i;:::-;;;;10768:2;10760:10;;;;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10792:39;;10842:154;10858:1;10849:5;:10;10842:154;;10886:1;10876:11;;;;;:::i;:::-;;;10953:2;10945:5;:10;;;;:::i;:::-;10932:2;:24;;;;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10982:2;10973:11;;;;;:::i;:::-;;;10842:154;;;11020:6;11006:21;;;;;10312:723;;;;:::o;31406:321::-;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31406:321;;;:::o;36399:126::-;;;;:::o;34843:984::-;34998:4;35019:15;:2;:13;;;:15::i;:::-;35015:805;;;35088:2;35072:36;;;35131:12;:10;:12::i;:::-;35166:4;35193:7;35223:5;35072:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35451:1;35434:6;:13;:18;35430:320;;;35477:108;;;;;;;;;;:::i;:::-;;;;;;;;35430:320;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;35321:45;;;35311:55;;;:6;:55;;;;35304:62;;;;;35015:805;35804:4;35797:11;;34843:984;;;;;;;:::o;32063:382::-;32157:1;32143:16;;:2;:16;;;;32135:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32216:16;32224:7;32216;:16::i;:::-;32215:17;32207:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32278:45;32307:1;32311:2;32315:7;32278:20;:45::i;:::-;32353:1;32336:9;:13;32346:2;32336:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32384:2;32365:7;:16;32373:7;32365:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32429:7;32425:2;32404:33;;32421:1;32404:33;;;;;;;;;;;;32063:382;;:::o;12865:387::-;12925:4;13133:12;13200:7;13188:20;13180:28;;13243:1;13236:4;:8;13229:15;;;12865:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14840:366;;;:::o;15212:::-;15354:3;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15451:93;15540:3;15451:93;:::i;:::-;15569:2;15564:3;15560:12;15553:19;;15212:366;;;:::o;15584:398::-;15743:3;15764:83;15845:1;15840:3;15764:83;:::i;:::-;15757:90;;15856:93;15945:3;15856:93;:::i;:::-;15974:1;15969:3;15965:11;15958:18;;15584:398;;;:::o;15988:366::-;16130:3;16151:67;16215:2;16210:3;16151:67;:::i;:::-;16144:74;;16227:93;16316:3;16227:93;:::i;:::-;16345:2;16340:3;16336:12;16329:19;;15988:366;;;:::o;16360:::-;16502:3;16523:67;16587:2;16582:3;16523:67;:::i;:::-;16516:74;;16599:93;16688:3;16599:93;:::i;:::-;16717:2;16712:3;16708:12;16701:19;;16360:366;;;:::o;16732:118::-;16819:24;16837:5;16819:24;:::i;:::-;16814:3;16807:37;16732:118;;:::o;16856:435::-;17036:3;17058:95;17149:3;17140:6;17058:95;:::i;:::-;17051:102;;17170:95;17261:3;17252:6;17170:95;:::i;:::-;17163:102;;17282:3;17275:10;;16856:435;;;;;:::o;17297:379::-;17481:3;17503:147;17646:3;17503:147;:::i;:::-;17496:154;;17667:3;17660:10;;17297:379;;;:::o;17682:222::-;17775:4;17813:2;17802:9;17798:18;17790:26;;17826:71;17894:1;17883:9;17879:17;17870:6;17826:71;:::i;:::-;17682:222;;;;:::o;17910:640::-;18105:4;18143:3;18132:9;18128:19;18120:27;;18157:71;18225:1;18214:9;18210:17;18201:6;18157:71;:::i;:::-;18238:72;18306:2;18295:9;18291:18;18282:6;18238:72;:::i;:::-;18320;18388:2;18377:9;18373:18;18364:6;18320:72;:::i;:::-;18439:9;18433:4;18429:20;18424:2;18413:9;18409:18;18402:48;18467:76;18538:4;18529:6;18467:76;:::i;:::-;18459:84;;17910:640;;;;;;;:::o;18556:210::-;18643:4;18681:2;18670:9;18666:18;18658:26;;18694:65;18756:1;18745:9;18741:17;18732:6;18694:65;:::i;:::-;18556:210;;;;:::o;18772:313::-;18885:4;18923:2;18912:9;18908:18;18900:26;;18972:9;18966:4;18962:20;18958:1;18947:9;18943:17;18936:47;19000:78;19073:4;19064:6;19000:78;:::i;:::-;18992:86;;18772:313;;;;:::o;19091:419::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19344:9;19338:4;19334:20;19330:1;19319:9;19315:17;19308:47;19372:131;19498:4;19372:131;:::i;:::-;19364:139;;19091:419;;;:::o;19516:::-;19682:4;19720:2;19709:9;19705:18;19697:26;;19769:9;19763:4;19759:20;19755:1;19744:9;19740:17;19733:47;19797:131;19923:4;19797:131;:::i;:::-;19789:139;;19516:419;;;:::o;19941:::-;20107:4;20145:2;20134:9;20130:18;20122:26;;20194:9;20188:4;20184:20;20180:1;20169:9;20165:17;20158:47;20222:131;20348:4;20222:131;:::i;:::-;20214:139;;19941:419;;;:::o;20366:::-;20532:4;20570:2;20559:9;20555:18;20547:26;;20619:9;20613:4;20609:20;20605:1;20594:9;20590:17;20583:47;20647:131;20773:4;20647:131;:::i;:::-;20639:139;;20366:419;;;:::o;20791:::-;20957:4;20995:2;20984:9;20980:18;20972:26;;21044:9;21038:4;21034:20;21030:1;21019:9;21015:17;21008:47;21072:131;21198:4;21072:131;:::i;:::-;21064:139;;20791:419;;;:::o;21216:::-;21382:4;21420:2;21409:9;21405:18;21397:26;;21469:9;21463:4;21459:20;21455:1;21444:9;21440:17;21433:47;21497:131;21623:4;21497:131;:::i;:::-;21489:139;;21216:419;;;:::o;21641:::-;21807:4;21845:2;21834:9;21830:18;21822:26;;21894:9;21888:4;21884:20;21880:1;21869:9;21865:17;21858:47;21922:131;22048:4;21922:131;:::i;:::-;21914:139;;21641:419;;;:::o;22066:::-;22232:4;22270:2;22259:9;22255:18;22247:26;;22319:9;22313:4;22309:20;22305:1;22294:9;22290:17;22283:47;22347:131;22473:4;22347:131;:::i;:::-;22339:139;;22066:419;;;:::o;22491:::-;22657:4;22695:2;22684:9;22680:18;22672:26;;22744:9;22738:4;22734:20;22730:1;22719:9;22715:17;22708:47;22772:131;22898:4;22772:131;:::i;:::-;22764:139;;22491:419;;;:::o;22916:::-;23082:4;23120:2;23109:9;23105:18;23097:26;;23169:9;23163:4;23159:20;23155:1;23144:9;23140:17;23133:47;23197:131;23323:4;23197:131;:::i;:::-;23189:139;;22916:419;;;:::o;23341:::-;23507:4;23545:2;23534:9;23530:18;23522:26;;23594:9;23588:4;23584:20;23580:1;23569:9;23565:17;23558:47;23622:131;23748:4;23622:131;:::i;:::-;23614:139;;23341:419;;;:::o;23766:::-;23932:4;23970:2;23959:9;23955:18;23947:26;;24019:9;24013:4;24009:20;24005:1;23994:9;23990:17;23983:47;24047:131;24173:4;24047:131;:::i;:::-;24039:139;;23766:419;;;:::o;24191:::-;24357:4;24395:2;24384:9;24380:18;24372:26;;24444:9;24438:4;24434:20;24430:1;24419:9;24415:17;24408:47;24472:131;24598:4;24472:131;:::i;:::-;24464:139;;24191:419;;;:::o;24616:::-;24782:4;24820:2;24809:9;24805:18;24797:26;;24869:9;24863:4;24859:20;24855:1;24844:9;24840:17;24833:47;24897:131;25023:4;24897:131;:::i;:::-;24889:139;;24616:419;;;:::o;25041:::-;25207:4;25245:2;25234:9;25230:18;25222:26;;25294:9;25288:4;25284:20;25280:1;25269:9;25265:17;25258:47;25322:131;25448:4;25322:131;:::i;:::-;25314:139;;25041:419;;;:::o;25466:::-;25632:4;25670:2;25659:9;25655:18;25647:26;;25719:9;25713:4;25709:20;25705:1;25694:9;25690:17;25683:47;25747:131;25873:4;25747:131;:::i;:::-;25739:139;;25466:419;;;:::o;25891:::-;26057:4;26095:2;26084:9;26080:18;26072:26;;26144:9;26138:4;26134:20;26130:1;26119:9;26115:17;26108:47;26172:131;26298:4;26172:131;:::i;:::-;26164:139;;25891:419;;;:::o;26316:::-;26482:4;26520:2;26509:9;26505:18;26497:26;;26569:9;26563:4;26559:20;26555:1;26544:9;26540:17;26533:47;26597:131;26723:4;26597:131;:::i;:::-;26589:139;;26316:419;;;:::o;26741:::-;26907:4;26945:2;26934:9;26930:18;26922:26;;26994:9;26988:4;26984:20;26980:1;26969:9;26965:17;26958:47;27022:131;27148:4;27022:131;:::i;:::-;27014:139;;26741:419;;;:::o;27166:::-;27332:4;27370:2;27359:9;27355:18;27347:26;;27419:9;27413:4;27409:20;27405:1;27394:9;27390:17;27383:47;27447:131;27573:4;27447:131;:::i;:::-;27439:139;;27166:419;;;:::o;27591:::-;27757:4;27795:2;27784:9;27780:18;27772:26;;27844:9;27838:4;27834:20;27830:1;27819:9;27815:17;27808:47;27872:131;27998:4;27872:131;:::i;:::-;27864:139;;27591:419;;;:::o;28016:222::-;28109:4;28147:2;28136:9;28132:18;28124:26;;28160:71;28228:1;28217:9;28213:17;28204:6;28160:71;:::i;:::-;28016:222;;;;:::o;28244:129::-;28278:6;28305:20;;:::i;:::-;28295:30;;28334:33;28362:4;28354:6;28334:33;:::i;:::-;28244:129;;;:::o;28379:75::-;28412:6;28445:2;28439:9;28429:19;;28379:75;:::o;28460:307::-;28521:4;28611:18;28603:6;28600:30;28597:56;;;28633:18;;:::i;:::-;28597:56;28671:29;28693:6;28671:29;:::i;:::-;28663:37;;28755:4;28749;28745:15;28737:23;;28460:307;;;:::o;28773:308::-;28835:4;28925:18;28917:6;28914:30;28911:56;;;28947:18;;:::i;:::-;28911:56;28985:29;29007:6;28985:29;:::i;:::-;28977:37;;29069:4;29063;29059:15;29051:23;;28773:308;;;:::o;29087:98::-;29138:6;29172:5;29166:12;29156:22;;29087:98;;;:::o;29191:99::-;29243:6;29277:5;29271:12;29261:22;;29191:99;;;:::o;29296:168::-;29379:11;29413:6;29408:3;29401:19;29453:4;29448:3;29444:14;29429:29;;29296:168;;;;:::o;29470:147::-;29571:11;29608:3;29593:18;;29470:147;;;;:::o;29623:169::-;29707:11;29741:6;29736:3;29729:19;29781:4;29776:3;29772:14;29757:29;;29623:169;;;;:::o;29798:148::-;29900:11;29937:3;29922:18;;29798:148;;;;:::o;29952:305::-;29992:3;30011:20;30029:1;30011:20;:::i;:::-;30006:25;;30045:20;30063:1;30045:20;:::i;:::-;30040:25;;30199:1;30131:66;30127:74;30124:1;30121:81;30118:107;;;30205:18;;:::i;:::-;30118:107;30249:1;30246;30242:9;30235:16;;29952:305;;;;:::o;30263:185::-;30303:1;30320:20;30338:1;30320:20;:::i;:::-;30315:25;;30354:20;30372:1;30354:20;:::i;:::-;30349:25;;30393:1;30383:35;;30398:18;;:::i;:::-;30383:35;30440:1;30437;30433:9;30428:14;;30263:185;;;;:::o;30454:191::-;30494:4;30514:20;30532:1;30514:20;:::i;:::-;30509:25;;30548:20;30566:1;30548:20;:::i;:::-;30543:25;;30587:1;30584;30581:8;30578:34;;;30592:18;;:::i;:::-;30578:34;30637:1;30634;30630:9;30622:17;;30454:191;;;;:::o;30651:96::-;30688:7;30717:24;30735:5;30717:24;:::i;:::-;30706:35;;30651:96;;;:::o;30753:90::-;30787:7;30830:5;30823:13;30816:21;30805:32;;30753:90;;;:::o;30849:149::-;30885:7;30925:66;30918:5;30914:78;30903:89;;30849:149;;;:::o;31004:126::-;31041:7;31081:42;31074:5;31070:54;31059:65;;31004:126;;;:::o;31136:77::-;31173:7;31202:5;31191:16;;31136:77;;;:::o;31219:154::-;31303:6;31298:3;31293;31280:30;31365:1;31356:6;31351:3;31347:16;31340:27;31219:154;;;:::o;31379:307::-;31447:1;31457:113;31471:6;31468:1;31465:13;31457:113;;;31556:1;31551:3;31547:11;31541:18;31537:1;31532:3;31528:11;31521:39;31493:2;31490:1;31486:10;31481:15;;31457:113;;;31588:6;31585:1;31582:13;31579:101;;;31668:1;31659:6;31654:3;31650:16;31643:27;31579:101;31428:258;31379:307;;;:::o;31692:320::-;31736:6;31773:1;31767:4;31763:12;31753:22;;31820:1;31814:4;31810:12;31841:18;31831:81;;31897:4;31889:6;31885:17;31875:27;;31831:81;31959:2;31951:6;31948:14;31928:18;31925:38;31922:84;;;31978:18;;:::i;:::-;31922:84;31743:269;31692:320;;;:::o;32018:281::-;32101:27;32123:4;32101:27;:::i;:::-;32093:6;32089:40;32231:6;32219:10;32216:22;32195:18;32183:10;32180:34;32177:62;32174:88;;;32242:18;;:::i;:::-;32174:88;32282:10;32278:2;32271:22;32061:238;32018:281;;:::o;32305:233::-;32344:3;32367:24;32385:5;32367:24;:::i;:::-;32358:33;;32413:66;32406:5;32403:77;32400:103;;;32483:18;;:::i;:::-;32400:103;32530:1;32523:5;32519:13;32512:20;;32305:233;;;:::o;32544:176::-;32576:1;32593:20;32611:1;32593:20;:::i;:::-;32588:25;;32627:20;32645:1;32627:20;:::i;:::-;32622:25;;32666:1;32656:35;;32671:18;;:::i;:::-;32656:35;32712:1;32709;32705:9;32700:14;;32544:176;;;;:::o;32726:180::-;32774:77;32771:1;32764:88;32871:4;32868:1;32861:15;32895:4;32892:1;32885:15;32912:180;32960:77;32957:1;32950:88;33057:4;33054:1;33047:15;33081:4;33078:1;33071:15;33098:180;33146:77;33143:1;33136:88;33243:4;33240:1;33233:15;33267:4;33264:1;33257:15;33284:180;33332:77;33329:1;33322:88;33429:4;33426:1;33419:15;33453:4;33450:1;33443:15;33470:180;33518:77;33515:1;33508:88;33615:4;33612:1;33605:15;33639:4;33636:1;33629:15;33656:117;33765:1;33762;33755:12;33779:117;33888:1;33885;33878:12;33902:117;34011:1;34008;34001:12;34025:117;34134:1;34131;34124:12;34148:102;34189:6;34240:2;34236:7;34231:2;34224:5;34220:14;34216:28;34206:38;;34148:102;;;:::o;34256:237::-;34396:34;34392:1;34384:6;34380:14;34373:58;34465:20;34460:2;34452:6;34448:15;34441:45;34256:237;:::o;34499:225::-;34639:34;34635:1;34627:6;34623:14;34616:58;34708:8;34703:2;34695:6;34691:15;34684:33;34499:225;:::o;34730:178::-;34870:30;34866:1;34858:6;34854:14;34847:54;34730:178;:::o;34914:180::-;35054:32;35050:1;35042:6;35038:14;35031:56;34914:180;:::o;35100:223::-;35240:34;35236:1;35228:6;35224:14;35217:58;35309:6;35304:2;35296:6;35292:15;35285:31;35100:223;:::o;35329:175::-;35469:27;35465:1;35457:6;35453:14;35446:51;35329:175;:::o;35510:170::-;35650:22;35646:1;35638:6;35634:14;35627:46;35510:170;:::o;35686:231::-;35826:34;35822:1;35814:6;35810:14;35803:58;35895:14;35890:2;35882:6;35878:15;35871:39;35686:231;:::o;35923:243::-;36063:34;36059:1;36051:6;36047:14;36040:58;36132:26;36127:2;36119:6;36115:15;36108:51;35923:243;:::o;36172:229::-;36312:34;36308:1;36300:6;36296:14;36289:58;36381:12;36376:2;36368:6;36364:15;36357:37;36172:229;:::o;36407:228::-;36547:34;36543:1;36535:6;36531:14;36524:58;36616:11;36611:2;36603:6;36599:15;36592:36;36407:228;:::o;36641:182::-;36781:34;36777:1;36769:6;36765:14;36758:58;36641:182;:::o;36829:231::-;36969:34;36965:1;36957:6;36953:14;36946:58;37038:14;37033:2;37025:6;37021:15;37014:39;36829:231;:::o;37066:234::-;37206:34;37202:1;37194:6;37190:14;37183:58;37275:17;37270:2;37262:6;37258:15;37251:42;37066:234;:::o;37306:182::-;37446:34;37442:1;37434:6;37430:14;37423:58;37306:182;:::o;37494:228::-;37634:34;37630:1;37622:6;37618:14;37611:58;37703:11;37698:2;37690:6;37686:15;37679:36;37494:228;:::o;37728:234::-;37868:34;37864:1;37856:6;37852:14;37845:58;37937:17;37932:2;37924:6;37920:15;37913:42;37728:234;:::o;37968:220::-;38108:34;38104:1;38096:6;38092:14;38085:58;38177:3;38172:2;38164:6;38160:15;38153:28;37968:220;:::o;38194:172::-;38334:24;38330:1;38322:6;38318:14;38311:48;38194:172;:::o;38372:114::-;;:::o;38492:166::-;38632:18;38628:1;38620:6;38616:14;38609:42;38492:166;:::o;38664:236::-;38804:34;38800:1;38792:6;38788:14;38781:58;38873:19;38868:2;38860:6;38856:15;38849:44;38664:236;:::o;38906:122::-;38979:24;38997:5;38979:24;:::i;:::-;38972:5;38969:35;38959:63;;39018:1;39015;39008:12;38959:63;38906:122;:::o;39034:116::-;39104:21;39119:5;39104:21;:::i;:::-;39097:5;39094:32;39084:60;;39140:1;39137;39130:12;39084:60;39034:116;:::o;39156:120::-;39228:23;39245:5;39228:23;:::i;:::-;39221:5;39218:34;39208:62;;39266:1;39263;39256:12;39208:62;39156:120;:::o;39282:122::-;39355:24;39373:5;39355:24;:::i;:::-;39348:5;39345:35;39335:63;;39394:1;39391;39384:12;39335:63;39282:122;:::o
Swarm Source
ipfs://bbe25369f6daf3c971f3cf7d372f45f14b85e38f6b97f74eb831aba8159219eb
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.