ETH Price: $3,074.48 (-4.19%)
Gas: 8 Gwei

Token

0xDoodles (0xDoodle)
 

Overview

Max Total Supply

2,093 0xDoodle

Holders

393

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
marzie.eth
Balance
6 0xDoodle
0x0b976ac2a8c8b9d11cd6fffa688e6756379322c0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OxDoodlesNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-01
*/

// SPDX-License-Identifier: MIT


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/LowerGas.sol


// Creator: Chiru Labs


pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity ^0.8.0;










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

interface HolderC {
    
    function balanceOf(address owner) external view returns (uint256 balance);
}

pragma solidity ^0.8.0;

contract OxDoodlesNFT is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  
  uint256 public cost = 0.03 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 20;

  bool public paused = true;


  bytes32 public whitelistMerkleRoot;
  mapping(address => uint256) public addressMintedBalance;

  HolderC public holderc;

  constructor() ERC721A("0xDoodles", "0xDoodle", maxMintAmountPerTx) {
  }

  /**
    * @dev validates merkleProof
    */
  modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
    require(
        MerkleProof.verify(
            merkleProof,
            root,
            keccak256(abi.encodePacked(msg.sender))
        ),
        "Address does not exist in list"
    );
    _;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_to, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }
function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }
      function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

  function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
    whitelistMerkleRoot = merkleRoot;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setHolderC(address _address) public {
    holderc = HolderC(_address);
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
      _safeMint(_receiver, _mintAmount);
  }

}

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":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"holderc","outputs":[{"internalType":"contract HolderC","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setHolderC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805560e0604052600560a081905264173539b7b760d91b60c09081526200002c91600991906200019e565b50666a94d74f430000600a55612710600b556014600c55600d805460ff191660011790553480156200005d57600080fd5b50604051806040016040528060098152602001683078446f6f646c657360b81b815250604051806040016040528060088152602001673078446f6f646c6560c01b815250600c5460008111620001095760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200011e9060019060208601906200019e565b508151620001349060029060208501906200019e565b5060805250620001469050336200014c565b62000281565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ac9062000244565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b600181811c908216806200025957607f821691505b602082108114156200027b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161269c620002ab600039600081816118a3015281816118cd0152611cf5015261269c6000f3fe6080604052600436106102255760003560e01c80635c975abb11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461064b578063d5abeb011461066b578063da3ef23f14610681578063e985e9c5146106a1578063f2fde38b146106ea57600080fd5b8063a22cb465146105c0578063aa98e0c6146105e0578063b88d4fde146105f6578063bd32fb6614610616578063c66828621461063657600080fd5b8063715018a6116100f2578063715018a61461054f5780638da5cb5b1461056457806394354fd01461058257806395d89b4114610598578063a0712d68146105ad57600080fd5b80635c975abb146104e05780636352211e146104fa5780636c0360eb1461051a57806370a082311461052f57600080fd5b80632cdf09ba116101b157806342842e0e1161017557806342842e0e14610433578063438b63001461045357806344a0d68a146104805780634f6ccce7146104a057806355f804b3146104c057600080fd5b80632cdf09ba146103815780632f745c59146103a1578063388960a7146103c15780633ccfd60b146103fe578063408cbf941461041357600080fd5b806313faede6116101f857806313faede6146102db57806316c38b3c146102ff57806318160ddd1461031f57806318cae2691461033457806323b872dd1461036157600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461222f565b61070a565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610777565b6040516102569190612423565b34801561028d57600080fd5b506102a161029c366004612216565b610809565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046121d1565b610899565b005b3480156102e757600080fd5b506102f1600a5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a3660046121fb565b6109b1565b34801561032b57600080fd5b506000546102f1565b34801561034057600080fd5b506102f161034f3660046120a1565b600f6020526000908152604090205481565b34801561036d57600080fd5b506102d961037c3660046120ef565b6109ee565b34801561038d57600080fd5b506010546102a1906001600160a01b031681565b3480156103ad57600080fd5b506102f16103bc3660046121d1565b6109f9565b3480156103cd57600080fd5b506102d96103dc3660046120a1565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b34801561040a57600080fd5b506102d9610b67565b34801561041f57600080fd5b506102d961042e3660046121d1565b610c05565b34801561043f57600080fd5b506102d961044e3660046120ef565b610ce5565b34801561045f57600080fd5b5061047361046e3660046120a1565b610d00565b60405161025691906123df565b34801561048c57600080fd5b506102d961049b366004612216565b610de1565b3480156104ac57600080fd5b506102f16104bb366004612216565b610e10565b3480156104cc57600080fd5b506102d96104db366004612269565b610e72565b3480156104ec57600080fd5b50600d5461024a9060ff1681565b34801561050657600080fd5b506102a1610515366004612216565b610eb3565b34801561052657600080fd5b50610274610ec5565b34801561053b57600080fd5b506102f161054a3660046120a1565b610f53565b34801561055b57600080fd5b506102d9610fe4565b34801561057057600080fd5b506007546001600160a01b03166102a1565b34801561058e57600080fd5b506102f1600c5481565b3480156105a457600080fd5b5061027461101a565b6102d96105bb366004612216565b611029565b3480156105cc57600080fd5b506102d96105db3660046121a7565b611185565b3480156105ec57600080fd5b506102f1600e5481565b34801561060257600080fd5b506102d961061136600461212b565b61124a565b34801561062257600080fd5b506102d9610631366004612216565b611283565b34801561064257600080fd5b506102746112b2565b34801561065757600080fd5b50610274610666366004612216565b6112bf565b34801561067757600080fd5b506102f1600b5481565b34801561068d57600080fd5b506102d961069c366004612269565b61138f565b3480156106ad57600080fd5b5061024a6106bc3660046120bc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b506102d96107053660046120a1565b6113cc565b60006001600160e01b031982166380ac58cd60e01b148061073b57506001600160e01b03198216635b5e139f60e01b145b8061075657506001600160e01b0319821663780e9d6360e01b145b8061077157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107869061258e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b29061258e565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b6000610816826000541190565b61087d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a482610eb3565b9050806001600160a01b0316836001600160a01b031614156109135760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610874565b336001600160a01b038216148061092f575061092f81336106bc565b6109a15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610874565b6109ac838383611464565b505050565b6007546001600160a01b031633146109db5760405162461bcd60e51b815260040161087490612436565b600d805460ff1916911515919091179055565b6109ac8383836114c0565b6000610a0483610f53565b8210610a5d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610874565b600080549080805b83811015610b07576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ab857805192505b876001600160a01b0316836001600160a01b03161415610af45786841415610ae65750935061077192505050565b83610af0816125c9565b9450505b5080610aff816125c9565b915050610a65565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610874565b6007546001600160a01b03163314610b915760405162461bcd60e51b815260040161087490612436565b6000610ba56007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bef576040519150601f19603f3d011682016040523d82523d6000602084013e610bf4565b606091505b5050905080610c0257600080fd5b50565b80600081118015610c185750600c548111155b610c5b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610874565b600b5481600054610c6c91906124e9565b1115610cb15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610874565b6007546001600160a01b03163314610cdb5760405162461bcd60e51b815260040161087490612436565b6109ac8383611807565b6109ac8383836040518060200160405280600081525061124a565b60606000610d0d83610f53565b905060008167ffffffffffffffff811115610d2a57610d2a61263a565b604051908082528060200260200182016040528015610d53578160200160208202803683370190505b509050600160005b8381108015610d6c5750600b548211155b15610dd7576000610d7c83610eb3565b9050866001600160a01b0316816001600160a01b03161415610dc45782848381518110610dab57610dab612624565b602090810291909101015281610dc0816125c9565b9250505b82610dce816125c9565b93505050610d5b565b5090949350505050565b6007546001600160a01b03163314610e0b5760405162461bcd60e51b815260040161087490612436565b600a55565b600080548210610e6e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610874565b5090565b6007546001600160a01b03163314610e9c5760405162461bcd60e51b815260040161087490612436565b8051610eaf906008906020840190611f6f565b5050565b6000610ebe82611821565b5192915050565b60088054610ed29061258e565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061258e565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505081565b60006001600160a01b038216610fbf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610874565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461100e5760405162461bcd60e51b815260040161087490612436565b61101860006119cb565b565b6060600280546107869061258e565b8060008111801561103c5750600c548111155b61107f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610874565b600b548160005461109091906124e9565b11156110d55760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610874565b600d5460ff16156111285760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610874565b81600a546111369190612515565b34101561117b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610874565b610eaf3383611807565b6001600160a01b0382163314156111de5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610874565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112558484846114c0565b61126184848484611a1d565b61127d5760405162461bcd60e51b81526004016108749061246b565b50505050565b6007546001600160a01b031633146112ad5760405162461bcd60e51b815260040161087490612436565b600e55565b60098054610ed29061258e565b60606112cc826000541190565b6113305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610874565b600061133a611b2b565b9050600081511161135a5760405180602001604052806000815250611388565b8061136484611b3a565b6009604051602001611378939291906122de565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113b95760405162461bcd60e51b815260040161087490612436565b8051610eaf906009906020840190611f6f565b6007546001600160a01b031633146113f65760405162461bcd60e51b815260040161087490612436565b6001600160a01b03811661145b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610874565b610c02816119cb565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114cb82611821565b80519091506000906001600160a01b0316336001600160a01b031614806115025750336114f784610809565b6001600160a01b0316145b806115145750815161151490336106bc565b90508061157e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610874565b846001600160a01b031682600001516001600160a01b0316146115f25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610874565b6001600160a01b0384166116565760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610874565b6116666000848460000151611464565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061172b9085906124e9565b6000818152600360205260409020549091506001600160a01b03166117bd57611755816000541190565b156117bd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610eaf828260405180602001604052806000815250611c38565b6040805180820190915260008082526020820152611840826000541190565b61189f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610874565b60007f00000000000000000000000000000000000000000000000000000000000000008310611900576118f27f000000000000000000000000000000000000000000000000000000000000000084612534565b6118fd9060016124e9565b90505b825b81811061196a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561195757949350505050565b508061196281612577565b915050611902565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610874565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b1f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a619033908990889088906004016123a2565b602060405180830381600087803b158015611a7b57600080fd5b505af1925050508015611aab575060408051601f3d908101601f19168201909252611aa89181019061224c565b60015b611b05573d808015611ad9576040519150601f19603f3d011682016040523d82523d6000602084013e611ade565b606091505b508051611afd5760405162461bcd60e51b81526004016108749061246b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b23565b5060015b949350505050565b6060600880546107869061258e565b606081611b5e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b885780611b72816125c9565b9150611b819050600a83612501565b9150611b62565b60008167ffffffffffffffff811115611ba357611ba361263a565b6040519080825280601f01601f191660200182016040528015611bcd576020820181803683370190505b5090505b8415611b2357611be2600183612534565b9150611bef600a866125e4565b611bfa9060306124e9565b60f81b818381518110611c0f57611c0f612624565b60200101906001600160f81b031916908160001a905350611c31600a86612501565b9450611bd1565b6000546001600160a01b038416611c9b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610874565b611ca6816000541190565b15611cf35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610874565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d6e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610874565b60008311611dca5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610874565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e269087906124be565b6001600160801b03168152602001858360200151611e4491906124be565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f645760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f286000888488611a1d565b611f445760405162461bcd60e51b81526004016108749061246b565b81611f4e816125c9565b9250508080611f5c906125c9565b915050611edb565b5060008190556117ff565b828054611f7b9061258e565b90600052602060002090601f016020900481019282611f9d5760008555611fe3565b82601f10611fb657805160ff1916838001178555611fe3565b82800160010185558215611fe3579182015b82811115611fe3578251825591602001919060010190611fc8565b50610e6e9291505b80821115610e6e5760008155600101611feb565b600067ffffffffffffffff8084111561201a5761201a61263a565b604051601f8501601f19908116603f011681019082821181831017156120425761204261263a565b8160405280935085815286868601111561205b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208c57600080fd5b919050565b8035801515811461208c57600080fd5b6000602082840312156120b357600080fd5b61138882612075565b600080604083850312156120cf57600080fd5b6120d883612075565b91506120e660208401612075565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612075565b925061211b60208501612075565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612075565b935061215860208601612075565b925060408501359150606085013567ffffffffffffffff81111561217b57600080fd5b8501601f8101871361218c57600080fd5b61219b87823560208401611fff565b91505092959194509250565b600080604083850312156121ba57600080fd5b6121c383612075565b91506120e660208401612091565b600080604083850312156121e457600080fd5b6121ed83612075565b946020939093013593505050565b60006020828403121561220d57600080fd5b61138882612091565b60006020828403121561222857600080fd5b5035919050565b60006020828403121561224157600080fd5b813561138881612650565b60006020828403121561225e57600080fd5b815161138881612650565b60006020828403121561227b57600080fd5b813567ffffffffffffffff81111561229257600080fd5b8201601f810184136122a357600080fd5b611b2384823560208401611fff565b600081518084526122ca81602086016020860161254b565b601f01601f19169290920160200192915050565b6000845160206122f18285838a0161254b565b8551918401916123048184848a0161254b565b8554920191600090600181811c908083168061232157607f831692505b85831081141561233f57634e487b7160e01b85526022600452602485fd5b808015612353576001811461236457612391565b60ff19851688528388019550612391565b60008b81526020902060005b858110156123895781548a820152908401908801612370565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d5908301846122b2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612417578351835292840192918401916001016123fb565b50909695505050505050565b60208152600061138860208301846122b2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124e0576124e06125f8565b01949350505050565b600082198211156124fc576124fc6125f8565b500190565b6000826125105761251061260e565b500490565b600081600019048311821515161561252f5761252f6125f8565b500290565b600082821015612546576125466125f8565b500390565b60005b8381101561256657818101518382015260200161254e565b8381111561127d5750506000910152565b600081612586576125866125f8565b506000190190565b600181811c908216806125a257607f821691505b602082108114156125c357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125dd576125dd6125f8565b5060010190565b6000826125f3576125f361260e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0257600080fdfea2646970667358221220f687f9193317d1357a155d2f7159b52a13bb734cec3f6ce2810c439c6e3fa78864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80635c975abb11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461064b578063d5abeb011461066b578063da3ef23f14610681578063e985e9c5146106a1578063f2fde38b146106ea57600080fd5b8063a22cb465146105c0578063aa98e0c6146105e0578063b88d4fde146105f6578063bd32fb6614610616578063c66828621461063657600080fd5b8063715018a6116100f2578063715018a61461054f5780638da5cb5b1461056457806394354fd01461058257806395d89b4114610598578063a0712d68146105ad57600080fd5b80635c975abb146104e05780636352211e146104fa5780636c0360eb1461051a57806370a082311461052f57600080fd5b80632cdf09ba116101b157806342842e0e1161017557806342842e0e14610433578063438b63001461045357806344a0d68a146104805780634f6ccce7146104a057806355f804b3146104c057600080fd5b80632cdf09ba146103815780632f745c59146103a1578063388960a7146103c15780633ccfd60b146103fe578063408cbf941461041357600080fd5b806313faede6116101f857806313faede6146102db57806316c38b3c146102ff57806318160ddd1461031f57806318cae2691461033457806323b872dd1461036157600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461222f565b61070a565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610777565b6040516102569190612423565b34801561028d57600080fd5b506102a161029c366004612216565b610809565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046121d1565b610899565b005b3480156102e757600080fd5b506102f1600a5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a3660046121fb565b6109b1565b34801561032b57600080fd5b506000546102f1565b34801561034057600080fd5b506102f161034f3660046120a1565b600f6020526000908152604090205481565b34801561036d57600080fd5b506102d961037c3660046120ef565b6109ee565b34801561038d57600080fd5b506010546102a1906001600160a01b031681565b3480156103ad57600080fd5b506102f16103bc3660046121d1565b6109f9565b3480156103cd57600080fd5b506102d96103dc3660046120a1565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b34801561040a57600080fd5b506102d9610b67565b34801561041f57600080fd5b506102d961042e3660046121d1565b610c05565b34801561043f57600080fd5b506102d961044e3660046120ef565b610ce5565b34801561045f57600080fd5b5061047361046e3660046120a1565b610d00565b60405161025691906123df565b34801561048c57600080fd5b506102d961049b366004612216565b610de1565b3480156104ac57600080fd5b506102f16104bb366004612216565b610e10565b3480156104cc57600080fd5b506102d96104db366004612269565b610e72565b3480156104ec57600080fd5b50600d5461024a9060ff1681565b34801561050657600080fd5b506102a1610515366004612216565b610eb3565b34801561052657600080fd5b50610274610ec5565b34801561053b57600080fd5b506102f161054a3660046120a1565b610f53565b34801561055b57600080fd5b506102d9610fe4565b34801561057057600080fd5b506007546001600160a01b03166102a1565b34801561058e57600080fd5b506102f1600c5481565b3480156105a457600080fd5b5061027461101a565b6102d96105bb366004612216565b611029565b3480156105cc57600080fd5b506102d96105db3660046121a7565b611185565b3480156105ec57600080fd5b506102f1600e5481565b34801561060257600080fd5b506102d961061136600461212b565b61124a565b34801561062257600080fd5b506102d9610631366004612216565b611283565b34801561064257600080fd5b506102746112b2565b34801561065757600080fd5b50610274610666366004612216565b6112bf565b34801561067757600080fd5b506102f1600b5481565b34801561068d57600080fd5b506102d961069c366004612269565b61138f565b3480156106ad57600080fd5b5061024a6106bc3660046120bc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b506102d96107053660046120a1565b6113cc565b60006001600160e01b031982166380ac58cd60e01b148061073b57506001600160e01b03198216635b5e139f60e01b145b8061075657506001600160e01b0319821663780e9d6360e01b145b8061077157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107869061258e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b29061258e565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b6000610816826000541190565b61087d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a482610eb3565b9050806001600160a01b0316836001600160a01b031614156109135760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610874565b336001600160a01b038216148061092f575061092f81336106bc565b6109a15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610874565b6109ac838383611464565b505050565b6007546001600160a01b031633146109db5760405162461bcd60e51b815260040161087490612436565b600d805460ff1916911515919091179055565b6109ac8383836114c0565b6000610a0483610f53565b8210610a5d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610874565b600080549080805b83811015610b07576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ab857805192505b876001600160a01b0316836001600160a01b03161415610af45786841415610ae65750935061077192505050565b83610af0816125c9565b9450505b5080610aff816125c9565b915050610a65565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610874565b6007546001600160a01b03163314610b915760405162461bcd60e51b815260040161087490612436565b6000610ba56007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bef576040519150601f19603f3d011682016040523d82523d6000602084013e610bf4565b606091505b5050905080610c0257600080fd5b50565b80600081118015610c185750600c548111155b610c5b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610874565b600b5481600054610c6c91906124e9565b1115610cb15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610874565b6007546001600160a01b03163314610cdb5760405162461bcd60e51b815260040161087490612436565b6109ac8383611807565b6109ac8383836040518060200160405280600081525061124a565b60606000610d0d83610f53565b905060008167ffffffffffffffff811115610d2a57610d2a61263a565b604051908082528060200260200182016040528015610d53578160200160208202803683370190505b509050600160005b8381108015610d6c5750600b548211155b15610dd7576000610d7c83610eb3565b9050866001600160a01b0316816001600160a01b03161415610dc45782848381518110610dab57610dab612624565b602090810291909101015281610dc0816125c9565b9250505b82610dce816125c9565b93505050610d5b565b5090949350505050565b6007546001600160a01b03163314610e0b5760405162461bcd60e51b815260040161087490612436565b600a55565b600080548210610e6e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610874565b5090565b6007546001600160a01b03163314610e9c5760405162461bcd60e51b815260040161087490612436565b8051610eaf906008906020840190611f6f565b5050565b6000610ebe82611821565b5192915050565b60088054610ed29061258e565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061258e565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505081565b60006001600160a01b038216610fbf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610874565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461100e5760405162461bcd60e51b815260040161087490612436565b61101860006119cb565b565b6060600280546107869061258e565b8060008111801561103c5750600c548111155b61107f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610874565b600b548160005461109091906124e9565b11156110d55760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610874565b600d5460ff16156111285760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610874565b81600a546111369190612515565b34101561117b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610874565b610eaf3383611807565b6001600160a01b0382163314156111de5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610874565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112558484846114c0565b61126184848484611a1d565b61127d5760405162461bcd60e51b81526004016108749061246b565b50505050565b6007546001600160a01b031633146112ad5760405162461bcd60e51b815260040161087490612436565b600e55565b60098054610ed29061258e565b60606112cc826000541190565b6113305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610874565b600061133a611b2b565b9050600081511161135a5760405180602001604052806000815250611388565b8061136484611b3a565b6009604051602001611378939291906122de565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113b95760405162461bcd60e51b815260040161087490612436565b8051610eaf906009906020840190611f6f565b6007546001600160a01b031633146113f65760405162461bcd60e51b815260040161087490612436565b6001600160a01b03811661145b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610874565b610c02816119cb565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114cb82611821565b80519091506000906001600160a01b0316336001600160a01b031614806115025750336114f784610809565b6001600160a01b0316145b806115145750815161151490336106bc565b90508061157e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610874565b846001600160a01b031682600001516001600160a01b0316146115f25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610874565b6001600160a01b0384166116565760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610874565b6116666000848460000151611464565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061172b9085906124e9565b6000818152600360205260409020549091506001600160a01b03166117bd57611755816000541190565b156117bd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610eaf828260405180602001604052806000815250611c38565b6040805180820190915260008082526020820152611840826000541190565b61189f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610874565b60007f00000000000000000000000000000000000000000000000000000000000000148310611900576118f27f000000000000000000000000000000000000000000000000000000000000001484612534565b6118fd9060016124e9565b90505b825b81811061196a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561195757949350505050565b508061196281612577565b915050611902565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610874565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b1f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a619033908990889088906004016123a2565b602060405180830381600087803b158015611a7b57600080fd5b505af1925050508015611aab575060408051601f3d908101601f19168201909252611aa89181019061224c565b60015b611b05573d808015611ad9576040519150601f19603f3d011682016040523d82523d6000602084013e611ade565b606091505b508051611afd5760405162461bcd60e51b81526004016108749061246b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b23565b5060015b949350505050565b6060600880546107869061258e565b606081611b5e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b885780611b72816125c9565b9150611b819050600a83612501565b9150611b62565b60008167ffffffffffffffff811115611ba357611ba361263a565b6040519080825280601f01601f191660200182016040528015611bcd576020820181803683370190505b5090505b8415611b2357611be2600183612534565b9150611bef600a866125e4565b611bfa9060306124e9565b60f81b818381518110611c0f57611c0f612624565b60200101906001600160f81b031916908160001a905350611c31600a86612501565b9450611bd1565b6000546001600160a01b038416611c9b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610874565b611ca6816000541190565b15611cf35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610874565b7f0000000000000000000000000000000000000000000000000000000000000014831115611d6e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610874565b60008311611dca5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610874565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e269087906124be565b6001600160801b03168152602001858360200151611e4491906124be565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f645760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f286000888488611a1d565b611f445760405162461bcd60e51b81526004016108749061246b565b81611f4e816125c9565b9250508080611f5c906125c9565b915050611edb565b5060008190556117ff565b828054611f7b9061258e565b90600052602060002090601f016020900481019282611f9d5760008555611fe3565b82601f10611fb657805160ff1916838001178555611fe3565b82800160010185558215611fe3579182015b82811115611fe3578251825591602001919060010190611fc8565b50610e6e9291505b80821115610e6e5760008155600101611feb565b600067ffffffffffffffff8084111561201a5761201a61263a565b604051601f8501601f19908116603f011681019082821181831017156120425761204261263a565b8160405280935085815286868601111561205b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208c57600080fd5b919050565b8035801515811461208c57600080fd5b6000602082840312156120b357600080fd5b61138882612075565b600080604083850312156120cf57600080fd5b6120d883612075565b91506120e660208401612075565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612075565b925061211b60208501612075565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612075565b935061215860208601612075565b925060408501359150606085013567ffffffffffffffff81111561217b57600080fd5b8501601f8101871361218c57600080fd5b61219b87823560208401611fff565b91505092959194509250565b600080604083850312156121ba57600080fd5b6121c383612075565b91506120e660208401612091565b600080604083850312156121e457600080fd5b6121ed83612075565b946020939093013593505050565b60006020828403121561220d57600080fd5b61138882612091565b60006020828403121561222857600080fd5b5035919050565b60006020828403121561224157600080fd5b813561138881612650565b60006020828403121561225e57600080fd5b815161138881612650565b60006020828403121561227b57600080fd5b813567ffffffffffffffff81111561229257600080fd5b8201601f810184136122a357600080fd5b611b2384823560208401611fff565b600081518084526122ca81602086016020860161254b565b601f01601f19169290920160200192915050565b6000845160206122f18285838a0161254b565b8551918401916123048184848a0161254b565b8554920191600090600181811c908083168061232157607f831692505b85831081141561233f57634e487b7160e01b85526022600452602485fd5b808015612353576001811461236457612391565b60ff19851688528388019550612391565b60008b81526020902060005b858110156123895781548a820152908401908801612370565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d5908301846122b2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612417578351835292840192918401916001016123fb565b50909695505050505050565b60208152600061138860208301846122b2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124e0576124e06125f8565b01949350505050565b600082198211156124fc576124fc6125f8565b500190565b6000826125105761251061260e565b500490565b600081600019048311821515161561252f5761252f6125f8565b500290565b600082821015612546576125466125f8565b500390565b60005b8381101561256657818101518382015260200161254e565b8381111561127d5750506000910152565b600081612586576125866125f8565b506000190190565b600181811c908216806125a257607f821691505b602082108114156125c357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125dd576125dd6125f8565b5060010190565b6000826125f3576125f361260e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0257600080fdfea2646970667358221220f687f9193317d1357a155d2f7159b52a13bb734cec3f6ce2810c439c6e3fa78864736f6c63430008070033

