ETH Price: $2,917.46 (-0.02%)
Gas: 3 Gwei

Token

DANK DUCKS (DUCKS)
 

Overview

Max Total Supply

6,973 DUCKS

Holders

2,803

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DUCKS
0xc30782464f06a98d9d1389bb87aa4f5f8801b60f
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:
DankDucks

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-03-25
*/

// SPDX-License-Identifier: MIT
// Creator: Chiru Labs


// 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 {}
}

pragma solidity ^0.8.0;

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

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 6969;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public nftPerAddressLimitWl = 1;
  uint256 public noFreeNft = 1000;

  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;

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

  constructor() ERC721A("DANK DUCKS", "DUCKS", 100) {
    setHiddenMetadataUri("ipfs://QmdxxRZuHHWWDszSz8xRVBVtrGKvBGr97E9kgnF7qWLFGx/hidden.json");
  }

  /**
    * @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(!onlyWhitelisted, "Presale is on");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintWhitelist(bytes32[] calldata merkleProof, uint256 _mintAmount) public payable isValidMerkleProof(merkleProof, whitelistMerkleRoot){
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "Presale has ended");
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded");

    if(currentIndex + _mintAmount > noFreeNft){
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    
    addressMintedBalance[msg.sender]+=_mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_to, _mintAmount);
  }

  function reserveDucks(uint256 _mintAmount) public onlyOwner {
    require(_mintAmount > 0 , "Invalid mint amount!");
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

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

  function setNoFreeNft(uint128 _noOfFree) public onlyOwner {
    noFreeNft = _noOfFree;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setNftPerAddressLimitWl(uint256 _limit) public onlyOwner {
    nftPerAddressLimitWl = _limit;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function withdraw() public onlyOwner {
    (bool hs, ) = payable(0x00F8085B11b09dDDde756Cb5C3bCa6BC5EfBf37F).call{value: address(this).balance * 10 / 100}("");
    require(hs);
	
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

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":"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":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noFreeNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveDucks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_noOfFree","type":"uint128"}],"name":"setNoFreeNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

600080805560c0604081905260a08290526200001f916008919062000266565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004e9160099162000266565b5066470de4df820000600b55611b39600c55600a600d556001600e556103e8600f556010805462ffffff1916620100011790553480156200008e57600080fd5b506040518060400160405280600a81526020016944414e4b204455434b5360b01b815250604051806040016040528060058152602001644455434b5360d81b815250606460008111620001385760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200014d90600190602086019062000266565b5081516200016390600290602085019062000266565b5060805250620001759050336200019f565b62000199604051806080016040528060418152602001620031e760419139620001f1565b62000349565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200024d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200012f565b80516200026290600a90602084019062000266565b5050565b82805462000274906200030c565b90600052602060002090601f016020900481019282620002985760008555620002e3565b82601f10620002b357805160ff1916838001178555620002e3565b82800160010185558215620002e3579182015b82811115620002e3578251825591602001919060010190620002c6565b50620002f1929150620002f5565b5090565b5b80821115620002f15760008155600101620002f6565b600181811c908216806200032157607f821691505b602082108114156200034357634e487b7160e01b600052602260045260246000fd5b50919050565b608051612e746200037360003960008181611ef101528181611f1b01526123590152612e746000f3fe6080604052600436106102935760003560e01c806362b99ad41161015a578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd1461078f578063d5abeb01146107af578063e0a80853146107c5578063e2dfc039146107e5578063e985e9c514610805578063f2fde38b1461084e57600080fd5b8063a22cb465146106f1578063a45ba8e714610711578063a6d612f914610726578063aa98e0c614610739578063b88d4fde1461074f578063bd32fb661461076f57600080fd5b80638da5cb5b116101135780638da5cb5b1461065557806394354fd01461067357806395d89b41146106895780639c70b5121461069e5780639dbc3fc1146106be578063a0712d68146106de57600080fd5b806362b99ad4146105ab5780636352211e146105c057806363b4ff78146105e057806370a0823114610600578063715018a6146106205780637ec4a6591461063557600080fd5b80633c952764116101fe57806344a0d68a116101b757806344a0d68a146104fd5780634f6ccce71461051d5780634fdd43cb1461053d578063518302271461055d5780635503a0e81461057c5780635c975abb1461059157600080fd5b80633c952764146104455780633ccfd60b146104655780633d25fac81461047a578063408cbf941461049057806342842e0e146104b0578063438b6300146104d057600080fd5b806316c38b3c1161025057806316c38b3c1461038d57806318160ddd146103ad57806318cae269146103c25780632063064e146103ef57806323b872dd146104055780632f745c591461042557600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806313faede61461034957806316ba10e01461036d575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612982565b61086e565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108db565b6040516102c49190612b9f565b3480156102fb57600080fd5b5061030f61030a366004612969565b61096d565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b506103476103423660046128a9565b6109fd565b005b34801561035557600080fd5b5061035f600b5481565b6040519081526020016102c4565b34801561037957600080fd5b506103476103883660046129bc565b610b15565b34801561039957600080fd5b506103476103a836600461294e565b610b56565b3480156103b957600080fd5b5060005461035f565b3480156103ce57600080fd5b5061035f6103dd366004612779565b60126020526000908152604090205481565b3480156103fb57600080fd5b5061035f600e5481565b34801561041157600080fd5b506103476104203660046127c7565b610b93565b34801561043157600080fd5b5061035f6104403660046128a9565b610b9e565b34801561045157600080fd5b5061034761046036600461294e565b610d0c565b34801561047157600080fd5b50610347610d52565b34801561048657600080fd5b5061035f600f5481565b34801561049c57600080fd5b506103476104ab3660046128a9565b610e69565b3480156104bc57600080fd5b506103476104cb3660046127c7565b610efb565b3480156104dc57600080fd5b506104f06104eb366004612779565b610f16565b6040516102c49190612b5b565b34801561050957600080fd5b50610347610518366004612969565b610ff6565b34801561052957600080fd5b5061035f610538366004612969565b611025565b34801561054957600080fd5b506103476105583660046129bc565b611087565b34801561056957600080fd5b506010546102b890610100900460ff1681565b34801561058857600080fd5b506102e26110c4565b34801561059d57600080fd5b506010546102b89060ff1681565b3480156105b757600080fd5b506102e2611152565b3480156105cc57600080fd5b5061030f6105db366004612969565b61115f565b3480156105ec57600080fd5b506103476105fb366004612a05565b611171565b34801561060c57600080fd5b5061035f61061b366004612779565b6111a9565b34801561062c57600080fd5b5061034761123a565b34801561064157600080fd5b506103476106503660046129bc565b611270565b34801561066157600080fd5b506007546001600160a01b031661030f565b34801561067f57600080fd5b5061035f600d5481565b34801561069557600080fd5b506102e26112ad565b3480156106aa57600080fd5b506010546102b89062010000900460ff1681565b3480156106ca57600080fd5b506103476106d9366004612969565b6112bc565b6103476106ec366004612969565b611342565b3480156106fd57600080fd5b5061034761070c36600461287f565b611493565b34801561071d57600080fd5b506102e2611558565b6103476107343660046128d3565b611565565b34801561074557600080fd5b5061035f60115481565b34801561075b57600080fd5b5061034761076a366004612803565b6117ce565b34801561077b57600080fd5b5061034761078a366004612969565b611807565b34801561079b57600080fd5b506102e26107aa366004612969565b611836565b3480156107bb57600080fd5b5061035f600c5481565b3480156107d157600080fd5b506103476107e036600461294e565b6119a7565b3480156107f157600080fd5b50610347610800366004612969565b6119eb565b34801561081157600080fd5b506102b8610820366004612794565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561085a57600080fd5b50610347610869366004612779565b611a1a565b60006001600160e01b031982166380ac58cd60e01b148061089f57506001600160e01b03198216635b5e139f60e01b145b806108ba57506001600160e01b0319821663780e9d6360e01b145b806108d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108ea90612d66565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612d66565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097a826000541190565b6109e15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a088261115f565b9050806001600160a01b0316836001600160a01b03161415610a775760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109d8565b336001600160a01b0382161480610a935750610a938133610820565b610b055760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109d8565b610b10838383611ab2565b505050565b6007546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016109d890612be0565b8051610b52906009906020840190612647565b5050565b6007546001600160a01b03163314610b805760405162461bcd60e51b81526004016109d890612be0565b6010805460ff1916911515919091179055565b610b10838383611b0e565b6000610ba9836111a9565b8210610c025760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109d8565b600080549080805b83811015610cac576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c5d57805192505b876001600160a01b0316836001600160a01b03161415610c995786841415610c8b575093506108d592505050565b83610c9581612da1565b9450505b5080610ca481612da1565b915050610c0a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109d8565b6007546001600160a01b03163314610d365760405162461bcd60e51b81526004016109d890612be0565b60108054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016109d890612be0565b600072f8085b11b09dddde756cb5c3bca6bc5efbf37f6064610d9f47600a612ced565b610da99190612cd9565b604051600081818185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610df857600080fd5b6000610e0c6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e56576040519150601f19603f3d011682016040523d82523d6000602084013e610e5b565b606091505b5050905080610b5257600080fd5b80600081118015610e7c5750600d548111155b610e985760405162461bcd60e51b81526004016109d890612bb2565b600c5481600054610ea99190612cc1565b1115610ec75760405162461bcd60e51b81526004016109d890612c15565b6007546001600160a01b03163314610ef15760405162461bcd60e51b81526004016109d890612be0565b610b108383611e55565b610b10838383604051806020016040528060008152506117ce565b60606000610f23836111a9565b905060008167ffffffffffffffff811115610f4057610f40612e12565b604051908082528060200260200182016040528015610f69578160200160208202803683370190505b5090506000805b8381108015610f815750600c548211155b15610fec576000610f918361115f565b9050866001600160a01b0316816001600160a01b03161415610fd95782848381518110610fc057610fc0612dfc565b602090810291909101015281610fd581612da1565b9250505b82610fe381612da1565b93505050610f70565b5090949350505050565b6007546001600160a01b031633146110205760405162461bcd60e51b81526004016109d890612be0565b600b55565b6000805482106110835760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109d8565b5090565b6007546001600160a01b031633146110b15760405162461bcd60e51b81526004016109d890612be0565b8051610b5290600a906020840190612647565b600980546110d190612d66565b80601f01602080910402602001604051908101604052809291908181526020018280546110fd90612d66565b801561114a5780601f1061111f5761010080835404028352916020019161114a565b820191906000526020600020905b81548152906001019060200180831161112d57829003601f168201915b505050505081565b600880546110d190612d66565b600061116a82611e6f565b5192915050565b6007546001600160a01b0316331461119b5760405162461bcd60e51b81526004016109d890612be0565b6001600160801b0316600f55565b60006001600160a01b0382166112155760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109d8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112645760405162461bcd60e51b81526004016109d890612be0565b61126e6000612019565b565b6007546001600160a01b0316331461129a5760405162461bcd60e51b81526004016109d890612be0565b8051610b52906008906020840190612647565b6060600280546108ea90612d66565b6007546001600160a01b031633146112e65760405162461bcd60e51b81526004016109d890612be0565b600081116113065760405162461bcd60e51b81526004016109d890612bb2565b600c54816000546113179190612cc1565b11156113355760405162461bcd60e51b81526004016109d890612c15565b61133f3382611e55565b50565b806000811180156113555750600d548111155b6113715760405162461bcd60e51b81526004016109d890612bb2565b600c54816000546113829190612cc1565b11156113a05760405162461bcd60e51b81526004016109d890612c15565b60105460ff16156113ed5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109d8565b60105462010000900460ff16156114365760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b60448201526064016109d8565b81600b546114449190612ced565b3410156114895760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d8565b610b523383611e55565b6001600160a01b0382163314156114ec5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109d8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546110d190612d66565b82826011546115dc838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190506040516020818303038152906040528051906020012061206b565b6116285760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016109d8565b3360009081526012602052604090205460105460ff16156116855760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109d8565b60105462010000900460ff166116d15760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109d8565b600e546116de8683612cc1565b111561172c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109d8565b600f548560005461173d9190612cc1565b11156117965784600b546117519190612ced565b3410156117965760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d8565b33600090815260126020526040812080548792906117b5908490612cc1565b909155506117c590503386611e55565b50505050505050565b6117d9848484611b0e565b6117e584848484612081565b6118015760405162461bcd60e51b81526004016109d890612c43565b50505050565b6007546001600160a01b031633146118315760405162461bcd60e51b81526004016109d890612be0565b601155565b6060611843826000541190565b6118a75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d8565b601054610100900460ff1661194857600a80546118c390612d66565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90612d66565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b50505050509050919050565b600061195261218f565b9050600081511161197257604051806020016040528060008152506119a0565b8061197c8461219e565b600960405160200161199093929190612a5a565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146119d15760405162461bcd60e51b81526004016109d890612be0565b601080549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a155760405162461bcd60e51b81526004016109d890612be0565b600e55565b6007546001600160a01b03163314611a445760405162461bcd60e51b81526004016109d890612be0565b6001600160a01b038116611aa95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d8565b61133f81612019565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b1982611e6f565b80519091506000906001600160a01b0316336001600160a01b03161480611b50575033611b458461096d565b6001600160a01b0316145b80611b6257508151611b629033610820565b905080611bcc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109d8565b846001600160a01b031682600001516001600160a01b031614611c405760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109d8565b6001600160a01b038416611ca45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109d8565b611cb46000848460000151611ab2565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611d79908590612cc1565b6000818152600360205260409020549091506001600160a01b0316611e0b57611da3816000541190565b15611e0b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b5282826040518060200160405280600081525061229c565b6040805180820190915260008082526020820152611e8e826000541190565b611eed5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109d8565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f4e57611f407f000000000000000000000000000000000000000000000000000000000000000084612d0c565b611f4b906001612cc1565b90505b825b818110611fb8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611fa557949350505050565b5080611fb081612d4f565b915050611f50565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109d8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261207885846125d3565b14949350505050565b60006001600160a01b0384163b1561218357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120c5903390899088908890600401612b1e565b602060405180830381600087803b1580156120df57600080fd5b505af192505050801561210f575060408051601f3d908101601f1916820190925261210c9181019061299f565b60015b612169573d80801561213d576040519150601f19603f3d011682016040523d82523d6000602084013e612142565b606091505b5080516121615760405162461bcd60e51b81526004016109d890612c43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612187565b5060015b949350505050565b6060600880546108ea90612d66565b6060816121c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ec57806121d681612da1565b91506121e59050600a83612cd9565b91506121c6565b60008167ffffffffffffffff81111561220757612207612e12565b6040519080825280601f01601f191660200182016040528015612231576020820181803683370190505b5090505b841561218757612246600183612d0c565b9150612253600a86612dbc565b61225e906030612cc1565b60f81b81838151811061227357612273612dfc565b60200101906001600160f81b031916908160001a905350612295600a86612cd9565b9450612235565b6000546001600160a01b0384166122ff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109d8565b61230a816000541190565b156123575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109d8565b7f00000000000000000000000000000000000000000000000000000000000000008311156123d25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109d8565b6000831161242e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109d8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061248a908790612c96565b6001600160801b031681526020018583602001516124a89190612c96565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125c85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461258c6000888488612081565b6125a85760405162461bcd60e51b81526004016109d890612c43565b816125b281612da1565b92505080806125c090612da1565b91505061253f565b506000819055611e4d565b600081815b845181101561263f5760008582815181106125f5576125f5612dfc565b6020026020010151905080831161261b576000838152602082905260409020925061262c565b600081815260208490526040902092505b508061263781612da1565b9150506125d8565b509392505050565b82805461265390612d66565b90600052602060002090601f01602090048101928261267557600085556126bb565b82601f1061268e57805160ff19168380011785556126bb565b828001600101855582156126bb579182015b828111156126bb5782518255916020019190600101906126a0565b506110839291505b8082111561108357600081556001016126c3565b600067ffffffffffffffff808411156126f2576126f2612e12565b604051601f8501601f19908116603f0116810190828211818310171561271a5761271a612e12565b8160405280935085815286868601111561273357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461276457600080fd5b919050565b8035801515811461276457600080fd5b60006020828403121561278b57600080fd5b6119a08261274d565b600080604083850312156127a757600080fd5b6127b08361274d565b91506127be6020840161274d565b90509250929050565b6000806000606084860312156127dc57600080fd5b6127e58461274d565b92506127f36020850161274d565b9150604084013590509250925092565b6000806000806080858703121561281957600080fd5b6128228561274d565b93506128306020860161274d565b925060408501359150606085013567ffffffffffffffff81111561285357600080fd5b8501601f8101871361286457600080fd5b612873878235602084016126d7565b91505092959194509250565b6000806040838503121561289257600080fd5b61289b8361274d565b91506127be60208401612769565b600080604083850312156128bc57600080fd5b6128c58361274d565b946020939093013593505050565b6000806000604084860312156128e857600080fd5b833567ffffffffffffffff8082111561290057600080fd5b818601915086601f83011261291457600080fd5b81358181111561292357600080fd5b8760208260051b850101111561293857600080fd5b6020928301989097509590910135949350505050565b60006020828403121561296057600080fd5b6119a082612769565b60006020828403121561297b57600080fd5b5035919050565b60006020828403121561299457600080fd5b81356119a081612e28565b6000602082840312156129b157600080fd5b81516119a081612e28565b6000602082840312156129ce57600080fd5b813567ffffffffffffffff8111156129e557600080fd5b8201601f810184136129f657600080fd5b612187848235602084016126d7565b600060208284031215612a1757600080fd5b81356001600160801b03811681146119a057600080fd5b60008151808452612a46816020860160208601612d23565b601f01601f19169290920160200192915050565b600084516020612a6d8285838a01612d23565b855191840191612a808184848a01612d23565b8554920191600090600181811c9080831680612a9d57607f831692505b858310811415612abb57634e487b7160e01b85526022600452602485fd5b808015612acf5760018114612ae057612b0d565b60ff19851688528388019550612b0d565b60008b81526020902060005b85811015612b055781548a820152908401908801612aec565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b5190830184612a2e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b9357835183529284019291840191600101612b77565b50909695505050505050565b6020815260006119a06020830184612a2e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612cb857612cb8612dd0565b01949350505050565b60008219821115612cd457612cd4612dd0565b500190565b600082612ce857612ce8612de6565b500490565b6000816000190483118215151615612d0757612d07612dd0565b500290565b600082821015612d1e57612d1e612dd0565b500390565b60005b83811015612d3e578181015183820152602001612d26565b838111156118015750506000910152565b600081612d5e57612d5e612dd0565b506000190190565b600181811c90821680612d7a57607f821691505b60208210811415612d9b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612db557612db5612dd0565b5060010190565b600082612dcb57612dcb612de6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133f57600080fdfea264697066735822122021039ffcd91dbe02462bc375d11db9dd1cb52cb7b7b68b09215e1495cba22b4864736f6c63430008070033697066733a2f2f516d647878525a754848575744737a537a3878525642567472474b76424772393745396b676e463771574c4647782f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102935760003560e01c806362b99ad41161015a578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd1461078f578063d5abeb01146107af578063e0a80853146107c5578063e2dfc039146107e5578063e985e9c514610805578063f2fde38b1461084e57600080fd5b8063a22cb465146106f1578063a45ba8e714610711578063a6d612f914610726578063aa98e0c614610739578063b88d4fde1461074f578063bd32fb661461076f57600080fd5b80638da5cb5b116101135780638da5cb5b1461065557806394354fd01461067357806395d89b41146106895780639c70b5121461069e5780639dbc3fc1146106be578063a0712d68146106de57600080fd5b806362b99ad4146105ab5780636352211e146105c057806363b4ff78146105e057806370a0823114610600578063715018a6146106205780637ec4a6591461063557600080fd5b80633c952764116101fe57806344a0d68a116101b757806344a0d68a146104fd5780634f6ccce71461051d5780634fdd43cb1461053d578063518302271461055d5780635503a0e81461057c5780635c975abb1461059157600080fd5b80633c952764146104455780633ccfd60b146104655780633d25fac81461047a578063408cbf941461049057806342842e0e146104b0578063438b6300146104d057600080fd5b806316c38b3c1161025057806316c38b3c1461038d57806318160ddd146103ad57806318cae269146103c25780632063064e146103ef57806323b872dd146104055780632f745c591461042557600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806313faede61461034957806316ba10e01461036d575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612982565b61086e565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108db565b6040516102c49190612b9f565b3480156102fb57600080fd5b5061030f61030a366004612969565b61096d565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b506103476103423660046128a9565b6109fd565b005b34801561035557600080fd5b5061035f600b5481565b6040519081526020016102c4565b34801561037957600080fd5b506103476103883660046129bc565b610b15565b34801561039957600080fd5b506103476103a836600461294e565b610b56565b3480156103b957600080fd5b5060005461035f565b3480156103ce57600080fd5b5061035f6103dd366004612779565b60126020526000908152604090205481565b3480156103fb57600080fd5b5061035f600e5481565b34801561041157600080fd5b506103476104203660046127c7565b610b93565b34801561043157600080fd5b5061035f6104403660046128a9565b610b9e565b34801561045157600080fd5b5061034761046036600461294e565b610d0c565b34801561047157600080fd5b50610347610d52565b34801561048657600080fd5b5061035f600f5481565b34801561049c57600080fd5b506103476104ab3660046128a9565b610e69565b3480156104bc57600080fd5b506103476104cb3660046127c7565b610efb565b3480156104dc57600080fd5b506104f06104eb366004612779565b610f16565b6040516102c49190612b5b565b34801561050957600080fd5b50610347610518366004612969565b610ff6565b34801561052957600080fd5b5061035f610538366004612969565b611025565b34801561054957600080fd5b506103476105583660046129bc565b611087565b34801561056957600080fd5b506010546102b890610100900460ff1681565b34801561058857600080fd5b506102e26110c4565b34801561059d57600080fd5b506010546102b89060ff1681565b3480156105b757600080fd5b506102e2611152565b3480156105cc57600080fd5b5061030f6105db366004612969565b61115f565b3480156105ec57600080fd5b506103476105fb366004612a05565b611171565b34801561060c57600080fd5b5061035f61061b366004612779565b6111a9565b34801561062c57600080fd5b5061034761123a565b34801561064157600080fd5b506103476106503660046129bc565b611270565b34801561066157600080fd5b506007546001600160a01b031661030f565b34801561067f57600080fd5b5061035f600d5481565b34801561069557600080fd5b506102e26112ad565b3480156106aa57600080fd5b506010546102b89062010000900460ff1681565b3480156106ca57600080fd5b506103476106d9366004612969565b6112bc565b6103476106ec366004612969565b611342565b3480156106fd57600080fd5b5061034761070c36600461287f565b611493565b34801561071d57600080fd5b506102e2611558565b6103476107343660046128d3565b611565565b34801561074557600080fd5b5061035f60115481565b34801561075b57600080fd5b5061034761076a366004612803565b6117ce565b34801561077b57600080fd5b5061034761078a366004612969565b611807565b34801561079b57600080fd5b506102e26107aa366004612969565b611836565b3480156107bb57600080fd5b5061035f600c5481565b3480156107d157600080fd5b506103476107e036600461294e565b6119a7565b3480156107f157600080fd5b50610347610800366004612969565b6119eb565b34801561081157600080fd5b506102b8610820366004612794565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561085a57600080fd5b50610347610869366004612779565b611a1a565b60006001600160e01b031982166380ac58cd60e01b148061089f57506001600160e01b03198216635b5e139f60e01b145b806108ba57506001600160e01b0319821663780e9d6360e01b145b806108d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108ea90612d66565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612d66565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097a826000541190565b6109e15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a088261115f565b9050806001600160a01b0316836001600160a01b03161415610a775760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109d8565b336001600160a01b0382161480610a935750610a938133610820565b610b055760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109d8565b610b10838383611ab2565b505050565b6007546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016109d890612be0565b8051610b52906009906020840190612647565b5050565b6007546001600160a01b03163314610b805760405162461bcd60e51b81526004016109d890612be0565b6010805460ff1916911515919091179055565b610b10838383611b0e565b6000610ba9836111a9565b8210610c025760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109d8565b600080549080805b83811015610cac576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c5d57805192505b876001600160a01b0316836001600160a01b03161415610c995786841415610c8b575093506108d592505050565b83610c9581612da1565b9450505b5080610ca481612da1565b915050610c0a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109d8565b6007546001600160a01b03163314610d365760405162461bcd60e51b81526004016109d890612be0565b60108054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016109d890612be0565b600072f8085b11b09dddde756cb5c3bca6bc5efbf37f6064610d9f47600a612ced565b610da99190612cd9565b604051600081818185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610df857600080fd5b6000610e0c6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e56576040519150601f19603f3d011682016040523d82523d6000602084013e610e5b565b606091505b5050905080610b5257600080fd5b80600081118015610e7c5750600d548111155b610e985760405162461bcd60e51b81526004016109d890612bb2565b600c5481600054610ea99190612cc1565b1115610ec75760405162461bcd60e51b81526004016109d890612c15565b6007546001600160a01b03163314610ef15760405162461bcd60e51b81526004016109d890612be0565b610b108383611e55565b610b10838383604051806020016040528060008152506117ce565b60606000610f23836111a9565b905060008167ffffffffffffffff811115610f4057610f40612e12565b604051908082528060200260200182016040528015610f69578160200160208202803683370190505b5090506000805b8381108015610f815750600c548211155b15610fec576000610f918361115f565b9050866001600160a01b0316816001600160a01b03161415610fd95782848381518110610fc057610fc0612dfc565b602090810291909101015281610fd581612da1565b9250505b82610fe381612da1565b93505050610f70565b5090949350505050565b6007546001600160a01b031633146110205760405162461bcd60e51b81526004016109d890612be0565b600b55565b6000805482106110835760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109d8565b5090565b6007546001600160a01b031633146110b15760405162461bcd60e51b81526004016109d890612be0565b8051610b5290600a906020840190612647565b600980546110d190612d66565b80601f01602080910402602001604051908101604052809291908181526020018280546110fd90612d66565b801561114a5780601f1061111f5761010080835404028352916020019161114a565b820191906000526020600020905b81548152906001019060200180831161112d57829003601f168201915b505050505081565b600880546110d190612d66565b600061116a82611e6f565b5192915050565b6007546001600160a01b0316331461119b5760405162461bcd60e51b81526004016109d890612be0565b6001600160801b0316600f55565b60006001600160a01b0382166112155760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109d8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112645760405162461bcd60e51b81526004016109d890612be0565b61126e6000612019565b565b6007546001600160a01b0316331461129a5760405162461bcd60e51b81526004016109d890612be0565b8051610b52906008906020840190612647565b6060600280546108ea90612d66565b6007546001600160a01b031633146112e65760405162461bcd60e51b81526004016109d890612be0565b600081116113065760405162461bcd60e51b81526004016109d890612bb2565b600c54816000546113179190612cc1565b11156113355760405162461bcd60e51b81526004016109d890612c15565b61133f3382611e55565b50565b806000811180156113555750600d548111155b6113715760405162461bcd60e51b81526004016109d890612bb2565b600c54816000546113829190612cc1565b11156113a05760405162461bcd60e51b81526004016109d890612c15565b60105460ff16156113ed5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109d8565b60105462010000900460ff16156114365760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b60448201526064016109d8565b81600b546114449190612ced565b3410156114895760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d8565b610b523383611e55565b6001600160a01b0382163314156114ec5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109d8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546110d190612d66565b82826011546115dc838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190506040516020818303038152906040528051906020012061206b565b6116285760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016109d8565b3360009081526012602052604090205460105460ff16156116855760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109d8565b60105462010000900460ff166116d15760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109d8565b600e546116de8683612cc1565b111561172c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109d8565b600f548560005461173d9190612cc1565b11156117965784600b546117519190612ced565b3410156117965760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d8565b33600090815260126020526040812080548792906117b5908490612cc1565b909155506117c590503386611e55565b50505050505050565b6117d9848484611b0e565b6117e584848484612081565b6118015760405162461bcd60e51b81526004016109d890612c43565b50505050565b6007546001600160a01b031633146118315760405162461bcd60e51b81526004016109d890612be0565b601155565b6060611843826000541190565b6118a75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d8565b601054610100900460ff1661194857600a80546118c390612d66565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90612d66565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b50505050509050919050565b600061195261218f565b9050600081511161197257604051806020016040528060008152506119a0565b8061197c8461219e565b600960405160200161199093929190612a5a565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146119d15760405162461bcd60e51b81526004016109d890612be0565b601080549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a155760405162461bcd60e51b81526004016109d890612be0565b600e55565b6007546001600160a01b03163314611a445760405162461bcd60e51b81526004016109d890612be0565b6001600160a01b038116611aa95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d8565b61133f81612019565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b1982611e6f565b80519091506000906001600160a01b0316336001600160a01b03161480611b50575033611b458461096d565b6001600160a01b0316145b80611b6257508151611b629033610820565b905080611bcc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109d8565b846001600160a01b031682600001516001600160a01b031614611c405760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109d8565b6001600160a01b038416611ca45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109d8565b611cb46000848460000151611ab2565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611d79908590612cc1565b6000818152600360205260409020549091506001600160a01b0316611e0b57611da3816000541190565b15611e0b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b5282826040518060200160405280600081525061229c565b6040805180820190915260008082526020820152611e8e826000541190565b611eed5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109d8565b60007f00000000000000000000000000000000000000000000000000000000000000648310611f4e57611f407f000000000000000000000000000000000000000000000000000000000000006484612d0c565b611f4b906001612cc1565b90505b825b818110611fb8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611fa557949350505050565b5080611fb081612d4f565b915050611f50565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109d8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261207885846125d3565b14949350505050565b60006001600160a01b0384163b1561218357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120c5903390899088908890600401612b1e565b602060405180830381600087803b1580156120df57600080fd5b505af192505050801561210f575060408051601f3d908101601f1916820190925261210c9181019061299f565b60015b612169573d80801561213d576040519150601f19603f3d011682016040523d82523d6000602084013e612142565b606091505b5080516121615760405162461bcd60e51b81526004016109d890612c43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612187565b5060015b949350505050565b6060600880546108ea90612d66565b6060816121c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ec57806121d681612da1565b91506121e59050600a83612cd9565b91506121c6565b60008167ffffffffffffffff81111561220757612207612e12565b6040519080825280601f01601f191660200182016040528015612231576020820181803683370190505b5090505b841561218757612246600183612d0c565b9150612253600a86612dbc565b61225e906030612cc1565b60f81b81838151811061227357612273612dfc565b60200101906001600160f81b031916908160001a905350612295600a86612cd9565b9450612235565b6000546001600160a01b0384166122ff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109d8565b61230a816000541190565b156123575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109d8565b7f00000000000000000000000000000000000000000000000000000000000000648311156123d25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109d8565b6000831161242e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109d8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061248a908790612c96565b6001600160801b031681526020018583602001516124a89190612c96565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125c85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461258c6000888488612081565b6125a85760405162461bcd60e51b81526004016109d890612c43565b816125b281612da1565b92505080806125c090612da1565b91505061253f565b506000819055611e4d565b600081815b845181101561263f5760008582815181106125f5576125f5612dfc565b6020026020010151905080831161261b576000838152602082905260409020925061262c565b600081815260208490526040902092505b508061263781612da1565b9150506125d8565b509392505050565b82805461265390612d66565b90600052602060002090601f01602090048101928261267557600085556126bb565b82601f1061268e57805160ff19168380011785556126bb565b828001600101855582156126bb579182015b828111156126bb5782518255916020019190600101906126a0565b506110839291505b8082111561108357600081556001016126c3565b600067ffffffffffffffff808411156126f2576126f2612e12565b604051601f8501601f19908116603f0116810190828211818310171561271a5761271a612e12565b8160405280935085815286868601111561273357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461276457600080fd5b919050565b8035801515811461276457600080fd5b60006020828403121561278b57600080fd5b6119a08261274d565b600080604083850312156127a757600080fd5b6127b08361274d565b91506127be6020840161274d565b90509250929050565b6000806000606084860312156127dc57600080fd5b6127e58461274d565b92506127f36020850161274d565b9150604084013590509250925092565b6000806000806080858703121561281957600080fd5b6128228561274d565b93506128306020860161274d565b925060408501359150606085013567ffffffffffffffff81111561285357600080fd5b8501601f8101871361286457600080fd5b612873878235602084016126d7565b91505092959194509250565b6000806040838503121561289257600080fd5b61289b8361274d565b91506127be60208401612769565b600080604083850312156128bc57600080fd5b6128c58361274d565b946020939093013593505050565b6000806000604084860312156128e857600080fd5b833567ffffffffffffffff8082111561290057600080fd5b818601915086601f83011261291457600080fd5b81358181111561292357600080fd5b8760208260051b850101111561293857600080fd5b6020928301989097509590910135949350505050565b60006020828403121561296057600080fd5b6119a082612769565b60006020828403121561297b57600080fd5b5035919050565b60006020828403121561299457600080fd5b81356119a081612e28565b6000602082840312156129b157600080fd5b81516119a081612e28565b6000602082840312156129ce57600080fd5b813567ffffffffffffffff8111156129e557600080fd5b8201601f810184136129f657600080fd5b612187848235602084016126d7565b600060208284031215612a1757600080fd5b81356001600160801b03811681146119a057600080fd5b60008151808452612a46816020860160208601612d23565b601f01601f19169290920160200192915050565b600084516020612a6d8285838a01612d23565b855191840191612a808184848a01612d23565b8554920191600090600181811c9080831680612a9d57607f831692505b858310811415612abb57634e487b7160e01b85526022600452602485fd5b808015612acf5760018114612ae057612b0d565b60ff19851688528388019550612b0d565b60008b81526020902060005b85811015612b055781548a820152908401908801612aec565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b5190830184612a2e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b9357835183529284019291840191600101612b77565b50909695505050505050565b6020815260006119a06020830184612a2e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612cb857612cb8612dd0565b01949350505050565b60008219821115612cd457612cd4612dd0565b500190565b600082612ce857612ce8612de6565b500490565b6000816000190483118215151615612d0757612d07612dd0565b500290565b600082821015612d1e57612d1e612dd0565b500390565b60005b83811015612d3e578181015183820152602001612d26565b838111156118015750506000910152565b600081612d5e57612d5e612dd0565b506000190190565b600181811c90821680612d7a57607f821691505b60208210811415612d9b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612db557612db5612dd0565b5060010190565b600082612dcb57612dcb612de6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133f57600080fdfea264697066735822122021039ffcd91dbe02462bc375d11db9dd1cb52cb7b7b68b09215e1495cba22b4864736f6c63430008070033

Deployed Bytecode Sourcemap

41634:5253:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29359:372;;;;;;;;;;-1:-1:-1;29359:372:0;;;;;:::i;:::-;;:::i;:::-;;;9226:14:1;;9219:22;9201:41;;9189:2;9174:18;29359:372:0;;;;;;;;31164:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32725:214::-;;;;;;;;;;-1:-1:-1;32725:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7887:32:1;;;7869:51;;7857:2;7842:18;32725:214:0;7723:203:1;32246:413:0;;;;;;;;;;-1:-1:-1;32246:413:0;;;;;:::i;:::-;;:::i;:::-;;41821:32;;;;;;;;;;;;;;;;;;;9399:25:1;;;9387:2;9372:18;41821:32:0;9253:177:1;46305:100:0;;;;;;;;;;-1:-1:-1;46305:100:0;;;;;:::i;:::-;;:::i;46411:77::-;;;;;;;;;;-1:-1:-1;46411:77:0;;;;;:::i;:::-;;:::i;27800:100::-;;;;;;;;;;-1:-1:-1;27853:7:0;27880:12;27800:100;;42162:55;;;;;;;;;;-1:-1:-1;42162:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;41937:39;;;;;;;;;;;;;;;;33601:162;;;;;;;;;;-1:-1:-1;33601:162:0;;;;;:::i;:::-;;:::i;28464:823::-;;;;;;;;;;-1:-1:-1;28464:823:0;;;;;:::i;:::-;;:::i;45668:95::-;;;;;;;;;;-1:-1:-1;45668:95:0;;;;;:::i;:::-;;:::i;46494:280::-;;;;;;;;;;;;;:::i;41981:31::-;;;;;;;;;;;;;;;;43924:138;;;;;;;;;;-1:-1:-1;43924:138:0;;;;;:::i;:::-;;:::i;33834:177::-;;;;;;;;;;-1:-1:-1;33834:177:0;;;;;:::i;:::-;;:::i;44318:635::-;;;;;;;;;;-1:-1:-1;44318:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45769:74::-;;;;;;;;;;-1:-1:-1;45769:74:0;;;;;:::i;:::-;;:::i;27977:187::-;;;;;;;;;;-1:-1:-1;27977:187:0;;;;;:::i;:::-;;:::i;45947:132::-;;;;;;;;;;-1:-1:-1;45947:132:0;;;;;:::i;:::-;;:::i;42049:28::-;;;;;;;;;;-1:-1:-1;42049:28:0;;;;;;;;;;;41743:33;;;;;;;;;;;;;:::i;42019:25::-;;;;;;;;;;-1:-1:-1;42019:25:0;;;;;;;;41710:28;;;;;;;;;;;;;:::i;30973:124::-;;;;;;;;;;-1:-1:-1;30973:124:0;;;;;:::i;:::-;;:::i;45849:92::-;;;;;;;;;;-1:-1:-1;45849:92:0;;;;;:::i;:::-;;:::i;29795:221::-;;;;;;;;;;-1:-1:-1;29795:221:0;;;;;:::i;:::-;;:::i;4735:103::-;;;;;;;;;;;;;:::i;46199:100::-;;;;;;;;;;-1:-1:-1;46199:100:0;;;;;:::i;:::-;;:::i;4084:87::-;;;;;;;;;;-1:-1:-1;4157:6:0;;-1:-1:-1;;;;;4157:6:0;4084:87;;41894:38;;;;;;;;;;;;;;;;31333:104;;;;;;;;;;;;;:::i;42082:34::-;;;;;;;;;;-1:-1:-1;42082:34:0;;;;;;;;;;;44068:244;;;;;;;;;;-1:-1:-1;44068:244:0;;;;;:::i;:::-;;:::i;42964:296::-;;;;;;:::i;:::-;;:::i;33011:288::-;;;;;;;;;;-1:-1:-1;33011:288:0;;;;;:::i;:::-;;:::i;41781:31::-;;;;;;;;;;;;;:::i;43266:650::-;;;;;;:::i;:::-;;:::i;42123:34::-;;;;;;;;;;;;;;;;34082:355;;;;;;;;;;-1:-1:-1;34082:355:0;;;;;:::i;:::-;;:::i;45546:116::-;;;;;;;;;;-1:-1:-1;45546:116:0;;;;;:::i;:::-;;:::i;44959:494::-;;;;;;;;;;-1:-1:-1;44959:494:0;;;;;:::i;:::-;;:::i;41858:31::-;;;;;;;;;;;;;;;;45459:81;;;;;;;;;;-1:-1:-1;45459:81:0;;;;;:::i;:::-;;:::i;46085:108::-;;;;;;;;;;-1:-1:-1;46085:108:0;;;;;:::i;:::-;;:::i;33370:164::-;;;;;;;;;;-1:-1:-1;33370:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33491:25:0;;;33467:4;33491:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33370:164;4993:201;;;;;;;;;;-1:-1:-1;4993:201:0;;;;;:::i;:::-;;:::i;29359:372::-;29461:4;-1:-1:-1;;;;;;29498:40:0;;-1:-1:-1;;;29498:40:0;;:105;;-1:-1:-1;;;;;;;29555:48:0;;-1:-1:-1;;;29555:48:0;29498:105;:172;;;-1:-1:-1;;;;;;;29620:50:0;;-1:-1:-1;;;29620:50:0;29498:172;:225;;;-1:-1:-1;;;;;;;;;;16625:40:0;;;29687:36;29478:245;29359:372;-1:-1:-1;;29359:372:0:o;31164:100::-;31218:13;31251:5;31244:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31164:100;:::o;32725:214::-;32793:7;32821:16;32829:7;34749:4;34783:12;-1:-1:-1;34773:22:0;34692:111;32821:16;32813:74;;;;-1:-1:-1;;;32813:74:0;;19960:2:1;32813:74:0;;;19942:21:1;19999:2;19979:18;;;19972:30;20038:34;20018:18;;;20011:62;-1:-1:-1;;;20089:18:1;;;20082:43;20142:19;;32813:74:0;;;;;;;;;-1:-1:-1;32907:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32907:24:0;;32725:214::o;32246:413::-;32319:13;32335:24;32351:7;32335:15;:24::i;:::-;32319:40;;32384:5;-1:-1:-1;;;;;32378:11:0;:2;-1:-1:-1;;;;;32378:11:0;;;32370:58;;;;-1:-1:-1;;;32370:58:0;;16793:2:1;32370:58:0;;;16775:21:1;16832:2;16812:18;;;16805:30;16871:34;16851:18;;;16844:62;-1:-1:-1;;;16922:18:1;;;16915:32;16964:19;;32370:58:0;16591:398:1;32370:58:0;2888:10;-1:-1:-1;;;;;32463:21:0;;;;:62;;-1:-1:-1;32488:37:0;32505:5;2888:10;33370:164;:::i;32488:37::-;32441:169;;;;-1:-1:-1;;;32441:169:0;;13303:2:1;32441:169:0;;;13285:21:1;13342:2;13322:18;;;13315:30;13381:34;13361:18;;;13354:62;13452:27;13432:18;;;13425:55;13497:19;;32441:169:0;13101:421:1;32441:169:0;32623:28;32632:2;32636:7;32645:5;32623:8;:28::i;:::-;32308:351;32246:413;;:::o;46305:100::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;46377:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46305:100:::0;:::o;46411:77::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;46467:6:::1;:15:::0;;-1:-1:-1;;46467:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46411:77::o;33601:162::-;33727:28;33737:4;33743:2;33747:7;33727:9;:28::i;28464:823::-;28553:7;28589:16;28599:5;28589:9;:16::i;:::-;28581:5;:24;28573:71;;;;-1:-1:-1;;;28573:71:0;;10207:2:1;28573:71:0;;;10189:21:1;10246:2;10226:18;;;10219:30;10285:34;10265:18;;;10258:62;-1:-1:-1;;;10336:18:1;;;10329:32;10378:19;;28573:71:0;10005:398:1;28573:71:0;28655:22;27880:12;;;28655:22;;28787:426;28811:14;28807:1;:18;28787:426;;;28847:31;28881:14;;;:11;:14;;;;;;;;;28847:48;;;;;;;;;-1:-1:-1;;;;;28847:48:0;;;;;-1:-1:-1;;;28847:48:0;;;;;;;;;;;;28914:28;28910:103;;28983:14;;;-1:-1:-1;28910:103:0;29052:5;-1:-1:-1;;;;;29031:26:0;:17;-1:-1:-1;;;;;29031:26:0;;29027:175;;;29097:5;29082:11;:20;29078:77;;;-1:-1:-1;29134:1:0;-1:-1:-1;29127:8:0;;-1:-1:-1;;;29127:8:0;29078:77;29173:13;;;;:::i;:::-;;;;29027:175;-1:-1:-1;28827:3:0;;;;:::i;:::-;;;;28787:426;;;-1:-1:-1;29223:56:0;;-1:-1:-1;;;29223:56:0;;19129:2:1;29223:56:0;;;19111:21:1;19168:2;19148:18;;;19141:30;19207:34;19187:18;;;19180:62;-1:-1:-1;;;19258:18:1;;;19251:44;19312:19;;29223:56:0;18927:410:1;45668:95:0;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45733:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45733:24:0;;::::1;::::0;;;::::1;::::0;;45668:95::o;46494:280::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;46539:7:::1;46560:42;46645:3;46616:26;:21;46640:2;46616:26;:::i;:::-;:32;;;;:::i;:::-;46552:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46538:115;;;46668:2;46660:11;;;::::0;::::1;;46682:7;46703;4157:6:::0;;-1:-1:-1;;;;;4157:6:0;;4084:87;46703:7:::1;-1:-1:-1::0;;;;;46695:21:0::1;46724;46695:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46681:69;;;46765:2;46757:11;;;::::0;::::1;43924:138:::0;43999:11;42802:1;42788:11;:15;:52;;;;;42822:18;;42807:11;:33;;42788:52;42780:85;;;;-1:-1:-1;;;42780:85:0;;;;;;;:::i;:::-;42910:9;;42895:11;42880:12;;:26;;;;:::i;:::-;:39;;42872:72;;;;-1:-1:-1;;;42872:72:0;;;;;;;:::i;:::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23:::1;4296:68;;;;-1:-1:-1::0;;;4296:68:0::1;;;;;;;:::i;:::-;44029:27:::2;44039:3;44044:11;44029:9;:27::i;33834:177::-:0;33964:39;33981:4;33987:2;33991:7;33964:39;;;;;;;;;;;;:16;:39::i;44318:635::-;44393:16;44421:23;44447:17;44457:6;44447:9;:17::i;:::-;44421:43;;44471:30;44518:15;44504:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44504:30:0;;44471:63;;44541:22;44574:23;44610:309;44635:15;44617;:33;:64;;;;;44672:9;;44654:14;:27;;44617:64;44610:309;;;44692:25;44720:23;44728:14;44720:7;:23::i;:::-;44692:51;;44779:6;-1:-1:-1;;;;;44758:27:0;:17;-1:-1:-1;;;;;44758:27:0;;44754:131;;;44831:14;44798:13;44812:15;44798:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44858:17;;;;:::i;:::-;;;;44754:131;44895:16;;;;:::i;:::-;;;;44683:236;44610:309;;;-1:-1:-1;44934:13:0;;44318:635;-1:-1:-1;;;;44318:635:0:o;45769:74::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45825:4:::1;:12:::0;45769:74::o;27977:187::-;28044:7;27880:12;;28072:5;:21;28064:69;;;;-1:-1:-1;;;28064:69:0;;12134:2:1;28064:69:0;;;12116:21:1;12173:2;12153:18;;;12146:30;12212:34;12192:18;;;12185:62;-1:-1:-1;;;12263:18:1;;;12256:33;12306:19;;28064:69:0;11932:399:1;28064:69:0;-1:-1:-1;28151:5:0;27977:187::o;45947:132::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;46035:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;41743:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41710:28::-;;;;;;;:::i;30973:124::-;31037:7;31064:20;31076:7;31064:11;:20::i;:::-;:25;;30973:124;-1:-1:-1;;30973:124:0:o;45849:92::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45914:21:0::1;:9;:21:::0;45849:92::o;29795:221::-;29859:7;-1:-1:-1;;;;;29887:19:0;;29879:75;;;;-1:-1:-1;;;29879:75:0;;14071:2:1;29879:75:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:34;14129:18;;;14122:62;-1:-1:-1;;;14200:18:1;;;14193:41;14251:19;;29879:75:0;13869:407:1;29879:75:0;-1:-1:-1;;;;;;29980:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29980:27:0;;29795:221::o;4735:103::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;4800:30:::1;4827:1;4800:18;:30::i;:::-;4735:103::o:0;46199:100::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;46271:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;31333:104::-:0;31389:13;31422:7;31415:14;;;;;:::i;44068:244::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44157:1:::1;44143:11;:15;44135:49;;;;-1:-1:-1::0;;;44135:49:0::1;;;;;;;:::i;:::-;44229:9;;44214:11;44199:12;;:26;;;;:::i;:::-;:39;;44191:72;;;;-1:-1:-1::0;;;44191:72:0::1;;;;;;;:::i;:::-;44272:34;44282:10;44294:11;44272:9;:34::i;:::-;44068:244:::0;:::o;42964:296::-;43029:11;42802:1;42788:11;:15;:52;;;;;42822:18;;42807:11;:33;;42788:52;42780:85;;;;-1:-1:-1;;;42780:85:0;;;;;;;:::i;:::-;42910:9;;42895:11;42880:12;;:26;;;;:::i;:::-;:39;;42872:72;;;;-1:-1:-1;;;42872:72:0;;;;;;;:::i;:::-;43058:6:::1;::::0;::::1;;43057:7;43049:43;;;::::0;-1:-1:-1;;;43049:43:0;;15251:2:1;43049:43:0::1;::::0;::::1;15233:21:1::0;15290:2;15270:18;;;15263:30;-1:-1:-1;;;15309:18:1;;;15302:53;15372:18;;43049:43:0::1;15049:347:1::0;43049:43:0::1;43108:15;::::0;;;::::1;;;43107:16;43099:42;;;::::0;-1:-1:-1;;;43099:42:0;;13729:2:1;43099:42:0::1;::::0;::::1;13711:21:1::0;13768:2;13748:18;;;13741:30;-1:-1:-1;;;13787:18:1;;;13780:43;13840:18;;43099:42:0::1;13527:337:1::0;43099:42:0::1;43176:11;43169:4;;:18;;;;:::i;:::-;43156:9;:31;;43148:63;;;::::0;-1:-1:-1;;;43148:63:0;;20777:2:1;43148:63:0::1;::::0;::::1;20759:21:1::0;20816:2;20796:18;;;20789:30;-1:-1:-1;;;20835:18:1;;;20828:49;20894:18;;43148:63:0::1;20575:343:1::0;43148:63:0::1;43220:34;43230:10;43242:11;43220:9;:34::i;33011:288::-:0;-1:-1:-1;;;;;33106:24:0;;2888:10;33106:24;;33098:63;;;;-1:-1:-1;;;33098:63:0;;16019:2:1;33098:63:0;;;16001:21:1;16058:2;16038:18;;;16031:30;16097:28;16077:18;;;16070:56;16143:18;;33098:63:0;15817:350:1;33098:63:0;2888:10;33174:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33174:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33174:53:0;;;;;;;;;;33243:48;;9201:41:1;;;33174:42:0;;2888:10;33243:48;;9174:18:1;33243:48:0;;;;;;;33011:288;;:::o;41781:31::-;;;;;;;:::i;43266:650::-;43376:11;;43389:19;;42530:128;42563:11;;42530:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42618:28:0;;-1:-1:-1;;42635:10:0;5896:2:1;5892:15;5888:53;42618:28:0;;;5876:66:1;42589:4:0;;-1:-1:-1;5958:12:1;;;-1:-1:-1;42618:28:0;;;;;;;;;;;;42608:39;;;;;;42530:18;:128::i;:::-;42512:196;;;;-1:-1:-1;;;42512:196:0;;12944:2:1;42512:196:0;;;12926:21:1;12983:2;12963:18;;;12956:30;13022:32;13002:18;;;12995:60;13072:18;;42512:196:0;12742:354:1;42512:196:0;43464:10:::1;43416:24;43443:32:::0;;;:20:::1;:32;::::0;;;;;43491:6:::1;::::0;::::1;;43490:7;43482:43;;;::::0;-1:-1:-1;;;43482:43:0;;15251:2:1;43482:43:0::1;::::0;::::1;15233:21:1::0;15290:2;15270:18;;;15263:30;-1:-1:-1;;;15309:18:1;;;15302:53;15372:18;;43482:43:0::1;15049:347:1::0;43482:43:0::1;43540:15;::::0;;;::::1;;;43532:45;;;::::0;-1:-1:-1;;;43532:45:0;;9861:2:1;43532:45:0::1;::::0;::::1;9843:21:1::0;9900:2;9880:18;;;9873:30;-1:-1:-1;;;9919:18:1;;;9912:47;9976:18;;43532:45:0::1;9659:341:1::0;43532:45:0::1;43626:20;::::0;43592:30:::1;43611:11:::0;43592:16;:30:::1;:::i;:::-;:54;;43584:95;;;::::0;-1:-1:-1;;;43584:95:0;;11777:2:1;43584:95:0::1;::::0;::::1;11759:21:1::0;11816:2;11796:18;;;11789:30;11855;11835:18;;;11828:58;11903:18;;43584:95:0::1;11575:352:1::0;43584:95:0::1;43720:9;;43706:11;43691:12;;:26;;;;:::i;:::-;:38;43688:124;;;43769:11;43762:4;;:18;;;;:::i;:::-;43749:9;:31;;43741:63;;;::::0;-1:-1:-1;;;43741:63:0;;20777:2:1;43741:63:0::1;::::0;::::1;20759:21:1::0;20816:2;20796:18;;;20789:30;-1:-1:-1;;;20835:18:1;;;20828:49;20894:18;;43741:63:0::1;20575:343:1::0;43741:63:0::1;43845:10;43824:32;::::0;;;:20:::1;:32;::::0;;;;:45;;43858:11;;43824:32;:45:::1;::::0;43858:11;;43824:45:::1;:::i;:::-;::::0;;;-1:-1:-1;43876:34:0::1;::::0;-1:-1:-1;43886:10:0::1;43898:11:::0;43876:9:::1;:34::i;:::-;43409:507;43266:650:::0;;;;;;:::o;34082:355::-;34241:28;34251:4;34257:2;34261:7;34241:9;:28::i;:::-;34302:48;34325:4;34331:2;34335:7;34344:5;34302:22;:48::i;:::-;34280:149;;;;-1:-1:-1;;;34280:149:0;;;;;;;:::i;:::-;34082:355;;;;:::o;45546:116::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45624:19:::1;:32:::0;45546:116::o;44959:494::-;45058:13;45099:17;45107:8;34749:4;34783:12;-1:-1:-1;34773:22:0;34692:111;45099:17;45083:98;;;;-1:-1:-1;;;45083:98:0;;15603:2:1;45083:98:0;;;15585:21:1;15642:2;15622:18;;;15615:30;15681:34;15661:18;;;15654:62;-1:-1:-1;;;15732:18:1;;;15725:45;15787:19;;45083:98:0;15401:411:1;45083:98:0;45194:8;;;;;;;45190:64;;45229:17;45222:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44959:494;;;:::o;45190:64::-;45262:28;45293:10;:8;:10::i;:::-;45262:41;;45348:1;45323:14;45317:28;:32;:130;;;;;;;;;;;;;;;;;45385:14;45401:19;:8;:17;:19::i;:::-;45422:9;45368:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45317:130;45310:137;44959:494;-1:-1:-1;;;44959:494:0:o;45459:81::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45517:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;45517:17:0;;::::1;::::0;;;::::1;::::0;;45459:81::o;46085:108::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;46158:20:::1;:29:::0;46085:108::o;4993:201::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5082:22:0;::::1;5074:73;;;::::0;-1:-1:-1;;;5074:73:0;;10610:2:1;5074:73:0::1;::::0;::::1;10592:21:1::0;10649:2;10629:18;;;10622:30;10688:34;10668:18;;;10661:62;-1:-1:-1;;;10739:18:1;;;10732:36;10785:19;;5074:73:0::1;10408:402:1::0;5074:73:0::1;5158:28;5177:8;5158:18;:28::i;38818:196::-:0;38933:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38933:29:0;-1:-1:-1;;;;;38933:29:0;;;;;;;;;38978:28;;38933:24;;38978:28;;;;;;;38818:196;;;:::o;36917:1783::-;37032:35;37070:20;37082:7;37070:11;:20::i;:::-;37145:18;;37032:58;;-1:-1:-1;37103:22:0;;-1:-1:-1;;;;;37129:34:0;2888:10;-1:-1:-1;;;;;37129:34:0;;:87;;;-1:-1:-1;2888:10:0;37180:20;37192:7;37180:11;:20::i;:::-;-1:-1:-1;;;;;37180:36:0;;37129:87;:154;;;-1:-1:-1;37250:18:0;;37233:50;;2888:10;33370:164;:::i;37233:50::-;37103:181;;37305:17;37297:80;;;;-1:-1:-1;;;37297:80:0;;16374:2:1;37297:80:0;;;16356:21:1;16413:2;16393:18;;;16386:30;16452:34;16432:18;;;16425:62;-1:-1:-1;;;16503:18:1;;;16496:48;16561:19;;37297:80:0;16172:414:1;37297:80:0;37420:4;-1:-1:-1;;;;;37398:26:0;:13;:18;;;-1:-1:-1;;;;;37398:26:0;;37390:77;;;;-1:-1:-1;;;37390:77:0;;14483:2:1;37390:77:0;;;14465:21:1;14522:2;14502:18;;;14495:30;14561:34;14541:18;;;14534:62;-1:-1:-1;;;14612:18:1;;;14605:36;14658:19;;37390:77:0;14281:402:1;37390:77:0;-1:-1:-1;;;;;37486:16:0;;37478:66;;;;-1:-1:-1;;;37478:66:0;;12538:2:1;37478:66:0;;;12520:21:1;12577:2;12557:18;;;12550:30;12616:34;12596:18;;;12589:62;-1:-1:-1;;;12667:18:1;;;12660:35;12712:19;;37478:66:0;12336:401:1;37478:66:0;37665:49;37682:1;37686:7;37695:13;:18;;;37665:8;:49::i;:::-;-1:-1:-1;;;;;37919:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37919:31:0;;;-1:-1:-1;;;;;37919:31:0;;;-1:-1:-1;;37919:31:0;;;;;;;37965:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37965:29:0;;;;;;;;;;;;;38041:43;;;;;;;;;;38067:15;38041:43;;;;;;;;;;38018:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;38018:66:0;;;;;;;-1:-1:-1;;;38018:66:0;;;;;;;;;;;;37919:18;38346:11;;38018:20;;38346:11;:::i;:::-;38413:1;38372:24;;;:11;:24;;;;;:29;38324:33;;-1:-1:-1;;;;;;38372:29:0;38368:227;;38436:20;38444:11;34749:4;34783:12;-1:-1:-1;34773:22:0;34692:111;38436:20;38432:152;;;38504:64;;;;;;;;38519:18;;-1:-1:-1;;;;;38504:64:0;;;;;;38539:28;;;;38504:64;;;;;;;;;;-1:-1:-1;38477:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;38477:91:0;-1:-1:-1;;;;;;38477:91:0;;;;;;;;;;;;38432:152;38631:7;38627:2;-1:-1:-1;;;;;38612:27:0;38621:4;-1:-1:-1;;;;;38612:27:0;;;;;;;;;;;38650:42;37021:1679;;;36917:1783;;;:::o;34811:104::-;34880:27;34890:2;34894:8;34880:27;;;;;;;;;;;;:9;:27::i;30261:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;30364:16:0;30372:7;34749:4;34783:12;-1:-1:-1;34773:22:0;34692:111;30364:16;30356:71;;;;-1:-1:-1;;;30356:71:0;;11017:2:1;30356:71:0;;;10999:21:1;11056:2;11036:18;;;11029:30;11095:34;11075:18;;;11068:62;-1:-1:-1;;;11146:18:1;;;11139:40;11196:19;;30356:71:0;10815:406:1;30356:71:0;30440:26;30492:12;30481:7;:23;30477:103;;30542:22;30552:12;30542:7;:22;:::i;:::-;:26;;30567:1;30542:26;:::i;:::-;30521:47;;30477:103;30612:7;30592:242;30629:18;30621:4;:26;30592:242;;30672:31;30706:17;;;:11;:17;;;;;;;;;30672:51;;;;;;;;;-1:-1:-1;;;;;30672:51:0;;;;;-1:-1:-1;;;30672:51:0;;;;;;;;;;;;30742:28;30738:85;;30798:9;30261:650;-1:-1:-1;;;;30261:650:0:o;30738:85::-;-1:-1:-1;30649:6:0;;;;:::i;:::-;;;;30592:242;;;-1:-1:-1;30846:57:0;;-1:-1:-1;;;30846:57:0;;19544:2:1;30846:57:0;;;19526:21:1;19583:2;19563:18;;;19556:30;19622:34;19602:18;;;19595:62;-1:-1:-1;;;19673:18:1;;;19666:45;19728:19;;30846:57:0;19342:411:1;5354:191:0;5447:6;;;-1:-1:-1;;;;;5464:17:0;;;-1:-1:-1;;;;;;5464:17:0;;;;;;;5497:40;;5447:6;;;5464:17;5447:6;;5497:40;;5428:16;;5497:40;5417:128;5354:191;:::o;24255:190::-;24380:4;24433;24404:25;24417:5;24424:4;24404:12;:25::i;:::-;:33;;24255:190;-1:-1:-1;;;;24255:190:0:o;39579:804::-;39734:4;-1:-1:-1;;;;;39755:13:0;;6695:20;6743:8;39751:625;;39791:72;;-1:-1:-1;;;39791:72:0;;-1:-1:-1;;;;;39791:36:0;;;;;:72;;2888:10;;39842:4;;39848:7;;39857:5;;39791:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39791:72:0;;;;;;;;-1:-1:-1;;39791:72:0;;;;;;;;;;;;:::i;:::-;;;39787:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40037:13:0;;40033:273;;40080:61;;-1:-1:-1;;;40080:61:0;;;;;;;:::i;40033:273::-;40256:6;40250:13;40241:6;40237:2;40233:15;40226:38;39787:534;-1:-1:-1;;;;;;39914:55:0;-1:-1:-1;;;39914:55:0;;-1:-1:-1;39907:62:0;;39751:625;-1:-1:-1;40360:4:0;39751:625;39579:804;;;;;;:::o;46780:104::-;46840:13;46869:9;46862:16;;;;;:::i;370:723::-;426:13;647:10;643:53;;-1:-1:-1;;674:10:0;;;;;;;;;;;;-1:-1:-1;;;674:10:0;;;;;370:723::o;643:53::-;721:5;706:12;762:78;769:9;;762:78;;795:8;;;;:::i;:::-;;-1:-1:-1;818:10:0;;-1:-1:-1;826:2:0;818:10;;:::i;:::-;;;762:78;;;850:19;882:6;872:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;872:17:0;;850:39;;900:154;907:10;;900:154;;934:11;944:1;934:11;;:::i;:::-;;-1:-1:-1;1003:10:0;1011:2;1003:5;:10;:::i;:::-;990:24;;:2;:24;:::i;:::-;977:39;;960:6;967;960:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;960:56:0;;;;;;;;-1:-1:-1;1031:11:0;1040:2;1031:11;;:::i;:::-;;;900:154;;35192:1471;35315:20;35338:12;-1:-1:-1;;;;;35369:16:0;;35361:62;;;;-1:-1:-1;;;35361:62:0;;18727:2:1;35361:62:0;;;18709:21:1;18766:2;18746:18;;;18739:30;18805:34;18785:18;;;18778:62;-1:-1:-1;;;18856:18:1;;;18849:31;18897:19;;35361:62:0;18525:397:1;35361:62:0;35568:21;35576:12;34749:4;34783:12;-1:-1:-1;34773:22:0;34692:111;35568:21;35567:22;35559:64;;;;-1:-1:-1;;;35559:64:0;;18369:2:1;35559:64:0;;;18351:21:1;18408:2;18388:18;;;18381:30;18447:31;18427:18;;;18420:59;18496:18;;35559:64:0;18167:353:1;35559:64:0;35654:12;35642:8;:24;;35634:71;;;;-1:-1:-1;;;35634:71:0;;20374:2:1;35634:71:0;;;20356:21:1;20413:2;20393:18;;;20386:30;20452:34;20432:18;;;20425:62;-1:-1:-1;;;20503:18:1;;;20496:32;20545:19;;35634:71:0;20172:398:1;35634:71:0;35735:1;35724:8;:12;35716:60;;;;-1:-1:-1;;;35716:60:0;;17545:2:1;35716:60:0;;;17527:21:1;17584:2;17564:18;;;17557:30;17623:34;17603:18;;;17596:62;-1:-1:-1;;;17674:18:1;;;17667:33;17717:19;;35716:60:0;17343:399:1;35716:60:0;-1:-1:-1;;;;;35896:16:0;;35863:30;35896:16;;;:12;:16;;;;;;;;;35863:49;;;;;;;;;-1:-1:-1;;;;;35863:49:0;;;;;-1:-1:-1;;;35863:49:0;;;;;;;;;;;35942:135;;;;;;;;35968:19;;35863:49;;35942:135;;;35968:39;;35998:8;;35968:39;:::i;:::-;-1:-1:-1;;;;;35942:135:0;;;;;36057:8;36022:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35942:135:0;;;;;;-1:-1:-1;;;;;35923:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;35923:154:0;;;;;;;;;;;;36116:43;;;;;;;;;;;36142:15;36116:43;;;;;;;;36088:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36088:71:0;-1:-1:-1;;;;;;36088:71:0;;;;;;;;;;;;;;;;;;36100:12;;36220:325;36244:8;36240:1;:12;36220:325;;;36279:38;;36304:12;;-1:-1:-1;;;;;36279:38:0;;;36296:1;;36279:38;;36296:1;;36279:38;36358:59;36389:1;36393:2;36397:12;36411:5;36358:22;:59::i;:::-;36332:172;;;;-1:-1:-1;;;36332:172:0;;;;;;;:::i;:::-;36519:14;;;;:::i;:::-;;;;36254:3;;;;;:::i;:::-;;;;36220:325;;;-1:-1:-1;36557:12:0;:27;;;36595:60;34082:355;24807:675;24890:7;24933:4;24890:7;24948:497;24972:5;:12;24968:1;:16;24948:497;;;25006:20;25029:5;25035:1;25029:8;;;;;;;;:::i;:::-;;;;;;;25006:31;;25072:12;25056;:28;25052:382;;25558:13;25608:15;;;25644:4;25637:15;;;25691:4;25675:21;;25184:57;;25052:382;;;25558:13;25608:15;;;25644:4;25637:15;;;25691:4;25675:21;;25361:57;;25052:382;-1:-1:-1;24986:3:0;;;;:::i;:::-;;;;24948:497;;;-1:-1:-1;25462:12:0;24807:675;-1:-1:-1;;;24807:675:0:o;-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:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;4994:301::-;5053:6;5106:2;5094:9;5085:7;5081:23;5077:32;5074:52;;;5122:1;5119;5112:12;5074:52;5161:9;5148:23;-1:-1:-1;;;;;5204:5:1;5200:46;5193:5;5190:57;5180:85;;5261:1;5258;5251:12;5485:257;5526:3;5564:5;5558:12;5591:6;5586:3;5579:19;5607:63;5663:6;5656:4;5651:3;5647:14;5640:4;5633:5;5629:16;5607:63;:::i;:::-;5724:2;5703:15;-1:-1:-1;;5699:29:1;5690:39;;;;5731:4;5686:50;;5485:257;-1:-1:-1;;5485:257:1:o;5981:1527::-;6205:3;6243:6;6237:13;6269:4;6282:51;6326:6;6321:3;6316:2;6308:6;6304:15;6282:51;:::i;:::-;6396:13;;6355:16;;;;6418:55;6396:13;6355:16;6440:15;;;6418:55;:::i;:::-;6562:13;;6495:20;;;6535:1;;6622;6644:18;;;;6697;;;;6724:93;;6802:4;6792:8;6788:19;6776:31;;6724:93;6865:2;6855:8;6852:16;6832:18;6829:40;6826:167;;;-1:-1:-1;;;6892:33:1;;6948:4;6945:1;6938:15;6978:4;6899:3;6966:17;6826:167;7009:18;7036:110;;;;7160:1;7155:328;;;;7002:481;;7036:110;-1:-1:-1;;7071:24:1;;7057:39;;7116:20;;;;-1:-1:-1;7036:110:1;;7155:328;21178:1;21171:14;;;21215:4;21202:18;;7250:1;7264:169;7278:8;7275:1;7272:15;7264:169;;;7360:14;;7345:13;;;7338:37;7403:16;;;;7295:10;;7264:169;;;7268:3;;7464:8;7457:5;7453:20;7446:27;;7002:481;-1:-1:-1;7499:3:1;;5981:1527;-1:-1:-1;;;;;;;;;;;5981:1527:1:o;7931:488::-;-1:-1:-1;;;;;8200:15:1;;;8182:34;;8252:15;;8247:2;8232:18;;8225:43;8299:2;8284:18;;8277:34;;;8347:3;8342:2;8327:18;;8320:31;;;8125:4;;8368:45;;8393:19;;8385:6;8368:45;:::i;:::-;8360:53;7931:488;-1:-1:-1;;;;;;7931:488:1:o;8424:632::-;8595:2;8647:21;;;8717:13;;8620:18;;;8739:22;;;8566:4;;8595:2;8818:15;;;;8792:2;8777:18;;;8566:4;8861:169;8875:6;8872:1;8869:13;8861:169;;;8936:13;;8924:26;;9005:15;;;;8970:12;;;;8897:1;8890:9;8861:169;;;-1:-1:-1;9047:3:1;;8424:632;-1:-1:-1;;;;;;8424:632:1:o;9435:219::-;9584:2;9573:9;9566:21;9547:4;9604:44;9644:2;9633:9;9629:18;9621:6;9604:44;:::i;11226:344::-;11428:2;11410:21;;;11467:2;11447:18;;;11440:30;-1:-1:-1;;;11501:2:1;11486:18;;11479:50;11561:2;11546:18;;11226:344::o;14688:356::-;14890:2;14872:21;;;14909:18;;;14902:30;14968:34;14963:2;14948:18;;14941:62;15035:2;15020:18;;14688:356::o;16994:344::-;17196:2;17178:21;;;17235:2;17215:18;;;17208:30;-1:-1:-1;;;17269:2:1;17254:18;;17247:50;17329:2;17314:18;;16994:344::o;17747:415::-;17949:2;17931:21;;;17988:2;17968:18;;;17961:30;18027:34;18022:2;18007:18;;18000:62;-1:-1:-1;;;18093:2:1;18078:18;;18071:49;18152:3;18137:19;;17747:415::o;21231:253::-;21271:3;-1:-1:-1;;;;;21360:2:1;21357:1;21353:10;21390:2;21387:1;21383:10;21421:3;21417:2;21413:12;21408:3;21405:21;21402:47;;;21429:18;;:::i;:::-;21465:13;;21231:253;-1:-1:-1;;;;21231:253:1:o;21489:128::-;21529:3;21560:1;21556:6;21553:1;21550:13;21547:39;;;21566:18;;:::i;:::-;-1:-1:-1;21602:9:1;;21489:128::o;21622:120::-;21662:1;21688;21678:35;;21693:18;;:::i;:::-;-1:-1:-1;21727:9:1;;21622:120::o;21747:168::-;21787:7;21853:1;21849;21845:6;21841:14;21838:1;21835:21;21830:1;21823:9;21816:17;21812:45;21809:71;;;21860:18;;:::i;:::-;-1:-1:-1;21900:9:1;;21747:168::o;21920:125::-;21960:4;21988:1;21985;21982:8;21979:34;;;21993:18;;:::i;:::-;-1:-1:-1;22030:9:1;;21920:125::o;22050:258::-;22122:1;22132:113;22146:6;22143:1;22140:13;22132:113;;;22222:11;;;22216:18;22203:11;;;22196:39;22168:2;22161:10;22132:113;;;22263:6;22260:1;22257:13;22254:48;;;-1:-1:-1;;22298:1:1;22280:16;;22273:27;22050:258::o;22313:136::-;22352:3;22380:5;22370:39;;22389:18;;:::i;:::-;-1:-1:-1;;;22425:18:1;;22313:136::o;22454:380::-;22533:1;22529:12;;;;22576;;;22597:61;;22651:4;22643:6;22639:17;22629:27;;22597:61;22704:2;22696:6;22693:14;22673:18;22670:38;22667:161;;;22750:10;22745:3;22741:20;22738:1;22731:31;22785:4;22782:1;22775:15;22813:4;22810:1;22803:15;22667:161;;22454:380;;;:::o;22839:135::-;22878:3;-1:-1:-1;;22899:17:1;;22896:43;;;22919:18;;:::i;:::-;-1:-1:-1;22966:1:1;22955:13;;22839:135::o;22979:112::-;23011:1;23037;23027:35;;23042:18;;:::i;:::-;-1:-1:-1;23076:9:1;;22979:112::o;23096:127::-;23157:10;23152:3;23148:20;23145:1;23138:31;23188:4;23185:1;23178:15;23212:4;23209:1;23202:15;23228:127;23289:10;23284:3;23280:20;23277:1;23270:31;23320:4;23317:1;23310:15;23344:4;23341:1;23334:15;23360:127;23421:10;23416:3;23412:20;23409:1;23402:31;23452:4;23449:1;23442:15;23476:4;23473:1;23466:15;23492:127;23553:10;23548:3;23544:20;23541:1;23534:31;23584:4;23581:1;23574:15;23608:4;23605:1;23598:15;23624:131;-1:-1:-1;;;;;;23698:32:1;;23688:43;;23678:71;;23745:1;23742;23735:12

Swarm Source

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