ETH Price: $3,477.89 (+2.05%)
Gas: 8 Gwei

Token

Baby Battle Bots Gen One (BBBONE)
 

Overview

Max Total Supply

3,498 BBBONE

Holders

1,366

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BBBONE
0x98de3dee5615060a1534d8f8f95776f8a6c19374
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

First generation of Baby Battle Bots — a collection of procedurally generated cute and deadly robots.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BabyBattleBotsGenOne

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-24
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-30
*/

// Baby Battle Bots Gen One
// SPDX-License-Identifier: MIT

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);
}





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;
    }
}


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}



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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}





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);
}




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;
}


pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


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);
}



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}. 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 {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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;

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


pragma solidity ^0.8.0;


contract BabyBattleBotsGenOne is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _esReserved = 300;
    uint256 private _giftReserved = 100;
    uint256 private _price = 0.035 ether;
    uint256 private MAX_SUPPLY = 3500;
    uint256 private maxPerTx = 10;
    bool public _paused = true;
    bool public _ESpaused = false;

    mapping(address => bool) public _earlySupporters;

    address t1 = 0xDC3Ae92E82b5182e469A659786Fe038206858a8C;
    address t2 = 0xF129f79c05F6EA516d01176A3983475100CA64C4;
    address t3 = 0xf5CA775911EA3F3Fe75d8Ec3756a08AfFbf4dEB6;
    address t4 = 0x67D1D8c8c440f47F00b3CBf14dEbbF9CBEd00eeF;

    constructor() ERC721("Baby Battle Bots Gen One", "BBBONE") {
        _safeMint(t2, 0);
        _safeMint(t3, 1);
        _safeMint(t4, 2);
    }

    function mintBot(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num <= maxPerTx,                              "Exceeds maximum amount of Bots per tx" );
        require( supply + num <= MAX_SUPPLY - _giftReserved - _esReserved,      "Exceeds maximum Bots supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function mintESBot() public payable {
        uint256 supply = totalSupply();
        uint256 balance = balanceOf(msg.sender);

        require( !_ESpaused,                              "Early Supporters sale paused" );
        require( supply + 1 <= _esReserved,      "Exceeds maximum Bots early mint reserved supply" );
        require( balance == 0,      "You already have some Bots" );
        require( _earlySupporters[msg.sender],      "Sorry you are not on the Early Supporters list" );
        require( msg.value >= _price,             "Ether sent is not correct" );

        _safeMint( msg.sender, supply);
    }

    function addES(address _es) public onlyOwner() {
        _earlySupporters[_es] = true;
    }

    function removeES(address _es) public onlyOwner() {
        _earlySupporters[_es] = false;
    }

    function addESMany(address[] memory _ess) public onlyOwner() {
        require(totalSupply() + _ess.length <= _esReserved, 'Would exceed ES reserved supply');

        for(uint256 i = 0; i < _ess.length; i++) {
            addES(_ess[i]);
        }
    }

    function removeESMany(address[] memory _ess) public onlyOwner() {
        for(uint256 i = 0; i < _ess.length; i++) {
            removeES(_ess[i]);
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

    function setMaxPerTx(uint256 _newMaxPerTx) public onlyOwner() {
        maxPerTx = _newMaxPerTx;
    }

    function setESReserved(uint256 _newReserved) public onlyOwner() {
        _esReserved = _newReserved;
    }

    function setGiftReserved(uint256 _newReserved) public onlyOwner() {
        _giftReserved = _newReserved;
    }

    function setMaxSupply(uint256 _newMax) public onlyOwner() {
        MAX_SUPPLY = _newMax;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _giftReserved, "Exceeds reserved gift Bots supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _giftReserved -= _amount;
    }

    function giveAwayMany(address[] memory addresses) external onlyOwner() {
        require( addresses.length <= _giftReserved, "Exceeds reserved gift Bots supply" );

        for (uint i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], totalSupply() + 1);
        }

        _giftReserved -= addresses.length;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function ESpause(bool val) public onlyOwner {
        _ESpaused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _balance = address(this).balance;
        uint256 w1 = _balance * 37 / 1000;
        uint256 w2 = _balance - w1;

        require(payable(t1).send(w1));
        require(payable(t2).send(w2));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"ESpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_ESpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_earlySupporters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_es","type":"address"}],"name":"addES","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_ess","type":"address[]"}],"name":"addESMany","outputs":[],"stateMutability":"nonpayable","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"giveAwayMany","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintBot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintESBot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_es","type":"address"}],"name":"removeES","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_ess","type":"address[]"}],"name":"removeESMany","outputs":[],"stateMutability":"nonpayable","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":[{"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":"_newReserved","type":"uint256"}],"name":"setESReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReserved","type":"uint256"}],"name":"setGiftReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxSupply","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405261012c600c556064600d55667c585087238000600e55610dac600f55600a6010556011805461ffff19166001179055601380546001600160a01b031990811673dc3ae92e82b5182e469a659786fe038206858a8c1790915560148054821673f129f79c05f6ea516d01176a3983475100ca64c417905560158054821673f5ca775911ea3f3fe75d8ec3756a08affbf4deb6179055601680549091167367d1d8c8c440f47f00b3cbf14debbf9cbed00eef179055348015620000c457600080fd5b50604080518082018252601881527f4261627920426174746c6520426f74732047656e204f6e6500000000000000006020808301918252835180850190945260068452654242424f4e4560d01b90840152815191929162000128916000916200089e565b5080516200013e9060019060208401906200089e565b505050600062000153620001f260201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601454620001ba906001600160a01b03166000620001f6565b601554620001d3906001600160a01b03166001620001f6565b601654620001ec906001600160a01b03166002620001f6565b62000a76565b3390565b620002188282604051806020016040528060008152506200021c60201b60201c565b5050565b62000228838362000298565b620002376000848484620003ee565b620002935760405162461bcd60e51b81526020600482015260326024820152600080516020620035c783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620002f05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200028a565b6000818152600260205260409020546001600160a01b031615620003575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200028a565b620003656000838362000557565b6001600160a01b038216600090815260036020526040812080546001929062000390908490620009ee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200040f846001600160a01b03166200063360201b620019d51760201c565b156200054b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200044990339089908890889060040162000975565b602060405180830381600087803b1580156200046457600080fd5b505af192505050801562000497575060408051601f3d908101601f19168201909252620004949181019062000944565b60015b62000530573d808015620004c8576040519150601f19603f3d011682016040523d82523d6000602084013e620004cd565b606091505b508051620005285760405162461bcd60e51b81526020600482015260326024820152600080516020620035c783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200028a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200054f565b5060015b949350505050565b6200056f8383836200029360201b62000aee1760201c565b6001600160a01b038316620005cd57620005c781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620005f3565b816001600160a01b0316836001600160a01b031614620005f357620005f3838262000639565b6001600160a01b0382166200060d576200029381620006e6565b826001600160a01b0316826001600160a01b0316146200029357620002938282620007c4565b3b151590565b6000600162000653846200081560201b62000e5f1760201c565b6200065f919062000a09565b600083815260076020526040902054909150808214620006b3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006fa9060019062000a09565b600083815260096020526040812054600880549394509092849081106200073157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106200076157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620007a857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000620007dc836200081560201b62000e5f1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200028a565b506001600160a01b031660009081526003602052604090205490565b828054620008ac9062000a23565b90600052602060002090601f016020900481019282620008d057600085556200091b565b82601f10620008eb57805160ff19168380011785556200091b565b828001600101855582156200091b579182015b828111156200091b578251825591602001919060010190620008fe565b50620009299291506200092d565b5090565b5b808211156200092957600081556001016200092e565b60006020828403121562000956578081fd5b81516001600160e01b0319811681146200096e578182fd5b9392505050565b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b82811015620009c35785810182015185820160a001528101620009a5565b82811115620009d5578360a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000a045762000a0462000a60565b500190565b60008282101562000a1e5762000a1e62000a60565b500390565b600181811c9082168062000a3857607f821691505b6020821081141562000a5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612b418062000a866000396000f3fe6080604052600436106102465760003560e01c806379b6d4a011610139578063c87b56dd116100b6578063e21a39791161007a578063e21a3979146106a9578063e36fbd24146106c9578063e4cfeac5146106d1578063e985e9c5146106f1578063ed8403bf1461073a578063f2fde38b1461075a57600080fd5b8063c87b56dd146105f9578063ca80014414610619578063cccbc7e514610639578063cfc4e10a14610669578063df8e201d1461068957600080fd5b806395d89b41116100fd57806395d89b411461056f57806398d5fdca14610584578063a22cb46514610599578063b88d4fde146105b9578063c6f6f216146105d957600080fd5b806379b6d4a0146104f6578063853828b6146105095780638d846a95146105115780638da5cb5b1461053157806391b7f5ed1461054f57600080fd5b80632f745c59116101c757806355f804b31161018b57806355f804b3146104615780636352211e146104815780636f8b44b0146104a157806370a08231146104c1578063715018a6146104e157600080fd5b80632f745c59146103b45780633b45fbe5146103d457806342842e0e146103f4578063438b6300146104145780634f6ccce71461044157600080fd5b8063081812fc1161020e578063081812fc14610303578063095ea7b31461033b57806316c61ccc1461035b57806318160ddd1461037557806323b872dd1461039457600080fd5b806301ffc9a71461024b57806302329a29146102805780630285b97c146102a257806306c40cd6146102c157806306fdde03146102e1575b600080fd5b34801561025757600080fd5b5061026b6102663660046126e9565b61077a565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b3660046126cf565b6107a5565b005b3480156102ae57600080fd5b5060115461026b90610100900460ff1681565b3480156102cd57600080fd5b506102a06102dc366004612620565b6107eb565b3480156102ed57600080fd5b506102f66108b6565b604051610277919061285b565b34801561030f57600080fd5b5061032361031e366004612767565b610948565b6040516001600160a01b039091168152602001610277565b34801561034757600080fd5b506102a06103563660046125f7565b6109dd565b34801561036757600080fd5b5060115461026b9060ff1681565b34801561038157600080fd5b506008545b604051908152602001610277565b3480156103a057600080fd5b506102a06103af36600461251a565b610af3565b3480156103c057600080fd5b506103866103cf3660046125f7565b610b24565b3480156103e057600080fd5b506102a06103ef3660046126cf565b610bba565b34801561040057600080fd5b506102a061040f36600461251a565b610bfe565b34801561042057600080fd5b5061043461042f3660046124ce565b610c19565b6040516102779190612817565b34801561044d57600080fd5b5061038661045c366004612767565b610cd7565b34801561046d57600080fd5b506102a061047c366004612721565b610d78565b34801561048d57600080fd5b5061032361049c366004612767565b610db9565b3480156104ad57600080fd5b506102a06104bc366004612767565b610e30565b3480156104cd57600080fd5b506103866104dc3660046124ce565b610e5f565b3480156104ed57600080fd5b506102a0610ee6565b6102a0610504366004612767565b610f5a565b6102a0611102565b34801561051d57600080fd5b506102a061052c366004612620565b6111ba565b34801561053d57600080fd5b50600a546001600160a01b0316610323565b34801561055b57600080fd5b506102a061056a366004612767565b611292565b34801561057b57600080fd5b506102f66112c1565b34801561059057600080fd5b50600e54610386565b3480156105a557600080fd5b506102a06105b43660046125ce565b6112d0565b3480156105c557600080fd5b506102a06105d4366004612555565b611395565b3480156105e557600080fd5b506102a06105f4366004612767565b6113cd565b34801561060557600080fd5b506102f6610614366004612767565b6113fc565b34801561062557600080fd5b506102a06106343660046125f7565b6114d7565b34801561064557600080fd5b5061026b6106543660046124ce565b60126020526000908152604090205460ff1681565b34801561067557600080fd5b506102a0610684366004612767565b611578565b34801561069557600080fd5b506102a06106a4366004612767565b6115a7565b3480156106b557600080fd5b506102a06106c43660046124ce565b6115d6565b6102a0611624565b3480156106dd57600080fd5b506102a06106ec3660046124ce565b611827565b3480156106fd57600080fd5b5061026b61070c3660046124e8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b506102a0610755366004612620565b611872565b34801561076657600080fd5b506102a06107753660046124ce565b6118ea565b60006001600160e01b0319821663780e9d6360e01b148061079f575061079f826119db565b92915050565b600a546001600160a01b031633146107d85760405162461bcd60e51b81526004016107cf90612901565b60405180910390fd5b6011805460ff1916911515919091179055565b600a546001600160a01b031633146108155760405162461bcd60e51b81526004016107cf90612901565b600d54815111156108385760405162461bcd60e51b81526004016107cf906128c0565b60005b815181101561089a5761088882828151811061086757634e487b7160e01b600052603260045260246000fd5b602002602001015161087860085490565b6108839060016129b8565b611a2b565b8061089281612a81565b91505061083b565b508051600d60008282546108ae9190612a03565b909155505050565b6060600080546108c590612a46565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190612a46565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cf565b506000908152600460205260409020546001600160a01b031690565b60006109e882610db9565b9050806001600160a01b0316836001600160a01b03161415610a565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cf565b336001600160a01b0382161480610a725750610a72813361070c565b610ae45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107cf565b610aee8383611a45565b505050565b610afd3382611ab3565b610b195760405162461bcd60e51b81526004016107cf90612936565b610aee838383611baa565b6000610b2f83610e5f565b8210610b915760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107cf565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610be45760405162461bcd60e51b81526004016107cf90612901565b601180549115156101000261ff0019909216919091179055565b610aee83838360405180602001604052806000815250611395565b60606000610c2683610e5f565b905060008167ffffffffffffffff811115610c5157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c7a578160200160208202803683370190505b50905060005b82811015610ccf57610c928582610b24565b828281518110610cb257634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cc781612a81565b915050610c80565b509392505050565b6000610ce260085490565b8210610d455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107cf565b60088281548110610d6657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610da25760405162461bcd60e51b81526004016107cf90612901565b8051610db590600b9060208401906123b1565b5050565b6000818152600260205260408120546001600160a01b03168061079f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cf565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b81526004016107cf90612901565b600f55565b60006001600160a01b038216610eca5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cf565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f105760405162461bcd60e51b81526004016107cf90612901565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000610f6560085490565b60115490915060ff1615610fa95760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016107cf565b6010548211156110095760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d6178696d756d20616d6f756e74206f6620426f747320706044820152640cae440e8f60db1b60648201526084016107cf565b600c54600d54600f5461101c9190612a03565b6110269190612a03565b61103083836129b8565b111561107e5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d20426f747320737570706c79000000000060448201526064016107cf565b81600e5461108c91906129e4565b3410156110d75760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107cf565b60005b82811015610aee576110f03361088383856129b8565b806110fa81612a81565b9150506110da565b600a546001600160a01b0316331461112c5760405162461bcd60e51b81526004016107cf90612901565b4760006103e861113d8360256129e4565b61114791906129d0565b905060006111558284612a03565b6013546040519192506001600160a01b03169083156108fc029084906000818181858888f1935050505061118857600080fd5b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610aee57600080fd5b600a546001600160a01b031633146111e45760405162461bcd60e51b81526004016107cf90612901565b600c5481516008546111f691906129b8565b11156112445760405162461bcd60e51b815260206004820152601f60248201527f576f756c642065786365656420455320726573657276656420737570706c790060448201526064016107cf565b60005b8151811015610db55761128082828151811061127357634e487b7160e01b600052603260045260246000fd5b60200260200101516115d6565b8061128a81612a81565b915050611247565b600a546001600160a01b031633146112bc5760405162461bcd60e51b81526004016107cf90612901565b600e55565b6060600180546108c590612a46565b6001600160a01b0382163314156113295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107cf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61139f3383611ab3565b6113bb5760405162461bcd60e51b81526004016107cf90612936565b6113c784848484611d55565b50505050565b600a546001600160a01b031633146113f75760405162461bcd60e51b81526004016107cf90612901565b601055565b6000818152600260205260409020546060906001600160a01b031661147b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cf565b6000611485611d88565b905060008151116114a557604051806020016040528060008152506114d0565b806114af84611d97565b6040516020016114c09291906127ab565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115015760405162461bcd60e51b81526004016107cf90612901565b600d548111156115235760405162461bcd60e51b81526004016107cf906128c0565b600061152e60085490565b905060005b8281101561155b576115498461088383856129b8565b8061155381612a81565b915050611533565b5081600d600082825461156e9190612a03565b9091555050505050565b600a546001600160a01b031633146115a25760405162461bcd60e51b81526004016107cf90612901565b600c55565b600a546001600160a01b031633146115d15760405162461bcd60e51b81526004016107cf90612901565b600d55565b600a546001600160a01b031633146116005760405162461bcd60e51b81526004016107cf90612901565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b600061162f60085490565b9050600061163c33610e5f565b601154909150610100900460ff16156116975760405162461bcd60e51b815260206004820152601c60248201527f4561726c7920537570706f72746572732073616c65207061757365640000000060448201526064016107cf565b600c546116a58360016129b8565b111561170b5760405162461bcd60e51b815260206004820152602f60248201527f45786365656473206d6178696d756d20426f7473206561726c79206d696e742060448201526e726573657276656420737570706c7960881b60648201526084016107cf565b80156117595760405162461bcd60e51b815260206004820152601a60248201527f596f7520616c7265616479206861766520736f6d6520426f747300000000000060448201526064016107cf565b3360009081526012602052604090205460ff166117cf5760405162461bcd60e51b815260206004820152602e60248201527f536f72727920796f7520617265206e6f74206f6e20746865204561726c79205360448201526d1d5c1c1bdc9d195c9cc81b1a5cdd60921b60648201526084016107cf565b600e5434101561181d5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107cf565b610db53383611a2b565b600a546001600160a01b031633146118515760405162461bcd60e51b81526004016107cf90612901565b6001600160a01b03166000908152601260205260409020805460ff19169055565b600a546001600160a01b0316331461189c5760405162461bcd60e51b81526004016107cf90612901565b60005b8151811015610db5576118d88282815181106118cb57634e487b7160e01b600052603260045260246000fd5b6020026020010151611827565b806118e281612a81565b91505061189f565b600a546001600160a01b031633146119145760405162461bcd60e51b81526004016107cf90612901565b6001600160a01b0381166119795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cf565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611a0c57506001600160e01b03198216635b5e139f60e01b145b8061079f57506301ffc9a760e01b6001600160e01b031983161461079f565b610db5828260405180602001604052806000815250611eb1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7a82610db9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cf565b6000611b3783610db9565b9050806001600160a01b0316846001600160a01b03161480611b725750836001600160a01b0316611b6784610948565b6001600160a01b0316145b80611ba257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bbd82610db9565b6001600160a01b031614611c255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107cf565b6001600160a01b038216611c875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cf565b611c92838383611ee4565b611c9d600082611a45565b6001600160a01b0383166000908152600360205260408120805460019290611cc6908490612a03565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cf49084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611d60848484611baa565b611d6c84848484611f9c565b6113c75760405162461bcd60e51b81526004016107cf9061286e565b6060600b80546108c590612a46565b606081611dbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611de55780611dcf81612a81565b9150611dde9050600a836129d0565b9150611dbf565b60008167ffffffffffffffff811115611e0e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e38576020820181803683370190505b5090505b8415611ba257611e4d600183612a03565b9150611e5a600a86612a9c565b611e659060306129b8565b60f81b818381518110611e8857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611eaa600a866129d0565b9450611e3c565b611ebb83836120a9565b611ec86000848484611f9c565b610aee5760405162461bcd60e51b81526004016107cf9061286e565b6001600160a01b038316611f3f57611f3a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f62565b816001600160a01b0316836001600160a01b031614611f6257611f6283826121f7565b6001600160a01b038216611f7957610aee81612294565b826001600160a01b0316826001600160a01b031614610aee57610aee828261236d565b60006001600160a01b0384163b1561209e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fe09033908990889088906004016127da565b602060405180830381600087803b158015611ffa57600080fd5b505af192505050801561202a575060408051601f3d908101601f1916820190925261202791810190612705565b60015b612084573d808015612058576040519150601f19603f3d011682016040523d82523d6000602084013e61205d565b606091505b50805161207c5760405162461bcd60e51b81526004016107cf9061286e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba2565b506001949350505050565b6001600160a01b0382166120ff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cf565b6000818152600260205260409020546001600160a01b0316156121645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107cf565b61217060008383611ee4565b6001600160a01b03821660009081526003602052604081208054600192906121999084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161220484610e5f565b61220e9190612a03565b600083815260076020526040902054909150808214612261576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122a690600190612a03565b600083815260096020526040812054600880549394509092849081106122dc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061230b57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061237883610e5f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123bd90612a46565b90600052602060002090601f0160209004810192826123df5760008555612425565b82601f106123f857805160ff1916838001178555612425565b82800160010185558215612425579182015b8281111561242557825182559160200191906001019061240a565b50612431929150612435565b5090565b5b808211156124315760008155600101612436565b600067ffffffffffffffff83111561246457612464612adc565b612477601f8401601f1916602001612987565b905082815283838301111561248b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124b957600080fd5b919050565b803580151581146124b957600080fd5b6000602082840312156124df578081fd5b6114d0826124a2565b600080604083850312156124fa578081fd5b612503836124a2565b9150612511602084016124a2565b90509250929050565b60008060006060848603121561252e578081fd5b612537846124a2565b9250612545602085016124a2565b9150604084013590509250925092565b6000806000806080858703121561256a578081fd5b612573856124a2565b9350612581602086016124a2565b925060408501359150606085013567ffffffffffffffff8111156125a3578182fd5b8501601f810187136125b3578182fd5b6125c28782356020840161244a565b91505092959194509250565b600080604083850312156125e0578182fd5b6125e9836124a2565b9150612511602084016124be565b60008060408385031215612609578182fd5b612612836124a2565b946020939093013593505050565b60006020808385031215612632578182fd5b823567ffffffffffffffff80821115612649578384fd5b818501915085601f83011261265c578384fd5b81358181111561266e5761266e612adc565b8060051b915061267f848301612987565b8181528481019084860184860187018a1015612699578788fd5b8795505b838610156126c2576126ae816124a2565b83526001959095019491860191860161269d565b5098975050505050505050565b6000602082840312156126e0578081fd5b6114d0826124be565b6000602082840312156126fa578081fd5b81356114d081612af2565b600060208284031215612716578081fd5b81516114d081612af2565b600060208284031215612732578081fd5b813567ffffffffffffffff811115612748578182fd5b8201601f81018413612758578182fd5b611ba28482356020840161244a565b600060208284031215612778578081fd5b5035919050565b60008151808452612797816020860160208601612a1a565b601f01601f19169290920160200192915050565b600083516127bd818460208801612a1a565b8351908301906127d1818360208801612a1a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280d9083018461277f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561284f57835183529284019291840191600101612833565b50909695505050505050565b6020815260006114d0602083018461277f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f45786365656473207265736572766564206769667420426f747320737570706c6040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129b0576129b0612adc565b604052919050565b600082198211156129cb576129cb612ab0565b500190565b6000826129df576129df612ac6565b500490565b60008160001904831182151516156129fe576129fe612ab0565b500290565b600082821015612a1557612a15612ab0565b500390565b60005b83811015612a35578181015183820152602001612a1d565b838111156113c75750506000910152565b600181811c90821680612a5a57607f821691505b60208210811415612a7b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9557612a95612ab0565b5060010190565b600082612aab57612aab612ac6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612b0857600080fd5b5056fea26469706673582212201b6ec250186d80c33d97d124489e4dfd5481ae3af7f055c6794a274f33b2f7dd64736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106102465760003560e01c806379b6d4a011610139578063c87b56dd116100b6578063e21a39791161007a578063e21a3979146106a9578063e36fbd24146106c9578063e4cfeac5146106d1578063e985e9c5146106f1578063ed8403bf1461073a578063f2fde38b1461075a57600080fd5b8063c87b56dd146105f9578063ca80014414610619578063cccbc7e514610639578063cfc4e10a14610669578063df8e201d1461068957600080fd5b806395d89b41116100fd57806395d89b411461056f57806398d5fdca14610584578063a22cb46514610599578063b88d4fde146105b9578063c6f6f216146105d957600080fd5b806379b6d4a0146104f6578063853828b6146105095780638d846a95146105115780638da5cb5b1461053157806391b7f5ed1461054f57600080fd5b80632f745c59116101c757806355f804b31161018b57806355f804b3146104615780636352211e146104815780636f8b44b0146104a157806370a08231146104c1578063715018a6146104e157600080fd5b80632f745c59146103b45780633b45fbe5146103d457806342842e0e146103f4578063438b6300146104145780634f6ccce71461044157600080fd5b8063081812fc1161020e578063081812fc14610303578063095ea7b31461033b57806316c61ccc1461035b57806318160ddd1461037557806323b872dd1461039457600080fd5b806301ffc9a71461024b57806302329a29146102805780630285b97c146102a257806306c40cd6146102c157806306fdde03146102e1575b600080fd5b34801561025757600080fd5b5061026b6102663660046126e9565b61077a565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b3660046126cf565b6107a5565b005b3480156102ae57600080fd5b5060115461026b90610100900460ff1681565b3480156102cd57600080fd5b506102a06102dc366004612620565b6107eb565b3480156102ed57600080fd5b506102f66108b6565b604051610277919061285b565b34801561030f57600080fd5b5061032361031e366004612767565b610948565b6040516001600160a01b039091168152602001610277565b34801561034757600080fd5b506102a06103563660046125f7565b6109dd565b34801561036757600080fd5b5060115461026b9060ff1681565b34801561038157600080fd5b506008545b604051908152602001610277565b3480156103a057600080fd5b506102a06103af36600461251a565b610af3565b3480156103c057600080fd5b506103866103cf3660046125f7565b610b24565b3480156103e057600080fd5b506102a06103ef3660046126cf565b610bba565b34801561040057600080fd5b506102a061040f36600461251a565b610bfe565b34801561042057600080fd5b5061043461042f3660046124ce565b610c19565b6040516102779190612817565b34801561044d57600080fd5b5061038661045c366004612767565b610cd7565b34801561046d57600080fd5b506102a061047c366004612721565b610d78565b34801561048d57600080fd5b5061032361049c366004612767565b610db9565b3480156104ad57600080fd5b506102a06104bc366004612767565b610e30565b3480156104cd57600080fd5b506103866104dc3660046124ce565b610e5f565b3480156104ed57600080fd5b506102a0610ee6565b6102a0610504366004612767565b610f5a565b6102a0611102565b34801561051d57600080fd5b506102a061052c366004612620565b6111ba565b34801561053d57600080fd5b50600a546001600160a01b0316610323565b34801561055b57600080fd5b506102a061056a366004612767565b611292565b34801561057b57600080fd5b506102f66112c1565b34801561059057600080fd5b50600e54610386565b3480156105a557600080fd5b506102a06105b43660046125ce565b6112d0565b3480156105c557600080fd5b506102a06105d4366004612555565b611395565b3480156105e557600080fd5b506102a06105f4366004612767565b6113cd565b34801561060557600080fd5b506102f6610614366004612767565b6113fc565b34801561062557600080fd5b506102a06106343660046125f7565b6114d7565b34801561064557600080fd5b5061026b6106543660046124ce565b60126020526000908152604090205460ff1681565b34801561067557600080fd5b506102a0610684366004612767565b611578565b34801561069557600080fd5b506102a06106a4366004612767565b6115a7565b3480156106b557600080fd5b506102a06106c43660046124ce565b6115d6565b6102a0611624565b3480156106dd57600080fd5b506102a06106ec3660046124ce565b611827565b3480156106fd57600080fd5b5061026b61070c3660046124e8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b506102a0610755366004612620565b611872565b34801561076657600080fd5b506102a06107753660046124ce565b6118ea565b60006001600160e01b0319821663780e9d6360e01b148061079f575061079f826119db565b92915050565b600a546001600160a01b031633146107d85760405162461bcd60e51b81526004016107cf90612901565b60405180910390fd5b6011805460ff1916911515919091179055565b600a546001600160a01b031633146108155760405162461bcd60e51b81526004016107cf90612901565b600d54815111156108385760405162461bcd60e51b81526004016107cf906128c0565b60005b815181101561089a5761088882828151811061086757634e487b7160e01b600052603260045260246000fd5b602002602001015161087860085490565b6108839060016129b8565b611a2b565b8061089281612a81565b91505061083b565b508051600d60008282546108ae9190612a03565b909155505050565b6060600080546108c590612a46565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190612a46565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cf565b506000908152600460205260409020546001600160a01b031690565b60006109e882610db9565b9050806001600160a01b0316836001600160a01b03161415610a565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cf565b336001600160a01b0382161480610a725750610a72813361070c565b610ae45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107cf565b610aee8383611a45565b505050565b610afd3382611ab3565b610b195760405162461bcd60e51b81526004016107cf90612936565b610aee838383611baa565b6000610b2f83610e5f565b8210610b915760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107cf565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610be45760405162461bcd60e51b81526004016107cf90612901565b601180549115156101000261ff0019909216919091179055565b610aee83838360405180602001604052806000815250611395565b60606000610c2683610e5f565b905060008167ffffffffffffffff811115610c5157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c7a578160200160208202803683370190505b50905060005b82811015610ccf57610c928582610b24565b828281518110610cb257634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cc781612a81565b915050610c80565b509392505050565b6000610ce260085490565b8210610d455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107cf565b60088281548110610d6657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610da25760405162461bcd60e51b81526004016107cf90612901565b8051610db590600b9060208401906123b1565b5050565b6000818152600260205260408120546001600160a01b03168061079f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cf565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b81526004016107cf90612901565b600f55565b60006001600160a01b038216610eca5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cf565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f105760405162461bcd60e51b81526004016107cf90612901565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000610f6560085490565b60115490915060ff1615610fa95760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016107cf565b6010548211156110095760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d6178696d756d20616d6f756e74206f6620426f747320706044820152640cae440e8f60db1b60648201526084016107cf565b600c54600d54600f5461101c9190612a03565b6110269190612a03565b61103083836129b8565b111561107e5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d20426f747320737570706c79000000000060448201526064016107cf565b81600e5461108c91906129e4565b3410156110d75760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107cf565b60005b82811015610aee576110f03361088383856129b8565b806110fa81612a81565b9150506110da565b600a546001600160a01b0316331461112c5760405162461bcd60e51b81526004016107cf90612901565b4760006103e861113d8360256129e4565b61114791906129d0565b905060006111558284612a03565b6013546040519192506001600160a01b03169083156108fc029084906000818181858888f1935050505061118857600080fd5b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610aee57600080fd5b600a546001600160a01b031633146111e45760405162461bcd60e51b81526004016107cf90612901565b600c5481516008546111f691906129b8565b11156112445760405162461bcd60e51b815260206004820152601f60248201527f576f756c642065786365656420455320726573657276656420737570706c790060448201526064016107cf565b60005b8151811015610db55761128082828151811061127357634e487b7160e01b600052603260045260246000fd5b60200260200101516115d6565b8061128a81612a81565b915050611247565b600a546001600160a01b031633146112bc5760405162461bcd60e51b81526004016107cf90612901565b600e55565b6060600180546108c590612a46565b6001600160a01b0382163314156113295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107cf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61139f3383611ab3565b6113bb5760405162461bcd60e51b81526004016107cf90612936565b6113c784848484611d55565b50505050565b600a546001600160a01b031633146113f75760405162461bcd60e51b81526004016107cf90612901565b601055565b6000818152600260205260409020546060906001600160a01b031661147b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cf565b6000611485611d88565b905060008151116114a557604051806020016040528060008152506114d0565b806114af84611d97565b6040516020016114c09291906127ab565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115015760405162461bcd60e51b81526004016107cf90612901565b600d548111156115235760405162461bcd60e51b81526004016107cf906128c0565b600061152e60085490565b905060005b8281101561155b576115498461088383856129b8565b8061155381612a81565b915050611533565b5081600d600082825461156e9190612a03565b9091555050505050565b600a546001600160a01b031633146115a25760405162461bcd60e51b81526004016107cf90612901565b600c55565b600a546001600160a01b031633146115d15760405162461bcd60e51b81526004016107cf90612901565b600d55565b600a546001600160a01b031633146116005760405162461bcd60e51b81526004016107cf90612901565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b600061162f60085490565b9050600061163c33610e5f565b601154909150610100900460ff16156116975760405162461bcd60e51b815260206004820152601c60248201527f4561726c7920537570706f72746572732073616c65207061757365640000000060448201526064016107cf565b600c546116a58360016129b8565b111561170b5760405162461bcd60e51b815260206004820152602f60248201527f45786365656473206d6178696d756d20426f7473206561726c79206d696e742060448201526e726573657276656420737570706c7960881b60648201526084016107cf565b80156117595760405162461bcd60e51b815260206004820152601a60248201527f596f7520616c7265616479206861766520736f6d6520426f747300000000000060448201526064016107cf565b3360009081526012602052604090205460ff166117cf5760405162461bcd60e51b815260206004820152602e60248201527f536f72727920796f7520617265206e6f74206f6e20746865204561726c79205360448201526d1d5c1c1bdc9d195c9cc81b1a5cdd60921b60648201526084016107cf565b600e5434101561181d5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107cf565b610db53383611a2b565b600a546001600160a01b031633146118515760405162461bcd60e51b81526004016107cf90612901565b6001600160a01b03166000908152601260205260409020805460ff19169055565b600a546001600160a01b0316331461189c5760405162461bcd60e51b81526004016107cf90612901565b60005b8151811015610db5576118d88282815181106118cb57634e487b7160e01b600052603260045260246000fd5b6020026020010151611827565b806118e281612a81565b91505061189f565b600a546001600160a01b031633146119145760405162461bcd60e51b81526004016107cf90612901565b6001600160a01b0381166119795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cf565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611a0c57506001600160e01b03198216635b5e139f60e01b145b8061079f57506301ffc9a760e01b6001600160e01b031983161461079f565b610db5828260405180602001604052806000815250611eb1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7a82610db9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cf565b6000611b3783610db9565b9050806001600160a01b0316846001600160a01b03161480611b725750836001600160a01b0316611b6784610948565b6001600160a01b0316145b80611ba257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bbd82610db9565b6001600160a01b031614611c255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107cf565b6001600160a01b038216611c875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cf565b611c92838383611ee4565b611c9d600082611a45565b6001600160a01b0383166000908152600360205260408120805460019290611cc6908490612a03565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cf49084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611d60848484611baa565b611d6c84848484611f9c565b6113c75760405162461bcd60e51b81526004016107cf9061286e565b6060600b80546108c590612a46565b606081611dbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611de55780611dcf81612a81565b9150611dde9050600a836129d0565b9150611dbf565b60008167ffffffffffffffff811115611e0e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e38576020820181803683370190505b5090505b8415611ba257611e4d600183612a03565b9150611e5a600a86612a9c565b611e659060306129b8565b60f81b818381518110611e8857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611eaa600a866129d0565b9450611e3c565b611ebb83836120a9565b611ec86000848484611f9c565b610aee5760405162461bcd60e51b81526004016107cf9061286e565b6001600160a01b038316611f3f57611f3a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f62565b816001600160a01b0316836001600160a01b031614611f6257611f6283826121f7565b6001600160a01b038216611f7957610aee81612294565b826001600160a01b0316826001600160a01b031614610aee57610aee828261236d565b60006001600160a01b0384163b1561209e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fe09033908990889088906004016127da565b602060405180830381600087803b158015611ffa57600080fd5b505af192505050801561202a575060408051601f3d908101601f1916820190925261202791810190612705565b60015b612084573d808015612058576040519150601f19603f3d011682016040523d82523d6000602084013e61205d565b606091505b50805161207c5760405162461bcd60e51b81526004016107cf9061286e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba2565b506001949350505050565b6001600160a01b0382166120ff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cf565b6000818152600260205260409020546001600160a01b0316156121645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107cf565b61217060008383611ee4565b6001600160a01b03821660009081526003602052604081208054600192906121999084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161220484610e5f565b61220e9190612a03565b600083815260076020526040902054909150808214612261576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122a690600190612a03565b600083815260096020526040812054600880549394509092849081106122dc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061230b57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061237883610e5f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123bd90612a46565b90600052602060002090601f0160209004810192826123df5760008555612425565b82601f106123f857805160ff1916838001178555612425565b82800160010185558215612425579182015b8281111561242557825182559160200191906001019061240a565b50612431929150612435565b5090565b5b808211156124315760008155600101612436565b600067ffffffffffffffff83111561246457612464612adc565b612477601f8401601f1916602001612987565b905082815283838301111561248b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124b957600080fd5b919050565b803580151581146124b957600080fd5b6000602082840312156124df578081fd5b6114d0826124a2565b600080604083850312156124fa578081fd5b612503836124a2565b9150612511602084016124a2565b90509250929050565b60008060006060848603121561252e578081fd5b612537846124a2565b9250612545602085016124a2565b9150604084013590509250925092565b6000806000806080858703121561256a578081fd5b612573856124a2565b9350612581602086016124a2565b925060408501359150606085013567ffffffffffffffff8111156125a3578182fd5b8501601f810187136125b3578182fd5b6125c28782356020840161244a565b91505092959194509250565b600080604083850312156125e0578182fd5b6125e9836124a2565b9150612511602084016124be565b60008060408385031215612609578182fd5b612612836124a2565b946020939093013593505050565b60006020808385031215612632578182fd5b823567ffffffffffffffff80821115612649578384fd5b818501915085601f83011261265c578384fd5b81358181111561266e5761266e612adc565b8060051b915061267f848301612987565b8181528481019084860184860187018a1015612699578788fd5b8795505b838610156126c2576126ae816124a2565b83526001959095019491860191860161269d565b5098975050505050505050565b6000602082840312156126e0578081fd5b6114d0826124be565b6000602082840312156126fa578081fd5b81356114d081612af2565b600060208284031215612716578081fd5b81516114d081612af2565b600060208284031215612732578081fd5b813567ffffffffffffffff811115612748578182fd5b8201601f81018413612758578182fd5b611ba28482356020840161244a565b600060208284031215612778578081fd5b5035919050565b60008151808452612797816020860160208601612a1a565b601f01601f19169290920160200192915050565b600083516127bd818460208801612a1a565b8351908301906127d1818360208801612a1a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280d9083018461277f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561284f57835183529284019291840191600101612833565b50909695505050505050565b6020815260006114d0602083018461277f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f45786365656473207265736572766564206769667420426f747320737570706c6040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129b0576129b0612adc565b604052919050565b600082198211156129cb576129cb612ab0565b500190565b6000826129df576129df612ac6565b500490565b60008160001904831182151516156129fe576129fe612ab0565b500290565b600082821015612a1557612a15612ab0565b500390565b60005b83811015612a35578181015183820152602001612a1d565b838111156113c75750506000910152565b600181811c90821680612a5a57607f821691505b60208210811415612a7b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9557612a95612ab0565b5060010190565b600082612aab57612aab612ac6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612b0857600080fd5b5056fea26469706673582212201b6ec250186d80c33d97d124489e4dfd5481ae3af7f055c6794a274f33b2f7dd64736f6c63430008040033