Deployed Bytecode Sourcemap

41722:3806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29335:372;;;;;;;;;;-1:-1:-1;29335:372:0;;;;;:::i;:::-;;:::i;:::-;;;7992:14:1;;7985:22;7967:41;;7955:2;7940:18;29335:372:0;;;;;;;;31140:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32701:214::-;;;;;;;;;;-1:-1:-1;32701:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6653:32:1;;;6635:51;;6623:2;6608:18;32701:214:0;6489:203:1;32222:413:0;;;;;;;;;;-1:-1:-1;32222:413:0;;;;;:::i;:::-;;:::i;:::-;;41873:32;;;;;;;;;;;;;;;;;;;8165:25:1;;;8153:2;8138:18;41873:32:0;8019:177:1;45181:77:0;;;;;;;;;;-1:-1:-1;45181:77:0;;;;;:::i;:::-;;:::i;27776:100::-;;;;;;;;;;-1:-1:-1;27829:7:0;27856:12;27776:100;;42065:55;;;;;;;;;;-1:-1:-1;42065:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;33577:162;;;;;;;;;;-1:-1:-1;33577:162:0;;;;;:::i;:::-;;:::i;42127:22::-;;;;;;;;;;-1:-1:-1;42127:22:0;;;;-1:-1:-1;;;;;42127:22:0;;;28440:823;;;;;;;;;;-1:-1:-1;28440:823:0;;;;;:::i;:::-;;:::i;45090:85::-;;;;;;;;;;-1:-1:-1;45090:85:0;;;;;:::i;:::-;45142:7;:27;;-1:-1:-1;;;;;;45142:27:0;-1:-1:-1;;;;;45142:27:0;;;;;;;;;;45090:85;45264:137;;;;;;;;;;;;;:::i;43072:138::-;;;;;;;;;;-1:-1:-1;43072:138:0;;;;;:::i;:::-;;:::i;33810:177::-;;;;;;;;;;-1:-1:-1;33810:177:0;;;;;:::i;:::-;;:::i;43216:635::-;;;;;;;;;;-1:-1:-1;43216:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45010:74::-;;;;;;;;;;-1:-1:-1;45010:74:0;;;;;:::i;:::-;;:::i;27953:187::-;;;;;;;;;;-1:-1:-1;27953:187:0;;;;;:::i;:::-;;:::i;44619:104::-;;;;;;;;;;-1:-1:-1;44619:104:0;;;;;:::i;:::-;;:::i;41992:25::-;;;;;;;;;;-1:-1:-1;41992:25:0;;;;;;;;30949:124;;;;;;;;;;-1:-1:-1;30949:124:0;;;;;:::i;:::-;;:::i;41801:21::-;;;;;;;;;;;;;:::i;29771:221::-;;;;;;;;;;-1:-1:-1;29771:221:0;;;;;:::i;:::-;;:::i;4711:103::-;;;;;;;;;;;;;:::i;4060:87::-;;;;;;;;;;-1:-1:-1;4133:6:0;;-1:-1:-1;;;;;4133:6:0;4060:87;;41947:38;;;;;;;;;;;;;;;;31309:104;;;;;;;;;;;;;:::i;42817:247::-;;;;;;:::i;:::-;;:::i;32987:288::-;;;;;;;;;;-1:-1:-1;32987:288:0;;;;;:::i;:::-;;:::i;42026:34::-;;;;;;;;;;;;;;;;34058:355;;;;;;;;;;-1:-1:-1;34058:355:0;;;;;:::i;:::-;;:::i;44888:116::-;;;;;;;;;;-1:-1:-1;44888:116:0;;;;;:::i;:::-;;:::i;41827:37::-;;;;;;;;;;;;;:::i;43969:642::-;;;;;;;;;;-1:-1:-1;43969:642:0;;;;;:::i;:::-;;:::i;41910:32::-;;;;;;;;;;;;;;;;44731:151;;;;;;;;;;-1:-1:-1;44731:151:0;;;;;:::i;:::-;;:::i;33346:164::-;;;;;;;;;;-1:-1:-1;33346:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33467:25:0;;;33443:4;33467:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33346:164;4969:201;;;;;;;;;;-1:-1:-1;4969:201:0;;;;;:::i;:::-;;:::i;29335:372::-;29437:4;-1:-1:-1;;;;;;29474:40:0;;-1:-1:-1;;;29474:40:0;;:105;;-1:-1:-1;;;;;;;29531:48:0;;-1:-1:-1;;;29531:48:0;29474:105;:172;;;-1:-1:-1;;;;;;;29596:50:0;;-1:-1:-1;;;29596:50:0;29474:172;:225;;;-1:-1:-1;;;;;;;;;;16601:40:0;;;29663:36;29454:245;29335:372;-1:-1:-1;;29335:372:0:o;31140:100::-;31194:13;31227:5;31220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31140:100;:::o;32701:214::-;32769:7;32797:16;32805:7;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;32797:16;32789:74;;;;-1:-1:-1;;;32789:74:0;;17546:2:1;32789:74:0;;;17528:21:1;17585:2;17565:18;;;17558:30;17624:34;17604:18;;;17597:62;-1:-1:-1;;;17675:18:1;;;17668:43;17728:19;;32789:74:0;;;;;;;;;-1:-1:-1;32883:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32883:24:0;;32701:214::o;32222:413::-;32295:13;32311:24;32327:7;32311:15;:24::i;:::-;32295:40;;32360:5;-1:-1:-1;;;;;32354:11:0;:2;-1:-1:-1;;;;;32354:11:0;;;32346:58;;;;-1:-1:-1;;;32346:58:0;;14379:2:1;32346:58:0;;;14361:21:1;14418:2;14398:18;;;14391:30;14457:34;14437:18;;;14430:62;-1:-1:-1;;;14508:18:1;;;14501:32;14550:19;;32346:58:0;14177:398:1;32346:58:0;2864:10;-1:-1:-1;;;;;32439:21:0;;;;:62;;-1:-1:-1;32464:37:0;32481:5;2864:10;33346:164;:::i;32464:37::-;32417:169;;;;-1:-1:-1;;;32417:169:0;;11231:2:1;32417:169:0;;;11213:21:1;11270:2;11250:18;;;11243:30;11309:34;11289:18;;;11282:62;11380:27;11360:18;;;11353:55;11425:19;;32417:169:0;11029:421:1;32417:169:0;32599:28;32608:2;32612:7;32621:5;32599:8;:28::i;:::-;32284:351;32222:413;;:::o;45181:77::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45237:6:::1;:15:::0;;-1:-1:-1;;45237:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45181:77::o;33577:162::-;33703:28;33713:4;33719:2;33723:7;33703:9;:28::i;28440:823::-;28529:7;28565:16;28575:5;28565:9;:16::i;:::-;28557:5;:24;28549:71;;;;-1:-1:-1;;;28549:71:0;;8851:2:1;28549:71:0;;;8833:21:1;8890:2;8870:18;;;8863:30;8929:34;8909:18;;;8902:62;-1:-1:-1;;;8980:18:1;;;8973:32;9022:19;;28549:71:0;8649:398:1;28549:71:0;28631:22;27856:12;;;28631:22;;28763:426;28787:14;28783:1;:18;28763:426;;;28823:31;28857:14;;;:11;:14;;;;;;;;;28823:48;;;;;;;;;-1:-1:-1;;;;;28823:48:0;;;;;-1:-1:-1;;;28823:48:0;;;;;;;;;;;;28890:28;28886:103;;28959:14;;;-1:-1:-1;28886:103:0;29028:5;-1:-1:-1;;;;;29007:26:0;:17;-1:-1:-1;;;;;29007:26:0;;29003:175;;;29073:5;29058:11;:20;29054:77;;;-1:-1:-1;29110:1:0;-1:-1:-1;29103:8:0;;-1:-1:-1;;;29103:8:0;29054:77;29149:13;;;;:::i;:::-;;;;29003:175;-1:-1:-1;28803:3:0;;;;:::i;:::-;;;;28763:426;;;-1:-1:-1;29199:56:0;;-1:-1:-1;;;29199:56:0;;16715:2:1;29199:56:0;;;16697:21:1;16754:2;16734:18;;;16727:30;16793:34;16773:18;;;16766:62;-1:-1:-1;;;16844:18:1;;;16837:44;16898:19;;29199:56:0;16513:410:1;45264:137:0;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45309:7:::1;45330;4133:6:::0;;-1:-1:-1;;;;;4133:6:0;;4060:87;45330:7:::1;-1:-1:-1::0;;;;;45322:21:0::1;45351;45322:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45308:69;;;45392:2;45384:11;;;::::0;::::1;;45301:100;45264:137::o:0;43072:138::-;43147:11;42655:1;42641:11;:15;:52;;;;;42675:18;;42660:11;:33;;42641:52;42633:85;;;;-1:-1:-1;;;42633:85:0;;10072:2:1;42633:85:0;;;10054:21:1;10111:2;10091:18;;;10084:30;-1:-1:-1;;;10130:18:1;;;10123:50;10190:18;;42633:85:0;9870:344:1;42633:85:0;42763:9;;42748:11;42733:12;;:26;;;;:::i;:::-;:39;;42725:72;;;;-1:-1:-1;;;42725:72:0;;14782:2:1;42725:72:0;;;14764:21:1;14821:2;14801:18;;;14794:30;-1:-1:-1;;;14840:18:1;;;14833:50;14900:18;;42725:72:0;14580:344:1;42725:72:0;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23:::1;4272:68;;;;-1:-1:-1::0;;;4272:68:0::1;;;;;;;:::i;:::-;43177:27:::2;43187:3;43192:11;43177:9;:27::i;33810:177::-:0;33940:39;33957:4;33963:2;33967:7;33940:39;;;;;;;;;;;;:16;:39::i;43216:635::-;43291:16;43319:23;43345:17;43355:6;43345:9;:17::i;:::-;43319:43;;43369:30;43416:15;43402:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43402:30:0;-1:-1:-1;43369:63:0;-1:-1:-1;43464:1:0;43439:22;43508:309;43533:15;43515;:33;:64;;;;;43570:9;;43552:14;:27;;43515:64;43508:309;;;43590:25;43618:23;43626:14;43618:7;:23::i;:::-;43590:51;;43677:6;-1:-1:-1;;;;;43656:27:0;:17;-1:-1:-1;;;;;43656:27:0;;43652:131;;;43729:14;43696:13;43710:15;43696:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43756:17;;;;:::i;:::-;;;;43652:131;43793:16;;;;:::i;:::-;;;;43581:236;43508:309;;;-1:-1:-1;43832:13:0;;43216:635;-1:-1:-1;;;;43216:635:0:o;45010:74::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45066:4:::1;:12:::0;45010:74::o;27953:187::-;28020:7;27856:12;;28048:5;:21;28040:69;;;;-1:-1:-1;;;28040:69:0;;10421:2:1;28040:69:0;;;10403:21:1;10460:2;10440:18;;;10433:30;10499:34;10479:18;;;10472:62;-1:-1:-1;;;10550:18:1;;;10543:33;10593:19;;28040:69:0;10219:399:1;28040:69:0;-1:-1:-1;28127:5:0;27953:187::o;44619:104::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;44694:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44619:104:::0;:::o;30949:124::-;31013:7;31040:20;31052:7;31040:11;:20::i;:::-;:25;;30949:124;-1:-1:-1;;30949:124:0:o;41801:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29771:221::-;29835:7;-1:-1:-1;;;;;29863:19:0;;29855:75;;;;-1:-1:-1;;;29855:75:0;;11657:2:1;29855:75:0;;;11639:21:1;11696:2;11676:18;;;11669:30;11735:34;11715:18;;;11708:62;-1:-1:-1;;;11786:18:1;;;11779:41;11837:19;;29855:75:0;11455:407:1;29855:75:0;-1:-1:-1;;;;;;29956:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29956:27:0;;29771:221::o;4711:103::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;4776:30:::1;4803:1;4776:18;:30::i;:::-;4711:103::o:0;31309:104::-;31365:13;31398:7;31391:14;;;;;:::i;42817:247::-;42882:11;42655:1;42641:11;:15;:52;;;;;42675:18;;42660:11;:33;;42641:52;42633:85;;;;-1:-1:-1;;;42633:85:0;;10072:2:1;42633:85:0;;;10054:21:1;10111:2;10091:18;;;10084:30;-1:-1:-1;;;10130:18:1;;;10123:50;10190:18;;42633:85:0;9870:344:1;42633:85:0;42763:9;;42748:11;42733:12;;:26;;;;:::i;:::-;:39;;42725:72;;;;-1:-1:-1;;;42725:72:0;;14782:2:1;42725:72:0;;;14764:21:1;14821:2;14801:18;;;14794:30;-1:-1:-1;;;14840:18:1;;;14833:50;14900:18;;42725:72:0;14580:344:1;42725:72:0;42911:6:::1;::::0;::::1;;42910:7;42902:43;;;::::0;-1:-1:-1;;;42902:43:0;;12837:2:1;42902:43:0::1;::::0;::::1;12819:21:1::0;12876:2;12856:18;;;12849:30;12915:25;12895:18;;;12888:53;12958:18;;42902:43:0::1;12635:347:1::0;42902:43:0::1;42980:11;42973:4;;:18;;;;:::i;:::-;42960:9;:31;;42952:63;;;::::0;-1:-1:-1;;;42952:63:0;;18363:2:1;42952:63:0::1;::::0;::::1;18345:21:1::0;18402:2;18382:18;;;18375:30;-1:-1:-1;;;18421:18:1;;;18414:49;18480:18;;42952:63:0::1;18161:343:1::0;42952:63:0::1;43024:34;43034:10;43046:11;43024:9;:34::i;32987:288::-:0;-1:-1:-1;;;;;33082:24:0;;2864:10;33082:24;;33074:63;;;;-1:-1:-1;;;33074:63:0;;13605:2:1;33074:63:0;;;13587:21:1;13644:2;13624:18;;;13617:30;13683:28;13663:18;;;13656:56;13729:18;;33074:63:0;13403:350:1;33074:63:0;2864:10;33150:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33150:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33150:53:0;;;;;;;;;;33219:48;;7967:41:1;;;33150:42:0;;2864:10;33219:48;;7940:18:1;33219:48:0;;;;;;;32987:288;;:::o;34058:355::-;34217:28;34227:4;34233:2;34237:7;34217:9;:28::i;:::-;34278:48;34301:4;34307:2;34311:7;34320:5;34278:22;:48::i;:::-;34256:149;;;;-1:-1:-1;;;34256:149:0;;;;;;;:::i;:::-;34058:355;;;;:::o;44888:116::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;44966:19:::1;:32:::0;44888:116::o;41827:37::-;;;;;;;:::i;43969:642::-;44087:13;44140:16;44148:7;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;44140:16;44118:113;;;;-1:-1:-1;;;44118:113:0;;13189:2:1;44118:113:0;;;13171:21:1;13228:2;13208:18;;;13201:30;13267:34;13247:18;;;13240:62;-1:-1:-1;;;13318:18:1;;;13311:45;13373:19;;44118:113:0;12987:411:1;44118:113:0;44244:28;44275:10;:8;:10::i;:::-;44244:41;;44347:1;44322:14;44316:28;:32;:287;;;;;;;;;;;;;;;;;44440:14;44481:18;:7;:16;:18::i;:::-;44526:13;44397:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44316:287;44296:307;43969:642;-1:-1:-1;;;43969:642:0:o;44731:151::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;44841:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4969:201::-:0;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5058:22:0;::::1;5050:73;;;::::0;-1:-1:-1;;;5050:73:0;;9254:2:1;5050:73:0::1;::::0;::::1;9236:21:1::0;9293:2;9273:18;;;9266:30;9332:34;9312:18;;;9305:62;-1:-1:-1;;;9383:18:1;;;9376:36;9429:19;;5050:73:0::1;9052:402:1::0;5050:73:0::1;5134:28;5153:8;5134:18;:28::i;38794:196::-:0;38909:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38909:29:0;-1:-1:-1;;;;;38909:29:0;;;;;;;;;38954:28;;38909:24;;38954:28;;;;;;;38794:196;;;:::o;36893:1783::-;37008:35;37046:20;37058:7;37046:11;:20::i;:::-;37121:18;;37008:58;;-1:-1:-1;37079:22:0;;-1:-1:-1;;;;;37105:34:0;2864:10;-1:-1:-1;;;;;37105:34:0;;:87;;;-1:-1:-1;2864:10:0;37156:20;37168:7;37156:11;:20::i;:::-;-1:-1:-1;;;;;37156:36:0;;37105:87;:154;;;-1:-1:-1;37226:18:0;;37209:50;;2864:10;33346:164;:::i;37209:50::-;37079:181;;37281:17;37273:80;;;;-1:-1:-1;;;37273:80:0;;13960:2:1;37273:80:0;;;13942:21:1;13999:2;13979:18;;;13972:30;14038:34;14018:18;;;14011:62;-1:-1:-1;;;14089:18:1;;;14082:48;14147:19;;37273:80:0;13758:414:1;37273:80:0;37396:4;-1:-1:-1;;;;;37374:26:0;:13;:18;;;-1:-1:-1;;;;;37374:26:0;;37366:77;;;;-1:-1:-1;;;37366:77:0;;12069:2:1;37366:77:0;;;12051:21:1;12108:2;12088:18;;;12081:30;12147:34;12127:18;;;12120:62;-1:-1:-1;;;12198:18:1;;;12191:36;12244:19;;37366:77:0;11867:402:1;37366:77:0;-1:-1:-1;;;;;37462:16:0;;37454:66;;;;-1:-1:-1;;;37454:66:0;;10825:2:1;37454:66:0;;;10807:21:1;10864:2;10844:18;;;10837:30;10903:34;10883:18;;;10876:62;-1:-1:-1;;;10954:18:1;;;10947:35;10999:19;;37454:66:0;10623:401:1;37454:66:0;37641:49;37658:1;37662:7;37671:13;:18;;;37641:8;:49::i;:::-;-1:-1:-1;;;;;37895:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37895:31:0;;;-1:-1:-1;;;;;37895:31:0;;;-1:-1:-1;;37895:31:0;;;;;;;37941:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37941:29:0;;;;;;;;;;;;;38017:43;;;;;;;;;;38043:15;38017:43;;;;;;;;;;37994:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;37994:66:0;;;;;;;-1:-1:-1;;;37994:66:0;;;;;;;;;;;;37895:18;38322:11;;37994:20;;38322:11;:::i;:::-;38389:1;38348:24;;;:11;:24;;;;;:29;38300:33;;-1:-1:-1;;;;;;38348:29:0;38344:227;;38412:20;38420:11;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;38412:20;38408:152;;;38480:64;;;;;;;;38495:18;;-1:-1:-1;;;;;38480:64:0;;;;;;38515:28;;;;38480:64;;;;;;;;;;-1:-1:-1;38453:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;38453:91:0;-1:-1:-1;;;;;;38453:91:0;;;;;;;;;;;;38408:152;38607:7;38603:2;-1:-1:-1;;;;;38588:27:0;38597:4;-1:-1:-1;;;;;38588:27:0;;;;;;;;;;;38626:42;36997:1679;;;36893:1783;;;:::o;34787:104::-;34856:27;34866:2;34870:8;34856:27;;;;;;;;;;;;:9;:27::i;30237:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;30340:16:0;30348:7;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;30340:16;30332:71;;;;-1:-1:-1;;;30332:71:0;;9661:2:1;30332:71:0;;;9643:21:1;9700:2;9680:18;;;9673:30;9739:34;9719:18;;;9712:62;-1:-1:-1;;;9790:18:1;;;9783:40;9840:19;;30332:71:0;9459:406:1;30332:71:0;30416:26;30468:12;30457:7;:23;30453:103;;30518:22;30528:12;30518:7;:22;:::i;:::-;:26;;30543:1;30518:26;:::i;:::-;30497:47;;30453:103;30588:7;30568:242;30605:18;30597:4;:26;30568:242;;30648:31;30682:17;;;:11;:17;;;;;;;;;30648:51;;;;;;;;;-1:-1:-1;;;;;30648:51:0;;;;;-1:-1:-1;;;30648:51:0;;;;;;;;;;;;30718:28;30714:85;;30774:9;30237:650;-1:-1:-1;;;;30237:650:0:o;30714:85::-;-1:-1:-1;30625:6:0;;;;:::i;:::-;;;;30568:242;;;-1:-1:-1;30822:57:0;;-1:-1:-1;;;30822:57:0;;17130:2:1;30822:57:0;;;17112:21:1;17169:2;17149:18;;;17142:30;17208:34;17188:18;;;17181:62;-1:-1:-1;;;17259:18:1;;;17252:45;17314:19;;30822:57:0;16928:411:1;5330:191:0;5423:6;;;-1:-1:-1;;;;;5440:17:0;;;-1:-1:-1;;;;;;5440:17:0;;;;;;;5473:40;;5423:6;;;5440:17;5423:6;;5473:40;;5404:16;;5473:40;5393:128;5330:191;:::o;39555:804::-;39710:4;-1:-1:-1;;;;;39731:13:0;;6671:20;6719:8;39727:625;;39767:72;;-1:-1:-1;;;39767:72:0;;-1:-1:-1;;;;;39767:36:0;;;;;:72;;2864:10;;39818:4;;39824:7;;39833:5;;39767:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39767:72:0;;;;;;;;-1:-1:-1;;39767:72:0;;;;;;;;;;;;:::i;:::-;;;39763:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40013:13:0;;40009:273;;40056:61;;-1:-1:-1;;;40056:61:0;;;;;;;:::i;40009:273::-;40232:6;40226:13;40217:6;40213:2;40209:15;40202:38;39763:534;-1:-1:-1;;;;;;39890:55:0;-1:-1:-1;;;39890:55:0;;-1:-1:-1;39883:62:0;;39727:625;-1:-1:-1;40336:4:0;39727:625;39555:804;;;;;;:::o;43853:108::-;43913:13;43946:7;43939:14;;;;;:::i;346:723::-;402:13;623:10;619:53;;-1:-1:-1;;650:10:0;;;;;;;;;;;;-1:-1:-1;;;650:10:0;;;;;346:723::o;619:53::-;697:5;682:12;738:78;745:9;;738:78;;771:8;;;;:::i;:::-;;-1:-1:-1;794:10:0;;-1:-1:-1;802:2:0;794:10;;:::i;:::-;;;738:78;;;826:19;858:6;848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;848:17:0;;826:39;;876:154;883:10;;876:154;;910:11;920:1;910:11;;:::i;:::-;;-1:-1:-1;979:10:0;987:2;979:5;:10;:::i;:::-;966:24;;:2;:24;:::i;:::-;953:39;;936:6;943;936:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;936:56:0;;;;;;;;-1:-1:-1;1007:11:0;1016:2;1007:11;;:::i;:::-;;;876:154;;35168:1471;35291:20;35314:12;-1:-1:-1;;;;;35345:16:0;;35337:62;;;;-1:-1:-1;;;35337:62:0;;16313:2:1;35337:62:0;;;16295:21:1;16352:2;16332:18;;;16325:30;16391:34;16371:18;;;16364:62;-1:-1:-1;;;16442:18:1;;;16435:31;16483:19;;35337:62:0;16111:397:1;35337:62:0;35544:21;35552:12;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;35544:21;35543:22;35535:64;;;;-1:-1:-1;;;35535:64:0;;15955:2:1;35535:64:0;;;15937:21:1;15994:2;15974:18;;;15967:30;16033:31;16013:18;;;16006:59;16082:18;;35535:64:0;15753:353:1;35535:64:0;35630:12;35618:8;:24;;35610:71;;;;-1:-1:-1;;;35610:71:0;;17960:2:1;35610:71:0;;;17942:21:1;17999:2;17979:18;;;17972:30;18038:34;18018:18;;;18011:62;-1:-1:-1;;;18089:18:1;;;18082:32;18131:19;;35610:71:0;17758:398:1;35610:71:0;35711:1;35700:8;:12;35692:60;;;;-1:-1:-1;;;35692:60:0;;15131:2:1;35692:60:0;;;15113:21:1;15170:2;15150:18;;;15143:30;15209:34;15189:18;;;15182:62;-1:-1:-1;;;15260:18:1;;;15253:33;15303:19;;35692:60:0;14929:399:1;35692:60:0;-1:-1:-1;;;;;35872:16:0;;35839:30;35872:16;;;:12;:16;;;;;;;;;35839:49;;;;;;;;;-1:-1:-1;;;;;35839:49:0;;;;;-1:-1:-1;;;35839:49:0;;;;;;;;;;;35918:135;;;;;;;;35944:19;;35839:49;;35918:135;;;35944:39;;35974:8;;35944:39;:::i;:::-;-1:-1:-1;;;;;35918:135:0;;;;;36033:8;35998:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35918:135:0;;;;;;-1:-1:-1;;;;;35899:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;35899:154:0;;;;;;;;;;;;36092:43;;;;;;;;;;;36118:15;36092:43;;;;;;;;36064:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36064:71:0;-1:-1:-1;;;;;;36064:71:0;;;;;;;;;;;;;;;;;;36076:12;;36196:325;36220:8;36216:1;:12;36196:325;;;36255:38;;36280:12;;-1:-1:-1;;;;;36255:38:0;;;36272:1;;36255:38;;36272:1;;36255:38;36334:59;36365:1;36369:2;36373:12;36387:5;36334:22;:59::i;:::-;36308:172;;;;-1:-1:-1;;;36308:172:0;;;;;;;:::i;:::-;36495:14;;;;:::i;:::-;;;;36230:3;;;;;:::i;:::-;;;;36196:325;;;-1:-1:-1;36533:12:0;:27;;;36571:60;34058:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:257::-;4526:3;4564:5;4558:12;4591:6;4586:3;4579:19;4607:63;4663:6;4656:4;4651:3;4647:14;4640:4;4633:5;4629:16;4607:63;:::i;:::-;4724:2;4703:15;-1:-1:-1;;4699:29:1;4690:39;;;;4731:4;4686:50;;4485:257;-1:-1:-1;;4485:257:1:o;4747:1527::-;4971:3;5009:6;5003:13;5035:4;5048:51;5092:6;5087:3;5082:2;5074:6;5070:15;5048:51;:::i;:::-;5162:13;;5121:16;;;;5184:55;5162:13;5121:16;5206:15;;;5184:55;:::i;:::-;5328:13;;5261:20;;;5301:1;;5388;5410:18;;;;5463;;;;5490:93;;5568:4;5558:8;5554:19;5542:31;;5490:93;5631:2;5621:8;5618:16;5598:18;5595:40;5592:167;;;-1:-1:-1;;;5658:33:1;;5714:4;5711:1;5704:15;5744:4;5665:3;5732:17;5592:167;5775:18;5802:110;;;;5926:1;5921:328;;;;5768:481;;5802:110;-1:-1:-1;;5837:24:1;;5823:39;;5882:20;;;;-1:-1:-1;5802:110:1;;5921:328;18764:1;18757:14;;;18801:4;18788:18;;6016:1;6030:169;6044:8;6041:1;6038:15;6030:169;;;6126:14;;6111:13;;;6104:37;6169:16;;;;6061:10;;6030:169;;;6034:3;;6230:8;6223:5;6219:20;6212:27;;5768:481;-1:-1:-1;6265:3:1;;4747:1527;-1:-1:-1;;;;;;;;;;;4747:1527:1:o;6697:488::-;-1:-1:-1;;;;;6966:15:1;;;6948:34;;7018:15;;7013:2;6998:18;;6991:43;7065:2;7050:18;;7043:34;;;7113:3;7108:2;7093:18;;7086:31;;;6891:4;;7134:45;;7159:19;;7151:6;7134:45;:::i;:::-;7126:53;6697:488;-1:-1:-1;;;;;;6697:488:1:o;7190:632::-;7361:2;7413:21;;;7483:13;;7386:18;;;7505:22;;;7332:4;;7361:2;7584:15;;;;7558:2;7543:18;;;7332:4;7627:169;7641:6;7638:1;7635:13;7627:169;;;7702:13;;7690:26;;7771:15;;;;7736:12;;;;7663:1;7656:9;7627:169;;;-1:-1:-1;7813:3:1;;7190:632;-1:-1:-1;;;;;;7190:632:1:o;8425:219::-;8574:2;8563:9;8556:21;8537:4;8594:44;8634:2;8623:9;8619:18;8611:6;8594:44;:::i;12274:356::-;12476:2;12458:21;;;12495:18;;;12488:30;12554:34;12549:2;12534:18;;12527:62;12621:2;12606:18;;12274:356::o;15333:415::-;15535:2;15517:21;;;15574:2;15554:18;;;15547:30;15613:34;15608:2;15593:18;;15586:62;-1:-1:-1;;;15679:2:1;15664:18;;15657:49;15738:3;15723:19;;15333:415::o;18817:253::-;18857:3;-1:-1:-1;;;;;18946:2:1;18943:1;18939:10;18976:2;18973:1;18969:10;19007:3;19003:2;18999:12;18994:3;18991:21;18988:47;;;19015:18;;:::i;:::-;19051:13;;18817:253;-1:-1:-1;;;;18817:253:1:o;19075:128::-;19115:3;19146:1;19142:6;19139:1;19136:13;19133:39;;;19152:18;;:::i;:::-;-1:-1:-1;19188:9:1;;19075:128::o;19208:120::-;19248:1;19274;19264:35;;19279:18;;:::i;:::-;-1:-1:-1;19313:9:1;;19208:120::o;19333:168::-;19373:7;19439:1;19435;19431:6;19427:14;19424:1;19421:21;19416:1;19409:9;19402:17;19398:45;19395:71;;;19446:18;;:::i;:::-;-1:-1:-1;19486:9:1;;19333:168::o;19506:125::-;19546:4;19574:1;19571;19568:8;19565:34;;;19579:18;;:::i;:::-;-1:-1:-1;19616:9:1;;19506:125::o;19636:258::-;19708:1;19718:113;19732:6;19729:1;19726:13;19718:113;;;19808:11;;;19802:18;19789:11;;;19782:39;19754:2;19747:10;19718:113;;;19849:6;19846:1;19843:13;19840:48;;;-1:-1:-1;;19884:1:1;19866:16;;19859:27;19636:258::o;19899:136::-;19938:3;19966:5;19956:39;;19975:18;;:::i;:::-;-1:-1:-1;;;20011:18:1;;19899:136::o;20040:380::-;20119:1;20115:12;;;;20162;;;20183:61;;20237:4;20229:6;20225:17;20215:27;;20183:61;20290:2;20282:6;20279:14;20259:18;20256:38;20253:161;;;20336:10;20331:3;20327:20;20324:1;20317:31;20371:4;20368:1;20361:15;20399:4;20396:1;20389:15;20253:161;;20040:380;;;:::o;20425:135::-;20464:3;-1:-1:-1;;20485:17:1;;20482:43;;;20505:18;;:::i;:::-;-1:-1:-1;20552:1:1;20541:13;;20425:135::o;20565:112::-;20597:1;20623;20613:35;;20628:18;;:::i;:::-;-1:-1:-1;20662:9:1;;20565:112::o;20682:127::-;20743:10;20738:3;20734:20;20731:1;20724:31;20774:4;20771:1;20764:15;20798:4;20795:1;20788:15;20814:127;20875:10;20870:3;20866:20;20863:1;20856:31;20906:4;20903:1;20896:15;20930:4;20927:1;20920:15;20946:127;21007:10;21002:3;20998:20;20995:1;20988:31;21038:4;21035:1;21028:15;21062:4;21059:1;21052:15;21078:127;21139:10;21134:3;21130:20;21127:1;21120:31;21170:4;21167:1;21160:15;21194:4;21191:1;21184:15;21210:131;-1:-1:-1;;;;;;21284:32:1;;21274:43;;21264:71;;21331:1;21328;21321:12

Swarm Source

ipfs://f687f9193317d1357a155d2f7159b52a13bb734cec3f6ce2810c439c6e3fa788
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.