Deployed Bytecode Sourcemap

42084:5105:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35926:237;;;;;;;;;;-1:-1:-1;35926:237:0;;;;;:::i;:::-;;:::i;:::-;;;7481:14:1;;7474:22;7456:41;;7444:2;7429:18;35926:237:0;;;;;;;;46748:74;;;;;;;;;;-1:-1:-1;46748:74:0;;;;;:::i;:::-;;:::i;:::-;;42447:29;;;;;;;;;;-1:-1:-1;42447:29:0;;;;;;;;;;;46398:342;;;;;;;;;;-1:-1:-1;46398:342:0;;;;;:::i;:::-;;:::i;21963:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23423:221::-;;;;;;;;;;-1:-1:-1;23423:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6139:32:1;;;6121:51;;6109:2;6094:18;23423:221:0;6076:102:1;22960:397:0;;;;;;;;;;-1:-1:-1;22960:397:0;;;;;:::i;:::-;;:::i;42414:26::-;;;;;;;;;;-1:-1:-1;42414:26:0;;;;;;;;36579:113;;;;;;;;;;-1:-1:-1;36667:10:0;:17;36579:113;;;18846:25:1;;;18834:2;18819:18;36579:113:0;18801:76:1;24313:305:0;;;;;;;;;;-1:-1:-1;24313:305:0;;;;;:::i;:::-;;:::i;36247:256::-;;;;;;;;;;-1:-1:-1;36247:256:0;;;;;:::i;:::-;;:::i;46830:78::-;;;;;;;;;;-1:-1:-1;46830:78:0;;;;;:::i;:::-;;:::i;24689:151::-;;;;;;;;;;-1:-1:-1;24689:151:0;;;;;:::i;:::-;;:::i;44826:342::-;;;;;;;;;;-1:-1:-1;44826:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36769:233::-;;;;;;;;;;-1:-1:-1;36769:233:0;;;;;:::i;:::-;;:::i;45854:102::-;;;;;;;;;;-1:-1:-1;45854:102:0;;;;;:::i;:::-;;:::i;21657:239::-;;;;;;;;;;-1:-1:-1;21657:239:0;;;;;:::i;:::-;;:::i;45627:97::-;;;;;;;;;;-1:-1:-1;45627:97:0;;;;;:::i;:::-;;:::i;21387:208::-;;;;;;;;;;-1:-1:-1;21387:208:0;;;;;:::i;:::-;;:::i;34529:148::-;;;;;;;;;;;;;:::i;42948:579::-;;;;;;:::i;:::-;;:::i;46916:270::-;;;:::i;44383:260::-;;;;;;;;;;-1:-1:-1;44383:260:0;;;;;:::i;:::-;;:::i;33878:87::-;;;;;;;;;;-1:-1:-1;33951:6:0;;-1:-1:-1;;;;;33951:6:0;33878:87;;45176:93;;;;;;;;;;-1:-1:-1;45176:93:0;;;;;:::i;:::-;;:::i;22132:104::-;;;;;;;;;;;;;:::i;45964:81::-;;;;;;;;;;-1:-1:-1;46031:6:0;;45964:81;;23716:295;;;;;;;;;;-1:-1:-1;23716:295:0;;;;;:::i;:::-;;:::i;24911:285::-;;;;;;;;;;-1:-1:-1;24911:285:0;;;;;:::i;:::-;;:::i;45277:104::-;;;;;;;;;;-1:-1:-1;45277:104:0;;;;;:::i;:::-;;:::i;22307:360::-;;;;;;;;;;-1:-1:-1;22307:360:0;;;;;:::i;:::-;;:::i;46053:337::-;;;;;;;;;;-1:-1:-1;46053:337:0;;;;;:::i;:::-;;:::i;42485:48::-;;;;;;;;;;-1:-1:-1;42485:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45389:109;;;;;;;;;;-1:-1:-1;45389:109:0;;;;;:::i;:::-;;:::i;45506:113::-;;;;;;;;;;-1:-1:-1;45506:113:0;;;;;:::i;:::-;;:::i;44175:94::-;;;;;;;;;;-1:-1:-1;44175:94:0;;;;;:::i;:::-;;:::i;43535:632::-;;;:::i;44277:98::-;;;;;;;;;;-1:-1:-1;44277:98:0;;;;;:::i;:::-;;:::i;24082:164::-;;;;;;;;;;-1:-1:-1;24082:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24203:25:0;;;24179:4;24203:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24082:164;44651:167;;;;;;;;;;-1:-1:-1;44651:167:0;;;;;:::i;:::-;;:::i;34832:244::-;;;;;;;;;;-1:-1:-1;34832:244:0;;;;;:::i;:::-;;:::i;35926:237::-;36028:4;-1:-1:-1;;;;;;36052:50:0;;-1:-1:-1;;;36052:50:0;;:103;;;36119:36;36143:11;36119:23;:36::i;:::-;36045:110;35926:237;-1:-1:-1;;35926:237:0:o;46748:74::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;;;;;;;;;46801:7:::1;:13:::0;;-1:-1:-1;;46801:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46748:74::o;46398:342::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;46509:13:::1;;46489:9;:16;:33;;46480:81;;;;-1:-1:-1::0;;;46480:81:0::1;;;;;;;:::i;:::-;46579:6;46574:113;46595:9;:16;46591:1;:20;46574:113;;;46633:42;46643:9;46653:1;46643:12;;;;;;-1:-1:-1::0;;;46643:12:0::1;;;;;;;;;;;;;;;46657:13;36667:10:::0;:17;;36579:113;46657:13:::1;:17;::::0;46673:1:::1;46657:17;:::i;:::-;46633:9;:42::i;:::-;46613:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46574:113;;;;46716:9;:16;46699:13;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;46398:342:0:o;21963:100::-;22017:13;22050:5;22043:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21963:100;:::o;23423:221::-;23499:7;26752:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26752:16:0;23519:73;;;;-1:-1:-1;;;23519:73:0;;14168:2:1;23519:73:0;;;14150:21:1;14207:2;14187:18;;;14180:30;14246:34;14226:18;;;14219:62;-1:-1:-1;;;14297:18:1;;;14290:42;14349:19;;23519:73:0;14140:234:1;23519:73:0;-1:-1:-1;23612:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23612:24:0;;23423:221::o;22960:397::-;23041:13;23057:23;23072:7;23057:14;:23::i;:::-;23041:39;;23105:5;-1:-1:-1;;;;;23099:11:0;:2;-1:-1:-1;;;;;23099:11:0;;;23091:57;;;;-1:-1:-1;;;23091:57:0;;16184:2:1;23091:57:0;;;16166:21:1;16223:2;16203:18;;;16196:30;16262:34;16242:18;;;16235:62;-1:-1:-1;;;16313:18:1;;;16306:31;16354:19;;23091:57:0;16156:223:1;23091:57:0;4469:10;-1:-1:-1;;;;;23169:21:0;;;;:62;;-1:-1:-1;23194:37:0;23211:5;4469:10;24082:164;:::i;23194:37::-;23161:154;;;;-1:-1:-1;;;23161:154:0;;12561:2:1;23161:154:0;;;12543:21:1;12600:2;12580:18;;;12573:30;12639:34;12619:18;;;12612:62;12710:26;12690:18;;;12683:54;12754:19;;23161:154:0;12533:246:1;23161:154:0;23328:21;23337:2;23341:7;23328:8;:21::i;:::-;22960:397;;;:::o;24313:305::-;24474:41;4469:10;24507:7;24474:18;:41::i;:::-;24466:103;;;;-1:-1:-1;;;24466:103:0;;;;;;;:::i;:::-;24582:28;24592:4;24598:2;24602:7;24582:9;:28::i;36247:256::-;36344:7;36380:23;36397:5;36380:16;:23::i;:::-;36372:5;:31;36364:87;;;;-1:-1:-1;;;36364:87:0;;8631:2:1;36364:87:0;;;8613:21:1;8670:2;8650:18;;;8643:30;8709:34;8689:18;;;8682:62;-1:-1:-1;;;8760:18:1;;;8753:41;8811:19;;36364:87:0;8603:233:1;36364:87:0;-1:-1:-1;;;;;;36469:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36247:256::o;46830:78::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;46885:9:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;46885:15:0;;::::1;::::0;;;::::1;::::0;;46830:78::o;24689:151::-;24793:39;24810:4;24816:2;24820:7;24793:39;;;;;;;;;;;;:16;:39::i;44826:342::-;44885:16;44914:18;44935:17;44945:6;44935:9;:17::i;:::-;44914:38;;44965:25;45007:10;44993:25;;;;;;-1:-1:-1;;;44993:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44993:25:0;;44965:53;;45033:9;45029:106;45048:10;45044:1;:14;45029:106;;;45093:30;45113:6;45121:1;45093:19;:30::i;:::-;45079:8;45088:1;45079:11;;;;;;-1:-1:-1;;;45079:11:0;;;;;;;;;;;;;;;;;;:44;45060:3;;;;:::i;:::-;;;;45029:106;;;-1:-1:-1;45152:8:0;44826:342;-1:-1:-1;;;44826:342:0:o;36769:233::-;36844:7;36880:30;36667:10;:17;;36579:113;36880:30;36872:5;:38;36864:95;;;;-1:-1:-1;;;36864:95:0;;17358:2:1;36864:95:0;;;17340:21:1;17397:2;17377:18;;;17370:30;17436:34;17416:18;;;17409:62;-1:-1:-1;;;17487:18:1;;;17480:42;17539:19;;36864:95:0;17330:234:1;36864:95:0;36977:10;36988:5;36977:17;;;;;;-1:-1:-1;;;36977:17:0;;;;;;;;;;;;;;;;;36970:24;;36769:233;;;:::o;45854:102::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;45925:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45854:102:::0;:::o;21657:239::-;21729:7;21765:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21765:16:0;21800:19;21792:73;;;;-1:-1:-1;;;21792:73:0;;13397:2:1;21792:73:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:39;13575:19;;21792:73:0;13369:231:1;45627:97:0;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;45696:10:::1;:20:::0;45627:97::o;21387:208::-;21459:7;-1:-1:-1;;;;;21487:19:0;;21479:74;;;;-1:-1:-1;;;21479:74:0;;12986:2:1;21479:74:0;;;12968:21:1;13025:2;13005:18;;;12998:30;13064:34;13044:18;;;13037:62;-1:-1:-1;;;13115:18:1;;;13108:40;13165:19;;21479:74:0;12958:232:1;21479:74:0;-1:-1:-1;;;;;;21571:16:0;;;;;:9;:16;;;;;;;21387:208::o;34529:148::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;34620:6:::1;::::0;34599:40:::1;::::0;34636:1:::1;::::0;-1:-1:-1;;;;;34620:6:0::1;::::0;34599:40:::1;::::0;34636:1;;34599:40:::1;34650:6;:19:::0;;-1:-1:-1;;;;;;34650:19:0::1;::::0;;34529:148::o;42948:579::-;43004:14;43021:13;36667:10;:17;;36579:113;43021:13;43055:7;;43004:30;;-1:-1:-1;43055:7:0;;43054:8;43045:63;;;;-1:-1:-1;;;43045:63:0;;7934:2:1;43045:63:0;;;7916:21:1;7973:2;7953:18;;;7946:30;-1:-1:-1;;;7992:18:1;;;7985:41;8043:18;;43045:63:0;7906:161:1;43045:63:0;43135:8;;43128:3;:15;;43119:96;;;;-1:-1:-1;;;43119:96:0;;11800:2:1;43119:96:0;;;11782:21:1;11839:2;11819:18;;;11812:30;11878:34;11858:18;;;11851:62;-1:-1:-1;;;11929:18:1;;;11922:35;11974:19;;43119:96:0;11772:227:1;43119:96:0;43280:11;;43264:13;;43251:10;;:26;;;;:::i;:::-;:40;;;;:::i;:::-;43235:12;43244:3;43235:6;:12;:::i;:::-;:56;;43226:103;;;;-1:-1:-1;;;43226:103:0;;18186:2:1;43226:103:0;;;18168:21:1;18225:2;18205:18;;;18198:30;18264:29;18244:18;;;18237:57;18311:18;;43226:103:0;18158:177:1;43226:103:0;43371:3;43362:6;;:12;;;;:::i;:::-;43349:9;:25;;43340:77;;;;-1:-1:-1;;;43340:77:0;;16586:2:1;43340:77:0;;;16568:21:1;16625:2;16605:18;;;16598:30;-1:-1:-1;;;16644:18:1;;;16637:55;16709:18;;43340:77:0;16558:175:1;43340:77:0;43434:9;43430:90;43449:3;43445:1;:7;43430:90;;;43473:35;43484:10;43496;43505:1;43496:6;:10;:::i;43473:35::-;43454:3;;;;:::i;:::-;;;;43430:90;;46916:270;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;46994:21:::1;46975:16;47055:4;47039:13;46994:21:::0;47050:2:::1;47039:13;:::i;:::-;:20;;;;:::i;:::-;47026:33:::0;-1:-1:-1;47070:10:0::1;47083:13;47026:33:::0;47083:8;:13:::1;:::i;:::-;47125:2;::::0;47117:20:::1;::::0;47070:26;;-1:-1:-1;;;;;;47125:2:0::1;::::0;47117:20;::::1;;;::::0;47134:2;;47125::::1;47117:20:::0;47125:2;47117:20;47134:2;47125;47117:20;::::1;;;;;;47109:29;;;::::0;::::1;;47165:2;::::0;47157:20:::1;::::0;-1:-1:-1;;;;;47165:2:0;;::::1;::::0;47157:20;::::1;;;::::0;47174:2;;47165::::1;47157:20:::0;47165:2;47157:20;47174:2;47165;47157:20;::::1;;;;;;47149:29;;;::::0;::::1;44383:260:::0;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;44494:11:::1;::::0;44479;;36667:10;:17;44463:27:::1;;;;:::i;:::-;:42;;44455:86;;;::::0;-1:-1:-1;;;44455:86:0;;18542:2:1;44455:86:0::1;::::0;::::1;18524:21:1::0;18581:2;18561:18;;;18554:30;18620:33;18600:18;;;18593:61;18671:18;;44455:86:0::1;18514:181:1::0;44455:86:0::1;44558:9;44554:82;44577:4;:11;44573:1;:15;44554:82;;;44610:14;44616:4;44621:1;44616:7;;;;;;-1:-1:-1::0;;;44616:7:0::1;;;;;;;;;;;;;;;44610:5;:14::i;:::-;44590:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44554:82;;45176:93:::0;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;45243:6:::1;:18:::0;45176:93::o;22132:104::-;22188:13;22221:7;22214:14;;;;;:::i;23716:295::-;-1:-1:-1;;;;;23819:24:0;;4469:10;23819:24;;23811:62;;;;-1:-1:-1;;;23811:62:0;;11033:2:1;23811:62:0;;;11015:21:1;11072:2;11052:18;;;11045:30;11111:27;11091:18;;;11084:55;11156:18;;23811:62:0;11005:175:1;23811:62:0;4469:10;23886:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23886:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23886:53:0;;;;;;;;;;23955:48;;7456:41:1;;;23886:42:0;;4469:10;23955:48;;7429:18:1;23955:48:0;;;;;;;23716:295;;:::o;24911:285::-;25043:41;4469:10;25076:7;25043:18;:41::i;:::-;25035:103;;;;-1:-1:-1;;;25035:103:0;;;;;;;:::i;:::-;25149:39;25163:4;25169:2;25173:7;25182:5;25149:13;:39::i;:::-;24911:285;;;;:::o;45277:104::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;45350:8:::1;:23:::0;45277:104::o;22307:360::-;26728:4;26752:16;;;:7;:16;;;;;;22380:13;;-1:-1:-1;;;;;26752:16:0;22406:76;;;;-1:-1:-1;;;22406:76:0;;15352:2:1;22406:76:0;;;15334:21:1;15391:2;15371:18;;;15364:30;15430:34;15410:18;;;15403:62;-1:-1:-1;;;15481:18:1;;;15474:45;15536:19;;22406:76:0;15324:237:1;22406:76:0;22495:21;22519:10;:8;:10::i;:::-;22495:34;;22571:1;22553:7;22547:21;:25;:112;;;;;;;;;;;;;;;;;22612:7;22621:18;:7;:16;:18::i;:::-;22595:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22547:112;22540:119;22307:360;-1:-1:-1;;;22307:360:0:o;46053:337::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;46153:13:::1;;46142:7;:24;;46133:72;;;;-1:-1:-1::0;;;46133:72:0::1;;;;;;;:::i;:::-;46218:14;46235:13;36667:10:::0;:17;;36579:113;46235:13:::1;46218:30;;46263:9;46259:87;46278:7;46274:1;:11;46259:87;;;46306:28;46317:3:::0;46322:10:::1;46331:1:::0;46322:6;:10:::1;:::i;46306:28::-;46287:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46259:87;;;;46375:7;46358:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;46053:337:0:o;45389:109::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;45464:11:::1;:26:::0;45389:109::o;45506:113::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;45583:13:::1;:28:::0;45506:113::o;44175:94::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44233:21:0::1;;::::0;;;:16:::1;:21;::::0;;;;:28;;-1:-1:-1;;44233:28:0::1;44257:4;44233:28;::::0;;44175:94::o;43535:632::-;43582:14;43599:13;36667:10;:17;;36579:113;43599:13;43582:30;;43623:15;43641:21;43651:10;43641:9;:21::i;:::-;43685:9;;43623:39;;-1:-1:-1;43685:9:0;;;;;43684:10;43675:82;;;;-1:-1:-1;;;43675:82:0;;8274:2:1;43675:82:0;;;8256:21:1;8313:2;8293:18;;;8286:30;8352;8332:18;;;8325:58;8400:18;;43675:82:0;8246:178:1;43675:82:0;43791:11;;43777:10;:6;43786:1;43777:10;:::i;:::-;:25;;43768:92;;;;-1:-1:-1;;;43768:92:0;;15768:2:1;43768:92:0;;;15750:21:1;15807:2;15787:18;;;15780:30;15846:34;15826:18;;;15819:62;-1:-1:-1;;;15897:18:1;;;15890:45;15952:19;;43768:92:0;15740:237:1;43768:92:0;43880:12;;43871:58;;;;-1:-1:-1;;;43871:58:0;;12206:2:1;43871:58:0;;;12188:21:1;12245:2;12225:18;;;12218:30;12284:28;12264:18;;;12257:56;12330:18;;43871:58:0;12178:176:1;43871:58:0;43966:10;43949:28;;;;:16;:28;;;;;;;;43940:94;;;;-1:-1:-1;;;43940:94:0;;17771:2:1;43940:94:0;;;17753:21:1;17810:2;17790:18;;;17783:30;17849:34;17829:18;;;17822:62;-1:-1:-1;;;17900:18:1;;;17893:44;17954:19;;43940:94:0;17743:236:1;43940:94:0;44067:6;;44054:9;:19;;44045:71;;;;-1:-1:-1;;;44045:71:0;;16586:2:1;44045:71:0;;;16568:21:1;16625:2;16605:18;;;16598:30;-1:-1:-1;;;16644:18:1;;;16637:55;16709:18;;44045:71:0;16558:175:1;44045:71:0;44129:30;44140:10;44152:6;44129:9;:30::i;44277:98::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44338:21:0::1;44362:5;44338:21:::0;;;:16:::1;:21;::::0;;;;:29;;-1:-1:-1;;44338:29:0::1;::::0;;44277:98::o;44651:167::-;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;44730:9:::1;44726:85;44749:4;:11;44745:1;:15;44726:85;;;44782:17;44791:4;44796:1;44791:7;;;;;;-1:-1:-1::0;;;44791:7:0::1;;;;;;;;;;;;;;;44782:8;:17::i;:::-;44762:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44726:85;;34832:244:::0;33951:6;;-1:-1:-1;;;;;33951:6:0;4469:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34921:22:0;::::1;34913:73;;;::::0;-1:-1:-1;;;34913:73:0;;9462:2:1;34913:73:0::1;::::0;::::1;9444:21:1::0;9501:2;9481:18;;;9474:30;9540:34;9520:18;;;9513:62;-1:-1:-1;;;9591:18:1;;;9584:36;9637:19;;34913:73:0::1;9434:228:1::0;34913:73:0::1;35023:6;::::0;35002:38:::1;::::0;-1:-1:-1;;;;;35002:38:0;;::::1;::::0;35023:6:::1;::::0;35002:38:::1;::::0;35023:6:::1;::::0;35002:38:::1;35051:6;:17:::0;;-1:-1:-1;;;;;;35051:17:0::1;-1:-1:-1::0;;;;;35051:17:0;;;::::1;::::0;;;::::1;::::0;;34832:244::o;5447:422::-;5814:20;5853:8;;;5447:422::o;21031:292::-;21133:4;-1:-1:-1;;;;;;21157:40:0;;-1:-1:-1;;;21157:40:0;;:105;;-1:-1:-1;;;;;;;21214:48:0;;-1:-1:-1;;;21214:48:0;21157:105;:158;;;-1:-1:-1;;;;;;;;;;1756:40:0;;;21279:36;1647:157;27647:110;27723:26;27733:2;27737:7;27723:26;;;;;;;;;;;;:9;:26::i;30546:174::-;30621:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30621:29:0;-1:-1:-1;;;;;30621:29:0;;;;;;;;:24;;30675:23;30621:24;30675:14;:23::i;:::-;-1:-1:-1;;;;;30666:46:0;;;;;;;;;;;30546:174;;:::o;26957:348::-;27050:4;26752:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26752:16:0;27067:73;;;;-1:-1:-1;;;27067:73:0;;11387:2:1;27067:73:0;;;11369:21:1;11426:2;11406:18;;;11399:30;11465:34;11445:18;;;11438:62;-1:-1:-1;;;11516:18:1;;;11509:42;11568:19;;27067:73:0;11359:234:1;27067:73:0;27151:13;27167:23;27182:7;27167:14;:23::i;:::-;27151:39;;27220:5;-1:-1:-1;;;;;27209:16:0;:7;-1:-1:-1;;;;;27209:16:0;;:51;;;;27253:7;-1:-1:-1;;;;;27229:31:0;:20;27241:7;27229:11;:20::i;:::-;-1:-1:-1;;;;;27229:31:0;;27209:51;:87;;;-1:-1:-1;;;;;;24203:25:0;;;24179:4;24203:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27264:32;27201:96;26957:348;-1:-1:-1;;;;26957:348:0:o;29884:544::-;30009:4;-1:-1:-1;;;;;29982:31:0;:23;29997:7;29982:14;:23::i;:::-;-1:-1:-1;;;;;29982:31:0;;29974:85;;;;-1:-1:-1;;;29974:85:0;;14942:2:1;29974:85:0;;;14924:21:1;14981:2;14961:18;;;14954:30;15020:34;15000:18;;;14993:62;-1:-1:-1;;;15071:18:1;;;15064:39;15120:19;;29974:85:0;14914:231:1;29974:85:0;-1:-1:-1;;;;;30078:16:0;;30070:65;;;;-1:-1:-1;;;30070:65:0;;10628:2:1;30070:65:0;;;10610:21:1;10667:2;10647:18;;;10640:30;10706:34;10686:18;;;10679:62;-1:-1:-1;;;10757:18:1;;;10750:34;10801:19;;30070:65:0;10600:226:1;30070:65:0;30148:39;30169:4;30175:2;30179:7;30148:20;:39::i;:::-;30252:29;30269:1;30273:7;30252:8;:29::i;:::-;-1:-1:-1;;;;;30294:15:0;;;;;;:9;:15;;;;;:20;;30313:1;;30294:15;:20;;30313:1;;30294:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30325:13:0;;;;;;:9;:13;;;;;:18;;30342:1;;30325:13;:18;;30342:1;;30325:18;:::i;:::-;;;;-1:-1:-1;;30354:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30354:21:0;-1:-1:-1;;;;;30354:21:0;;;;;;;;;30393:27;;30354:16;;30393:27;;;;;;;29884:544;;;:::o;26078:272::-;26192:28;26202:4;26208:2;26212:7;26192:9;:28::i;:::-;26239:48;26262:4;26268:2;26272:7;26281:5;26239:22;:48::i;:::-;26231:111;;;;-1:-1:-1;;;26231:111:0;;;;;;;:::i;45732:114::-;45792:13;45825;45818:20;;;;;:::i;2062:723::-;2118:13;2339:10;2335:53;;-1:-1:-1;;2366:10:0;;;;;;;;;;;;-1:-1:-1;;;2366:10:0;;;;;2062:723::o;2335:53::-;2413:5;2398:12;2454:78;2461:9;;2454:78;;2487:8;;;;:::i;:::-;;-1:-1:-1;2510:10:0;;-1:-1:-1;2518:2:0;2510:10;;:::i;:::-;;;2454:78;;;2542:19;2574:6;2564:17;;;;;;-1:-1:-1;;;2564:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2564:17:0;;2542:39;;2592:154;2599:10;;2592:154;;2626:11;2636:1;2626:11;;:::i;:::-;;-1:-1:-1;2695:10:0;2703:2;2695:5;:10;:::i;:::-;2682:24;;:2;:24;:::i;:::-;2669:39;;2652:6;2659;2652:14;;;;;;-1:-1:-1;;;2652:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2652:56:0;;;;;;;;-1:-1:-1;2723:11:0;2732:2;2723:11;;:::i;:::-;;;2592:154;;27984:250;28080:18;28086:2;28090:7;28080:5;:18::i;:::-;28117:54;28148:1;28152:2;28156:7;28165:5;28117:22;:54::i;:::-;28109:117;;;;-1:-1:-1;;;28109:117:0;;;;;;;:::i;37615:555::-;-1:-1:-1;;;;;37787:18:0;;37783:187;;37822:40;37854:7;38997:10;:17;;38970:24;;;;:15;:24;;;;;:44;;;39025:24;;;;;;;;;;;;38893:164;37822:40;37783:187;;;37892:2;-1:-1:-1;;;;;37884:10:0;:4;-1:-1:-1;;;;;37884:10:0;;37880:90;;37911:47;37944:4;37950:7;37911:32;:47::i;:::-;-1:-1:-1;;;;;37984:16:0;;37980:183;;38017:45;38054:7;38017:36;:45::i;37980:183::-;38090:4;-1:-1:-1;;;;;38084:10:0;:2;-1:-1:-1;;;;;38084:10:0;;38080:83;;38111:40;38139:2;38143:7;38111:27;:40::i;31285:843::-;31406:4;-1:-1:-1;;;;;31432:13:0;;5814:20;5853:8;31428:693;;31468:72;;-1:-1:-1;;;31468:72:0;;-1:-1:-1;;;;;31468:36:0;;;;;:72;;4469:10;;31519:4;;31525:7;;31534:5;;31468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31468:72:0;;;;;;;;-1:-1:-1;;31468:72:0;;;;;;;;;;;;:::i;:::-;;;31464:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31714:13:0;;31710:341;;31757:60;;-1:-1:-1;;;31757:60:0;;;;;;;:::i;31710:341::-;32001:6;31995:13;31986:6;31982:2;31978:15;31971:38;31464:602;-1:-1:-1;;;;;;31591:55:0;-1:-1:-1;;;31591:55:0;;-1:-1:-1;31584:62:0;;31428:693;-1:-1:-1;32105:4:0;31285:843;;;;;;:::o;28570:382::-;-1:-1:-1;;;;;28650:16:0;;28642:61;;;;-1:-1:-1;;;28642:61:0;;13807:2:1;28642:61:0;;;13789:21:1;;;13826:18;;;13819:30;13885:34;13865:18;;;13858:62;13937:18;;28642:61:0;13779:182:1;28642:61:0;26728:4;26752:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26752:16:0;:30;28714:58;;;;-1:-1:-1;;;28714:58:0;;9869:2:1;28714:58:0;;;9851:21:1;9908:2;9888:18;;;9881:30;9947;9927:18;;;9920:58;9995:18;;28714:58:0;9841:178:1;28714:58:0;28785:45;28814:1;28818:2;28822:7;28785:20;:45::i;:::-;-1:-1:-1;;;;;28843:13:0;;;;;;:9;:13;;;;;:18;;28860:1;;28843:13;:18;;28860:1;;28843:18;:::i;:::-;;;;-1:-1:-1;;28872:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28872:21:0;-1:-1:-1;;;;;28872:21:0;;;;;;;;28911:33;;28872:16;;;28911:33;;28872:16;;28911:33;28570:382;;:::o;39684:988::-;39950:22;40000:1;39975:22;39992:4;39975:16;:22::i;:::-;:26;;;;:::i;:::-;40012:18;40033:26;;;:17;:26;;;;;;39950:51;;-1:-1:-1;40166:28:0;;;40162:328;;-1:-1:-1;;;;;40233:18:0;;40211:19;40233:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40284:30;;;;;;:44;;;40401:30;;:17;:30;;;;;:43;;;40162:328;-1:-1:-1;40586:26:0;;;;:17;:26;;;;;;;;40579:33;;;-1:-1:-1;;;;;40630:18:0;;;;;:12;:18;;;;;:34;;;;;;;40623:41;39684:988::o;40967:1079::-;41245:10;:17;41220:22;;41245:21;;41265:1;;41245:21;:::i;:::-;41277:18;41298:24;;;:15;:24;;;;;;41671:10;:26;;41220:46;;-1:-1:-1;41298:24:0;;41220:46;;41671:26;;;;-1:-1:-1;;;41671:26:0;;;;;;;;;;;;;;;;;41649:48;;41735:11;41710:10;41721;41710:22;;;;;;-1:-1:-1;;;41710:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;41815:28;;;:15;:28;;;;;;;:41;;;41987:24;;;;;41980:31;42022:10;:16;;;;;-1:-1:-1;;;42022:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;40967:1079;;;;:::o;38471:221::-;38556:14;38573:20;38590:2;38573:16;:20::i;:::-;-1:-1:-1;;;;;38604:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38649:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38471:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:2;;753:1;750;743:12;768:196;827:6;880:2;868:9;859:7;855:23;851:32;848:2;;;901:6;893;886:22;848:2;929:29;948:9;929:29;:::i;969:270::-;1037:6;1045;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1119:6;1111;1104:22;1066:2;1147:29;1166:9;1147:29;:::i;:::-;1137:39;;1195:38;1229:2;1218:9;1214:18;1195:38;:::i;:::-;1185:48;;1056:183;;;;;:::o;1244:338::-;1321:6;1329;1337;1390:2;1378:9;1369:7;1365:23;1361:32;1358:2;;;1411:6;1403;1396:22;1358:2;1439:29;1458:9;1439:29;:::i;:::-;1429:39;;1487:38;1521:2;1510:9;1506:18;1487:38;:::i;:::-;1477:48;;1572:2;1561:9;1557:18;1544:32;1534:42;;1348:234;;;;;:::o;1587:696::-;1682:6;1690;1698;1706;1759:3;1747:9;1738:7;1734:23;1730:33;1727:2;;;1781:6;1773;1766:22;1727:2;1809:29;1828:9;1809:29;:::i;:::-;1799:39;;1857:38;1891:2;1880:9;1876:18;1857:38;:::i;:::-;1847:48;;1942:2;1931:9;1927:18;1914:32;1904:42;;1997:2;1986:9;1982:18;1969:32;2024:18;2016:6;2013:30;2010:2;;;2061:6;2053;2046:22;2010:2;2089:22;;2142:4;2134:13;;2130:27;-1:-1:-1;2120:2:1;;2176:6;2168;2161:22;2120:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1717:566;;;;;;;:::o;2288:264::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2435:6;2427;2420:22;2382:2;2463:29;2482:9;2463:29;:::i;:::-;2453:39;;2511:35;2542:2;2531:9;2527:18;2511:35;:::i;2557:264::-;2625:6;2633;2686:2;2674:9;2665:7;2661:23;2657:32;2654:2;;;2707:6;2699;2692:22;2654:2;2735:29;2754:9;2735:29;:::i;:::-;2725:39;2811:2;2796:18;;;;2783:32;;-1:-1:-1;;;2644:177:1:o;2826:1008::-;2910:6;2941:2;2984;2972:9;2963:7;2959:23;2955:32;2952:2;;;3005:6;2997;2990:22;2952:2;3050:9;3037:23;3079:18;3120:2;3112:6;3109:14;3106:2;;;3141:6;3133;3126:22;3106:2;3184:6;3173:9;3169:22;3159:32;;3229:7;3222:4;3218:2;3214:13;3210:27;3200:2;;3256:6;3248;3241:22;3200:2;3297;3284:16;3319:2;3315;3312:10;3309:2;;;3325:18;;:::i;:::-;3371:2;3368:1;3364:10;3354:20;;3394:28;3418:2;3414;3410:11;3394:28;:::i;:::-;3456:15;;;3487:12;;;;3519:11;;;3549;;;3545:20;;3542:33;-1:-1:-1;3539:2:1;;;3593:6;3585;3578:22;3539:2;3620:6;3611:15;;3635:169;3649:2;3646:1;3643:9;3635:169;;;3706:23;3725:3;3706:23;:::i;:::-;3694:36;;3667:1;3660:9;;;;;3750:12;;;;3782;;3635:169;;;-1:-1:-1;3823:5:1;2921:913;-1:-1:-1;;;;;;;;2921:913:1:o;3839:190::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:2;;;3969:6;3961;3954:22;3916:2;3997:26;4013:9;3997:26;:::i;4034:255::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:2;;;4166:6;4158;4151:22;4113:2;4210:9;4197:23;4229:30;4253:5;4229:30;:::i;4294:259::-;4363:6;4416:2;4404:9;4395:7;4391:23;4387:32;4384:2;;;4437:6;4429;4422:22;4384:2;4474:9;4468:16;4493:30;4517:5;4493:30;:::i;4558:480::-;4627:6;4680:2;4668:9;4659:7;4655:23;4651:32;4648:2;;;4701:6;4693;4686:22;4648:2;4746:9;4733:23;4779:18;4771:6;4768:30;4765:2;;;4816:6;4808;4801:22;4765:2;4844:22;;4897:4;4889:13;;4885:27;-1:-1:-1;4875:2:1;;4931:6;4923;4916:22;4875:2;4959:73;5024:7;5019:2;5006:16;5001:2;4997;4993:11;4959:73;:::i;5043:190::-;5102:6;5155:2;5143:9;5134:7;5130:23;5126:32;5123:2;;;5176:6;5168;5161:22;5123:2;-1:-1:-1;5204:23:1;;5113:120;-1:-1:-1;5113:120:1:o;5238:257::-;5279:3;5317:5;5311:12;5344:6;5339:3;5332:19;5360:63;5416:6;5409:4;5404:3;5400:14;5393:4;5386:5;5382:16;5360:63;:::i;:::-;5477:2;5456:15;-1:-1:-1;;5452:29:1;5443:39;;;;5484:4;5439:50;;5287:208;-1:-1:-1;;5287:208:1:o;5500:470::-;5679:3;5717:6;5711:13;5733:53;5779:6;5774:3;5767:4;5759:6;5755:17;5733:53;:::i;:::-;5849:13;;5808:16;;;;5871:57;5849:13;5808:16;5905:4;5893:17;;5871:57;:::i;:::-;5944:20;;5687:283;-1:-1:-1;;;;5687:283:1:o;6183:488::-;-1:-1:-1;;;;;6452:15:1;;;6434:34;;6504:15;;6499:2;6484:18;;6477:43;6551:2;6536:18;;6529:34;;;6599:3;6594:2;6579:18;;6572:31;;;6377:4;;6620:45;;6645:19;;6637:6;6620:45;:::i;:::-;6612:53;6386:285;-1:-1:-1;;;;;;6386:285:1:o;6676:635::-;6847:2;6899:21;;;6969:13;;6872:18;;;6991:22;;;6818:4;;6847:2;7070:15;;;;7044:2;7029:18;;;6818:4;7116:169;7130:6;7127:1;7124:13;7116:169;;;7191:13;;7179:26;;7260:15;;;;7225:12;;;;7152:1;7145:9;7116:169;;;-1:-1:-1;7302:3:1;;6827:484;-1:-1:-1;;;;;;6827:484:1:o;7508:219::-;7657:2;7646:9;7639:21;7620:4;7677:44;7717:2;7706:9;7702:18;7694:6;7677:44;:::i;8841:414::-;9043:2;9025:21;;;9082:2;9062:18;;;9055:30;9121:34;9116:2;9101:18;;9094:62;-1:-1:-1;;;9187:2:1;9172:18;;9165:48;9245:3;9230:19;;9015:240::o;10024:397::-;10226:2;10208:21;;;10265:2;10245:18;;;10238:30;10304:34;10299:2;10284:18;;10277:62;-1:-1:-1;;;10370:2:1;10355:18;;10348:31;10411:3;10396:19;;10198:223::o;14379:356::-;14581:2;14563:21;;;14600:18;;;14593:30;14659:34;14654:2;14639:18;;14632:62;14726:2;14711:18;;14553:182::o;16738:413::-;16940:2;16922:21;;;16979:2;16959:18;;;16952:30;17018:34;17013:2;16998:18;;16991:62;-1:-1:-1;;;17084:2:1;17069:18;;17062:47;17141:3;17126:19;;16912:239::o;18882:275::-;18953:2;18947:9;19018:2;18999:13;;-1:-1:-1;;18995:27:1;18983:40;;19053:18;19038:34;;19074:22;;;19035:62;19032:2;;;19100:18;;:::i;:::-;19136:2;19129:22;18927:230;;-1:-1:-1;18927:230:1:o;19162:128::-;19202:3;19233:1;19229:6;19226:1;19223:13;19220:2;;;19239:18;;:::i;:::-;-1:-1:-1;19275:9:1;;19210:80::o;19295:120::-;19335:1;19361;19351:2;;19366:18;;:::i;:::-;-1:-1:-1;19400:9:1;;19341:74::o;19420:168::-;19460:7;19526:1;19522;19518:6;19514:14;19511:1;19508:21;19503:1;19496:9;19489:17;19485:45;19482:2;;;19533:18;;:::i;:::-;-1:-1:-1;19573:9:1;;19472:116::o;19593:125::-;19633:4;19661:1;19658;19655:8;19652:2;;;19666:18;;:::i;:::-;-1:-1:-1;19703:9:1;;19642:76::o;19723:258::-;19795:1;19805:113;19819:6;19816:1;19813:13;19805:113;;;19895:11;;;19889:18;19876:11;;;19869:39;19841:2;19834:10;19805:113;;;19936:6;19933:1;19930:13;19927:2;;;-1:-1:-1;;19971:1:1;19953:16;;19946:27;19776:205::o;19986:380::-;20065:1;20061:12;;;;20108;;;20129:2;;20183:4;20175:6;20171:17;20161:27;;20129:2;20236;20228:6;20225:14;20205:18;20202:38;20199:2;;;20282:10;20277:3;20273:20;20270:1;20263:31;20317:4;20314:1;20307:15;20345:4;20342:1;20335:15;20199:2;;20041:325;;;:::o;20371:135::-;20410:3;-1:-1:-1;;20431:17:1;;20428:2;;;20451:18;;:::i;:::-;-1:-1:-1;20498:1:1;20487:13;;20418:88::o;20511:112::-;20543:1;20569;20559:2;;20574:18;;:::i;:::-;-1:-1:-1;20608:9:1;;20549:74::o;20628:127::-;20689:10;20684:3;20680:20;20677:1;20670:31;20720:4;20717:1;20710:15;20744:4;20741:1;20734:15;20760:127;20821:10;20816:3;20812:20;20809:1;20802:31;20852:4;20849:1;20842:15;20876:4;20873:1;20866:15;20892:127;20953:10;20948:3;20944:20;20941:1;20934:31;20984:4;20981:1;20974:15;21008:4;21005:1;20998:15;21024:131;-1:-1:-1;;;;;;21098:32:1;;21088:43;;21078:2;;21145:1;21142;21135:12;21078:2;21068:87;:::o

Swarm Source

ipfs://1b6ec250186d80c33d97d124489e4dfd5481ae3af7f055c6794a274f33b2f7dd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.