ETH Price: $2,525.62 (+0.02%)

Token

PoetryByRobots (PBR)
 

Overview

Max Total Supply

31 PBR

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PBR
0xf3A856479A28ae8dde8a1Df7b11E5ECfe93Abbaa
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:
PoetryByRobots

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/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



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



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



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



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



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/ERC721A.sol



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..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
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 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    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) private _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.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    /**
     * @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(collectionSize). 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(), ".json"))
                : "";
    }

    /**
     * @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:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `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");

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

// File: contracts/PoetryByRobots.sol



pragma solidity ^0.8.0;




contract PoetryByRobots is Ownable, ERC721A, ReentrancyGuard {
    uint256 public immutable maxPerAddressDuringMint;
    uint256 public immutable mintPrice;


    constructor(uint256 maxBatchSize_, uint256 collectionSize_, uint256 mintPrice_)
        ERC721A("PoetryByRobots", "PBR", maxBatchSize_, collectionSize_)
    {
        maxPerAddressDuringMint = maxBatchSize_;
        mintPrice = mintPrice_;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function electricDream(uint256 quantity) external payable callerIsUser {
        require(totalSupply() + quantity <= collectionSize, "reached max supply");
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );
        require(msg.value >= quantity * mintPrice);
        _safeMint(msg.sender, quantity);
    }

    function devDream(uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= collectionSize, "reached max supply");
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );
        _safeMint(msg.sender, quantity);
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        uint bal = address(this).balance;
        (bool success, ) = msg.sender.call{value: bal}("");
        require(success, "Transfer failed.");
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    string private _baseTokenURI;

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function showBaseURI() external view onlyOwner returns (string memory) {
        return _baseTokenURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devDream","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"electricDream","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060015560006008553480156200001c57600080fd5b5060405162002742380380620027428339810160408190526200003f91620002b3565b6040518060400160405280600e81526020016d506f657472794279526f626f747360901b8152506040518060400160405280600381526020016228212960e91b81525084846200009e62000098620001b960201b60201c565b620001bd565b600081116200010b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000102565b8351620001829060029060208701906200020d565b508251620001989060039060208601906200020d565b5060a0919091526080525050600160095560c0929092525060e0526200031f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200021b90620002e2565b90600052602060002090601f0160209004810192826200023f57600085556200028a565b82601f106200025a57805160ff19168380011785556200028a565b828001600101855582156200028a579182015b828111156200028a5782518255916020019190600101906200026d565b50620002989291506200029c565b5090565b5b808211156200029857600081556001016200029d565b600080600060608486031215620002c957600080fd5b8351925060208401519150604084015190509250925092565b600181811c90821680620002f757607f821691505b602082108114156200031957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516123bf620003836000396000818161035e0152610eb70152600081816103c701528181610be90152610e3801526000818161160f015281816116390152611b1b015260008181610b710152610dc001526123bf6000f3fe6080604052600436106101b75760003560e01c80638bc35c2f116100ec578063ac4460021161008a578063d7224ba011610064578063d7224ba0146104d9578063dc33e681146104ef578063e985e9c51461050f578063f2fde38b1461055857600080fd5b8063ac44600214610484578063b88d4fde14610499578063c87b56dd146104b957600080fd5b8063996076f7116100c6578063996076f71461041c578063a22cb4651461043c578063a34986611461045c578063a8499b7f1461047157600080fd5b80638bc35c2f146103b55780638da5cb5b146103e957806395d89b411461040757600080fd5b806342842e0e116101595780636352211e116101335780636352211e1461032c5780636817c76c1461034c57806370a0823114610380578063715018a6146103a057600080fd5b806342842e0e146102cc5780634f6ccce7146102ec57806355f804b31461030c57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632f745c59146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611fb1565b610578565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105e5565b6040516101e8919061211e565b34801561021f57600080fd5b5061023361022e36600461205d565b610677565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611f87565b610707565b005b34801561027957600080fd5b506001545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611e33565b61081f565b3480156102b857600080fd5b5061027e6102c7366004611f87565b61082a565b3480156102d857600080fd5b5061026b6102e7366004611e33565b6109a3565b3480156102f857600080fd5b5061027e61030736600461205d565b6109be565b34801561031857600080fd5b5061026b610327366004611feb565b610a27565b34801561033857600080fd5b5061023361034736600461205d565b610a5d565b34801561035857600080fd5b5061027e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561038c57600080fd5b5061027e61039b366004611de5565b610a6f565b3480156103ac57600080fd5b5061026b610b00565b3480156103c157600080fd5b5061027e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103f557600080fd5b506000546001600160a01b0316610233565b34801561041357600080fd5b50610206610b36565b34801561042857600080fd5b5061026b61043736600461205d565b610b45565b34801561044857600080fd5b5061026b610457366004611f4b565b610c70565b34801561046857600080fd5b50610206610d35565b61026b61047f36600461205d565b610d6f565b34801561049057600080fd5b5061026b610ee8565b3480156104a557600080fd5b5061026b6104b4366004611e6f565b611000565b3480156104c557600080fd5b506102066104d436600461205d565b611039565b3480156104e557600080fd5b5061027e60085481565b3480156104fb57600080fd5b5061027e61050a366004611de5565b611106565b34801561051b57600080fd5b506101dc61052a366004611e00565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561056457600080fd5b5061026b610573366004611de5565b611111565b60006001600160e01b031982166380ac58cd60e01b14806105a957506001600160e01b03198216635b5e139f60e01b145b806105c457506001600160e01b0319821663780e9d6360e01b145b806105df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105f4906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610620906122b1565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b6000610684826001541190565b6106eb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071282610a5d565b9050806001600160a01b0316836001600160a01b031614156107815760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106e2565b336001600160a01b038216148061079d575061079d813361052a565b61080f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106e2565b61081a8383836111a9565b505050565b61081a838383611205565b600061083583610a6f565b821061088e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106e2565b600061089960015490565b905060008060005b83811015610943576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108f457805192505b876001600160a01b0316836001600160a01b031614156109305786841415610922575093506105df92505050565b8361092c816122ec565b9450505b508061093b816122ec565b9150506108a1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106e2565b61081a83838360405180602001604052806000815250611000565b60006109c960015490565b8210610a235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106e2565b5090565b6000546001600160a01b03163314610a515760405162461bcd60e51b81526004016106e290612131565b61081a600a8383611d39565b6000610a688261158d565b5192915050565b60006001600160a01b038216610adb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106e2565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610b2a5760405162461bcd60e51b81526004016106e290612131565b610b346000611737565b565b6060600380546105f4906122b1565b6000546001600160a01b03163314610b6f5760405162461bcd60e51b81526004016106e290612131565b7f000000000000000000000000000000000000000000000000000000000000000081610b9a60015490565b610ba491906121e4565b1115610be75760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016106e2565b7f000000000000000000000000000000000000000000000000000000000000000081610c1233611106565b610c1c91906121e4565b1115610c635760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106e2565b610c6d3382611787565b50565b6001600160a01b038216331415610cc95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106e2565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546060906001600160a01b03163314610d625760405162461bcd60e51b81526004016106e290612131565b600a80546105f4906122b1565b323314610dbe5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106e2565b7f000000000000000000000000000000000000000000000000000000000000000081610de960015490565b610df391906121e4565b1115610e365760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016106e2565b7f000000000000000000000000000000000000000000000000000000000000000081610e6133611106565b610e6b91906121e4565b1115610eb25760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106e2565b610edc7f000000000000000000000000000000000000000000000000000000000000000082612210565b341015610c6357600080fd5b6000546001600160a01b03163314610f125760405162461bcd60e51b81526004016106e290612131565b60026009541415610f655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e2565b60026009556040514790600090339083908381818185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610ff75760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106e2565b50506001600955565b61100b848484611205565b611017848484846117a5565b6110335760405162461bcd60e51b81526004016106e290612166565b50505050565b6060611046826001541190565b6110aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e2565b60006110b46118b3565b905060008151116110d457604051806020016040528060008152506110ff565b806110de846118c2565b6040516020016110ef9291906120a2565b6040516020818303038152906040525b9392505050565b60006105df826119c0565b6000546001600160a01b0316331461113b5760405162461bcd60e51b81526004016106e290612131565b6001600160a01b0381166111a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e2565b610c6d81611737565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112108261158d565b80519091506000906001600160a01b0316336001600160a01b0316148061124757503361123c84610677565b6001600160a01b0316145b8061125957508151611259903361052a565b9050806112c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106e2565b846001600160a01b031682600001516001600160a01b0316146113375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106e2565b6001600160a01b03841661139b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106e2565b6113ab60008484600001516111a9565b6001600160a01b03851660009081526005602052604081208054600192906113dd9084906001600160801b031661222f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611429918591166121b9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114b18460016121e4565b6000818152600460205260409020549091506001600160a01b0316611543576114db816001541190565b156115435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526115ac826001541190565b61160b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106e2565b60007f0000000000000000000000000000000000000000000000000000000000000000831061166c5761165e7f000000000000000000000000000000000000000000000000000000000000000084612257565b6116699060016121e4565b90505b825b8181106116d6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116c357949350505050565b50806116ce8161229a565b91505061166e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106e2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117a1828260405180602001604052806000815250611a5e565b5050565b60006001600160a01b0384163b156118a757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e99033908990889088906004016120e1565b602060405180830381600087803b15801561180357600080fd5b505af1925050508015611833575060408051601f3d908101601f1916820190925261183091810190611fce565b60015b61188d573d808015611861576040519150601f19603f3d011682016040523d82523d6000602084013e611866565b606091505b5080516118855760405162461bcd60e51b81526004016106e290612166565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118ab565b5060015b949350505050565b6060600a80546105f4906122b1565b6060816118e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191057806118fa816122ec565b91506119099050600a836121fc565b91506118ea565b60008167ffffffffffffffff81111561192b5761192b61235d565b6040519080825280601f01601f191660200182016040528015611955576020820181803683370190505b5090505b84156118ab5761196a600183612257565b9150611977600a86612307565b6119829060306121e4565b60f81b81838151811061199757611997612347565b60200101906001600160f81b031916908160001a9053506119b9600a866121fc565b9450611959565b60006001600160a01b038216611a325760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106e2565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611ac15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106e2565b611acc816001541190565b15611b195760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106e2565b7f0000000000000000000000000000000000000000000000000000000000000000831115611b945760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106e2565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611bf09087906121b9565b6001600160801b03168152602001858360200151611c0e91906121b9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cf260008884886117a5565b611d0e5760405162461bcd60e51b81526004016106e290612166565b81611d18816122ec565b9250508080611d26906122ec565b915050611ca5565b506001819055611585565b828054611d45906122b1565b90600052602060002090601f016020900481019282611d675760008555611dad565b82601f10611d805782800160ff19823516178555611dad565b82800160010185558215611dad579182015b82811115611dad578235825591602001919060010190611d92565b50610a239291505b80821115610a235760008155600101611db5565b80356001600160a01b0381168114611de057600080fd5b919050565b600060208284031215611df757600080fd5b6110ff82611dc9565b60008060408385031215611e1357600080fd5b611e1c83611dc9565b9150611e2a60208401611dc9565b90509250929050565b600080600060608486031215611e4857600080fd5b611e5184611dc9565b9250611e5f60208501611dc9565b9150604084013590509250925092565b60008060008060808587031215611e8557600080fd5b611e8e85611dc9565b9350611e9c60208601611dc9565b925060408501359150606085013567ffffffffffffffff80821115611ec057600080fd5b818701915087601f830112611ed457600080fd5b813581811115611ee657611ee661235d565b604051601f8201601f19908116603f01168101908382118183101715611f0e57611f0e61235d565b816040528281528a6020848701011115611f2757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f5e57600080fd5b611f6783611dc9565b915060208301358015158114611f7c57600080fd5b809150509250929050565b60008060408385031215611f9a57600080fd5b611fa383611dc9565b946020939093013593505050565b600060208284031215611fc357600080fd5b81356110ff81612373565b600060208284031215611fe057600080fd5b81516110ff81612373565b60008060208385031215611ffe57600080fd5b823567ffffffffffffffff8082111561201657600080fd5b818501915085601f83011261202a57600080fd5b81358181111561203957600080fd5b86602082850101111561204b57600080fd5b60209290920196919550909350505050565b60006020828403121561206f57600080fd5b5035919050565b6000815180845261208e81602086016020860161226e565b601f01601f19169290920160200192915050565b600083516120b481846020880161226e565b8351908301906120c881836020880161226e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211490830184612076565b9695505050505050565b6020815260006110ff6020830184612076565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121db576121db61231b565b01949350505050565b600082198211156121f7576121f761231b565b500190565b60008261220b5761220b612331565b500490565b600081600019048311821515161561222a5761222a61231b565b500290565b60006001600160801b038381169083168181101561224f5761224f61231b565b039392505050565b6000828210156122695761226961231b565b500390565b60005b83811015612289578181015183820152602001612271565b838111156110335750506000910152565b6000816122a9576122a961231b565b506000190190565b600181811c908216806122c557607f821691505b602082108114156122e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123005761230061231b565b5060010190565b60008261231657612316612331565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c6d57600080fdfea2646970667358221220893ef86037db1fe5db1390729bc64be6bb5af3cea2018c4e112c4ce1d4d30bd264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000007c585087238000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638bc35c2f116100ec578063ac4460021161008a578063d7224ba011610064578063d7224ba0146104d9578063dc33e681146104ef578063e985e9c51461050f578063f2fde38b1461055857600080fd5b8063ac44600214610484578063b88d4fde14610499578063c87b56dd146104b957600080fd5b8063996076f7116100c6578063996076f71461041c578063a22cb4651461043c578063a34986611461045c578063a8499b7f1461047157600080fd5b80638bc35c2f146103b55780638da5cb5b146103e957806395d89b411461040757600080fd5b806342842e0e116101595780636352211e116101335780636352211e1461032c5780636817c76c1461034c57806370a0823114610380578063715018a6146103a057600080fd5b806342842e0e146102cc5780634f6ccce7146102ec57806355f804b31461030c57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632f745c59146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611fb1565b610578565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105e5565b6040516101e8919061211e565b34801561021f57600080fd5b5061023361022e36600461205d565b610677565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611f87565b610707565b005b34801561027957600080fd5b506001545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611e33565b61081f565b3480156102b857600080fd5b5061027e6102c7366004611f87565b61082a565b3480156102d857600080fd5b5061026b6102e7366004611e33565b6109a3565b3480156102f857600080fd5b5061027e61030736600461205d565b6109be565b34801561031857600080fd5b5061026b610327366004611feb565b610a27565b34801561033857600080fd5b5061023361034736600461205d565b610a5d565b34801561035857600080fd5b5061027e7f000000000000000000000000000000000000000000000000007c58508723800081565b34801561038c57600080fd5b5061027e61039b366004611de5565b610a6f565b3480156103ac57600080fd5b5061026b610b00565b3480156103c157600080fd5b5061027e7f000000000000000000000000000000000000000000000000000000000000001481565b3480156103f557600080fd5b506000546001600160a01b0316610233565b34801561041357600080fd5b50610206610b36565b34801561042857600080fd5b5061026b61043736600461205d565b610b45565b34801561044857600080fd5b5061026b610457366004611f4b565b610c70565b34801561046857600080fd5b50610206610d35565b61026b61047f36600461205d565b610d6f565b34801561049057600080fd5b5061026b610ee8565b3480156104a557600080fd5b5061026b6104b4366004611e6f565b611000565b3480156104c557600080fd5b506102066104d436600461205d565b611039565b3480156104e557600080fd5b5061027e60085481565b3480156104fb57600080fd5b5061027e61050a366004611de5565b611106565b34801561051b57600080fd5b506101dc61052a366004611e00565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561056457600080fd5b5061026b610573366004611de5565b611111565b60006001600160e01b031982166380ac58cd60e01b14806105a957506001600160e01b03198216635b5e139f60e01b145b806105c457506001600160e01b0319821663780e9d6360e01b145b806105df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105f4906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610620906122b1565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b6000610684826001541190565b6106eb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071282610a5d565b9050806001600160a01b0316836001600160a01b031614156107815760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106e2565b336001600160a01b038216148061079d575061079d813361052a565b61080f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106e2565b61081a8383836111a9565b505050565b61081a838383611205565b600061083583610a6f565b821061088e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106e2565b600061089960015490565b905060008060005b83811015610943576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108f457805192505b876001600160a01b0316836001600160a01b031614156109305786841415610922575093506105df92505050565b8361092c816122ec565b9450505b508061093b816122ec565b9150506108a1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106e2565b61081a83838360405180602001604052806000815250611000565b60006109c960015490565b8210610a235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106e2565b5090565b6000546001600160a01b03163314610a515760405162461bcd60e51b81526004016106e290612131565b61081a600a8383611d39565b6000610a688261158d565b5192915050565b60006001600160a01b038216610adb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106e2565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610b2a5760405162461bcd60e51b81526004016106e290612131565b610b346000611737565b565b6060600380546105f4906122b1565b6000546001600160a01b03163314610b6f5760405162461bcd60e51b81526004016106e290612131565b7f00000000000000000000000000000000000000000000000000000000000015b381610b9a60015490565b610ba491906121e4565b1115610be75760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016106e2565b7f000000000000000000000000000000000000000000000000000000000000001481610c1233611106565b610c1c91906121e4565b1115610c635760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106e2565b610c6d3382611787565b50565b6001600160a01b038216331415610cc95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106e2565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546060906001600160a01b03163314610d625760405162461bcd60e51b81526004016106e290612131565b600a80546105f4906122b1565b323314610dbe5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106e2565b7f00000000000000000000000000000000000000000000000000000000000015b381610de960015490565b610df391906121e4565b1115610e365760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016106e2565b7f000000000000000000000000000000000000000000000000000000000000001481610e6133611106565b610e6b91906121e4565b1115610eb25760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106e2565b610edc7f000000000000000000000000000000000000000000000000007c58508723800082612210565b341015610c6357600080fd5b6000546001600160a01b03163314610f125760405162461bcd60e51b81526004016106e290612131565b60026009541415610f655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e2565b60026009556040514790600090339083908381818185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610ff75760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106e2565b50506001600955565b61100b848484611205565b611017848484846117a5565b6110335760405162461bcd60e51b81526004016106e290612166565b50505050565b6060611046826001541190565b6110aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e2565b60006110b46118b3565b905060008151116110d457604051806020016040528060008152506110ff565b806110de846118c2565b6040516020016110ef9291906120a2565b6040516020818303038152906040525b9392505050565b60006105df826119c0565b6000546001600160a01b0316331461113b5760405162461bcd60e51b81526004016106e290612131565b6001600160a01b0381166111a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e2565b610c6d81611737565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112108261158d565b80519091506000906001600160a01b0316336001600160a01b0316148061124757503361123c84610677565b6001600160a01b0316145b8061125957508151611259903361052a565b9050806112c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106e2565b846001600160a01b031682600001516001600160a01b0316146113375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106e2565b6001600160a01b03841661139b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106e2565b6113ab60008484600001516111a9565b6001600160a01b03851660009081526005602052604081208054600192906113dd9084906001600160801b031661222f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611429918591166121b9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114b18460016121e4565b6000818152600460205260409020549091506001600160a01b0316611543576114db816001541190565b156115435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526115ac826001541190565b61160b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106e2565b60007f0000000000000000000000000000000000000000000000000000000000000014831061166c5761165e7f000000000000000000000000000000000000000000000000000000000000001484612257565b6116699060016121e4565b90505b825b8181106116d6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116c357949350505050565b50806116ce8161229a565b91505061166e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106e2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117a1828260405180602001604052806000815250611a5e565b5050565b60006001600160a01b0384163b156118a757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e99033908990889088906004016120e1565b602060405180830381600087803b15801561180357600080fd5b505af1925050508015611833575060408051601f3d908101601f1916820190925261183091810190611fce565b60015b61188d573d808015611861576040519150601f19603f3d011682016040523d82523d6000602084013e611866565b606091505b5080516118855760405162461bcd60e51b81526004016106e290612166565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118ab565b5060015b949350505050565b6060600a80546105f4906122b1565b6060816118e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191057806118fa816122ec565b91506119099050600a836121fc565b91506118ea565b60008167ffffffffffffffff81111561192b5761192b61235d565b6040519080825280601f01601f191660200182016040528015611955576020820181803683370190505b5090505b84156118ab5761196a600183612257565b9150611977600a86612307565b6119829060306121e4565b60f81b81838151811061199757611997612347565b60200101906001600160f81b031916908160001a9053506119b9600a866121fc565b9450611959565b60006001600160a01b038216611a325760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106e2565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611ac15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106e2565b611acc816001541190565b15611b195760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106e2565b7f0000000000000000000000000000000000000000000000000000000000000014831115611b945760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106e2565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611bf09087906121b9565b6001600160801b03168152602001858360200151611c0e91906121b9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cf260008884886117a5565b611d0e5760405162461bcd60e51b81526004016106e290612166565b81611d18816122ec565b9250508080611d26906122ec565b915050611ca5565b506001819055611585565b828054611d45906122b1565b90600052602060002090601f016020900481019282611d675760008555611dad565b82601f10611d805782800160ff19823516178555611dad565b82800160010185558215611dad579182015b82811115611dad578235825591602001919060010190611d92565b50610a239291505b80821115610a235760008155600101611db5565b80356001600160a01b0381168114611de057600080fd5b919050565b600060208284031215611df757600080fd5b6110ff82611dc9565b60008060408385031215611e1357600080fd5b611e1c83611dc9565b9150611e2a60208401611dc9565b90509250929050565b600080600060608486031215611e4857600080fd5b611e5184611dc9565b9250611e5f60208501611dc9565b9150604084013590509250925092565b60008060008060808587031215611e8557600080fd5b611e8e85611dc9565b9350611e9c60208601611dc9565b925060408501359150606085013567ffffffffffffffff80821115611ec057600080fd5b818701915087601f830112611ed457600080fd5b813581811115611ee657611ee661235d565b604051601f8201601f19908116603f01168101908382118183101715611f0e57611f0e61235d565b816040528281528a6020848701011115611f2757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f5e57600080fd5b611f6783611dc9565b915060208301358015158114611f7c57600080fd5b809150509250929050565b60008060408385031215611f9a57600080fd5b611fa383611dc9565b946020939093013593505050565b600060208284031215611fc357600080fd5b81356110ff81612373565b600060208284031215611fe057600080fd5b81516110ff81612373565b60008060208385031215611ffe57600080fd5b823567ffffffffffffffff8082111561201657600080fd5b818501915085601f83011261202a57600080fd5b81358181111561203957600080fd5b86602082850101111561204b57600080fd5b60209290920196919550909350505050565b60006020828403121561206f57600080fd5b5035919050565b6000815180845261208e81602086016020860161226e565b601f01601f19169290920160200192915050565b600083516120b481846020880161226e565b8351908301906120c881836020880161226e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211490830184612076565b9695505050505050565b6020815260006110ff6020830184612076565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121db576121db61231b565b01949350505050565b600082198211156121f7576121f761231b565b500190565b60008261220b5761220b612331565b500490565b600081600019048311821515161561222a5761222a61231b565b500290565b60006001600160801b038381169083168181101561224f5761224f61231b565b039392505050565b6000828210156122695761226961231b565b500390565b60005b83811015612289578181015183820152602001612271565b838111156110335750506000910152565b6000816122a9576122a961231b565b506000190190565b600181811c908216806122c557607f821691505b602082108114156122e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123005761230061231b565b5060010190565b60008261231657612316612331565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c6d57600080fdfea2646970667358221220893ef86037db1fe5db1390729bc64be6bb5af3cea2018c4e112c4ce1d4d30bd264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000007c585087238000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 5555
Arg [2] : mintPrice_ (uint256): 35000000000000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [2] : 000000000000000000000000000000000000000000000000007c585087238000


Deployed Bytecode Sourcemap

43555:2271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29533:422;;;;;;;;;;-1:-1:-1;29533:422:0;;;;;:::i;:::-;;:::i;:::-;;;6001:14:1;;5994:22;5976:41;;5964:2;5949:18;29533:422:0;;;;;;;;31494:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33198:292::-;;;;;;;;;;-1:-1:-1;33198:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5299:32:1;;;5281:51;;5269:2;5254:18;33198:292:0;5135:203:1;32719:413:0;;;;;;;;;;-1:-1:-1;32719:413:0;;;;;:::i;:::-;;:::i;:::-;;27889:100;;;;;;;;;;-1:-1:-1;27969:12:0;;27889:100;;;16636:25:1;;;16624:2;16609:18;27889:100:0;16490:177:1;34225:162:0;;;;;;;;;;-1:-1:-1;34225:162:0;;;;;:::i;:::-;;:::i;28597:864::-;;;;;;;;;;-1:-1:-1;28597:864:0;;;;;:::i;:::-;;:::i;34458:177::-;;;;;;;;;;-1:-1:-1;34458:177:0;;;;;:::i;:::-;;:::i;28066:228::-;;;;;;;;;;-1:-1:-1;28066:228:0;;;;;:::i;:::-;;:::i;45477:106::-;;;;;;;;;;-1:-1:-1;45477:106:0;;;;;:::i;:::-;;:::i;31303:124::-;;;;;;;;;;-1:-1:-1;31303:124:0;;;;;:::i;:::-;;:::i;43678:34::-;;;;;;;;;;;;;;;30019:258;;;;;;;;;;-1:-1:-1;30019:258:0;;;;;:::i;:::-;;:::i;7317:94::-;;;;;;;;;;;;;:::i;43623:48::-;;;;;;;;;;;;;;;6666:87;;;;;;;;;;-1:-1:-1;6712:7:0;6739:6;-1:-1:-1;;;;;6739:6:0;6666:87;;31663:104;;;;;;;;;;;;;:::i;44521:334::-;;;;;;;;;;-1:-1:-1;44521:334:0;;;;;:::i;:::-;;:::i;33562:311::-;;;;;;;;;;-1:-1:-1;33562:311:0;;;;;:::i;:::-;;:::i;45591:110::-;;;;;;;;;;;;;:::i;44110:403::-;;;;;;:::i;:::-;;:::i;44863:216::-;;;;;;;;;;;;;:::i;34706:355::-;;;;;;;;;;-1:-1:-1;34706:355:0;;;;;:::i;:::-;;:::i;31838:477::-;;;;;;;;;;-1:-1:-1;31838:477:0;;;;;:::i;:::-;;:::i;39597:43::-;;;;;;;;;;;;;;;;45319:113;;;;;;;;;;-1:-1:-1;45319:113:0;;;;;:::i;:::-;;:::i;33944:214::-;;;;;;;;;;-1:-1:-1;33944:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;34115:25:0;;;34086:4;34115:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33944:214;7566:192;;;;;;;;;;-1:-1:-1;7566:192:0;;;;;:::i;:::-;;:::i;29533:422::-;29680:4;-1:-1:-1;;;;;;29722:40:0;;-1:-1:-1;;;29722:40:0;;:105;;-1:-1:-1;;;;;;;29779:48:0;;-1:-1:-1;;;29779:48:0;29722:105;:172;;;-1:-1:-1;;;;;;;29844:50:0;;-1:-1:-1;;;29844:50:0;29722:172;:225;;;-1:-1:-1;;;;;;;;;;18761:40:0;;;29911:36;29702:245;29533:422;-1:-1:-1;;29533:422:0:o;31494:100::-;31548:13;31581:5;31574:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31494:100;:::o;33198:292::-;33302:7;33349:16;33357:7;35407:12;;-1:-1:-1;35397:22:0;35316:111;33349:16;33327:111;;;;-1:-1:-1;;;33327:111:0;;15875:2:1;33327:111:0;;;15857:21:1;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;-1:-1:-1;;;16004:18:1;;;15997:43;16057:19;;33327:111:0;;;;;;;;;-1:-1:-1;33458:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33458:24:0;;33198:292::o;32719:413::-;32792:13;32808:24;32824:7;32808:15;:24::i;:::-;32792:40;;32857:5;-1:-1:-1;;;;;32851:11:0;:2;-1:-1:-1;;;;;32851:11:0;;;32843:58;;;;-1:-1:-1;;;32843:58:0;;12405:2:1;32843:58:0;;;12387:21:1;12444:2;12424:18;;;12417:30;12483:34;12463:18;;;12456:62;-1:-1:-1;;;12534:18:1;;;12527:32;12576:19;;32843:58:0;12203:398:1;32843:58:0;5534:10;-1:-1:-1;;;;;32936:21:0;;;;:62;;-1:-1:-1;32961:37:0;32978:5;5534:10;33944:214;:::i;32961:37::-;32914:169;;;;-1:-1:-1;;;32914:169:0;;9262:2:1;32914:169:0;;;9244:21:1;9301:2;9281:18;;;9274:30;9340:34;9320:18;;;9313:62;9411:27;9391:18;;;9384:55;9456:19;;32914:169:0;9060:421:1;32914:169:0;33096:28;33105:2;33109:7;33118:5;33096:8;:28::i;:::-;32781:351;32719:413;;:::o;34225:162::-;34351:28;34361:4;34367:2;34371:7;34351:9;:28::i;28597:864::-;28722:7;28763:16;28773:5;28763:9;:16::i;:::-;28755:5;:24;28747:71;;;;-1:-1:-1;;;28747:71:0;;6454:2:1;28747:71:0;;;6436:21:1;6493:2;6473:18;;;6466:30;6532:34;6512:18;;;6505:62;-1:-1:-1;;;6583:18:1;;;6576:32;6625:19;;28747:71:0;6252:398:1;28747:71:0;28829:22;28854:13;27969:12;;;27889:100;28854:13;28829:38;;28878:19;28912:25;28966:9;28961:426;28985:14;28981:1;:18;28961:426;;;29021:31;29055:14;;;:11;:14;;;;;;;;;29021:48;;;;;;;;;-1:-1:-1;;;;;29021:48:0;;;;;-1:-1:-1;;;29021:48:0;;;;;;;;;;;;29088:28;29084:103;;29157:14;;;-1:-1:-1;29084:103:0;29226:5;-1:-1:-1;;;;;29205:26:0;:17;-1:-1:-1;;;;;29205:26:0;;29201:175;;;29271:5;29256:11;:20;29252:77;;;-1:-1:-1;29308:1:0;-1:-1:-1;29301:8:0;;-1:-1:-1;;;29301:8:0;29252:77;29347:13;;;;:::i;:::-;;;;29201:175;-1:-1:-1;29001:3:0;;;;:::i;:::-;;;;28961:426;;;-1:-1:-1;29397:56:0;;-1:-1:-1;;;29397:56:0;;14684:2:1;29397:56:0;;;14666:21:1;14723:2;14703:18;;;14696:30;14762:34;14742:18;;;14735:62;-1:-1:-1;;;14813:18:1;;;14806:44;14867:19;;29397:56:0;14482:410:1;34458:177:0;34588:39;34605:4;34611:2;34615:7;34588:39;;;;;;;;;;;;:16;:39::i;28066:228::-;28169:7;28210:13;27969:12;;;27889:100;28210:13;28202:5;:21;28194:69;;;;-1:-1:-1;;;28194:69:0;;7675:2:1;28194:69:0;;;7657:21:1;7714:2;7694:18;;;7687:30;7753:34;7733:18;;;7726:62;-1:-1:-1;;;7804:18:1;;;7797:33;7847:19;;28194:69:0;7473:399:1;28194:69:0;-1:-1:-1;28281:5:0;28066:228::o;45477:106::-;6712:7;6739:6;-1:-1:-1;;;;;6739:6:0;5534:10;6886:23;6878:68;;;;-1:-1:-1;;;6878:68:0;;;;;;;:::i;:::-;45552:23:::1;:13;45568:7:::0;;45552:23:::1;:::i;31303:124::-:0;31367:7;31394:20;31406:7;31394:11;:20::i;:::-;:25;;31303:124;-1:-1:-1;;31303:124:0:o;30019:258::-;30083:7;-1:-1:-1;;;;;30125:19:0;;30103:112;;;;-1:-1:-1;;;30103:112:0;;9688:2:1;30103:112:0;;;9670:21:1;9727:2;9707:18;;;9700:30;9766:34;9746:18;;;9739:62;-1:-1:-1;;;9817:18:1;;;9810:41;9868:19;;30103:112:0;9486:407:1;30103:112:0;-1:-1:-1;;;;;;30241:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30241:27:0;;30019:258::o;7317:94::-;6712:7;6739:6;-1:-1:-1;;;;;6739:6:0;5534:10;6886:23;6878:68;;;;-1:-1:-1;;;6878:68:0;;;;;;;:::i;:::-;7382:21:::1;7400:1;7382:9;:21::i;:::-;7317:94::o:0;31663:104::-;31719:13;31752:7;31745:14;;;;;:::i;44521:334::-;6712:7;6739:6;-1:-1:-1;;;;;6739:6:0;5534:10;6886:23;6878:68;;;;-1:-1:-1;;;6878:68:0;;;;;;;:::i;:::-;44623:14:::1;44611:8;44595:13;27969:12:::0;;;27889:100;44595:13:::1;:24;;;;:::i;:::-;:42;;44587:73;;;::::0;-1:-1:-1;;;44587:73:0;;10100:2:1;44587:73:0::1;::::0;::::1;10082:21:1::0;10139:2;10119:18;;;10112:30;-1:-1:-1;;;10158:18:1;;;10151:48;10216:18;;44587:73:0::1;9898:342:1::0;44587:73:0::1;44732:23;44720:8;44693:24;44706:10;44693:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44671:134;;;::::0;-1:-1:-1;;;44671:134:0;;14333:2:1;44671:134:0::1;::::0;::::1;14315:21:1::0;14372:2;14352:18;;;14345:30;-1:-1:-1;;;14391:18:1;;;14384:52;14453:18;;44671:134:0::1;14131:346:1::0;44671:134:0::1;44816:31;44826:10;44838:8;44816:9;:31::i;:::-;44521:334:::0;:::o;33562:311::-;-1:-1:-1;;;;;33680:24:0;;5534:10;33680:24;;33672:63;;;;-1:-1:-1;;;33672:63:0;;11631:2:1;33672:63:0;;;11613:21:1;11670:2;11650:18;;;11643:30;11709:28;11689:18;;;11682:56;11755:18;;33672:63:0;11429:350:1;33672:63:0;5534:10;33748:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33748:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33748:53:0;;;;;;;;;;33817:48;;5976:41:1;;;33748:42:0;;5534:10;33817:48;;5949:18:1;33817:48:0;;;;;;;33562:311;;:::o;45591:110::-;6712:7;6739:6;45647:13;;-1:-1:-1;;;;;6739:6:0;5534:10;6886:23;6878:68;;;;-1:-1:-1;;;6878:68:0;;;;;;;:::i;:::-;45680:13:::1;45673:20;;;;;:::i;44110:403::-:0;44024:9;44037:10;44024:23;44016:66;;;;-1:-1:-1;;;44016:66:0;;8903:2:1;44016:66:0;;;8885:21:1;8942:2;8922:18;;;8915:30;8981:32;8961:18;;;8954:60;9031:18;;44016:66:0;8701:354:1;44016:66:0;44228:14:::1;44216:8;44200:13;27969:12:::0;;;27889:100;44200:13:::1;:24;;;;:::i;:::-;:42;;44192:73;;;::::0;-1:-1:-1;;;44192:73:0;;10100:2:1;44192:73:0::1;::::0;::::1;10082:21:1::0;10139:2;10119:18;;;10112:30;-1:-1:-1;;;10158:18:1;;;10151:48;10216:18;;44192:73:0::1;9898:342:1::0;44192:73:0::1;44337:23;44325:8;44298:24;44311:10;44298:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44276:134;;;::::0;-1:-1:-1;;;44276:134:0;;14333:2:1;44276:134:0::1;::::0;::::1;14315:21:1::0;14372:2;14352:18;;;14345:30;-1:-1:-1;;;14391:18:1;;;14384:52;14453:18;;44276:134:0::1;14131:346:1::0;44276:134:0::1;44442:20;44453:9;44442:8:::0;:20:::1;:::i;:::-;44429:9;:33;;44421:42;;;::::0;::::1;44863:216:::0;6712:7;6739:6;-1:-1:-1;;;;;6739:6:0;5534:10;6886:23;6878:68;;;;-1:-1:-1;;;6878:68:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;::::0;-1:-1:-1;;;2402:63:0;;15099:2:1;2402:63:0::1;::::0;::::1;15081:21:1::0;15138:2;15118:18;;;15111:30;15177:33;15157:18;;;15150:61;15228:18;;2402:63:0::1;14897:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;44993:31:::2;::::0;44942:21:::2;::::0;44931:8:::2;::::0;44993:10:::2;::::0;44942:21;;44931:8;44993:31;44931:8;44993:31;44942:21;44993:10;:31:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44974:50;;;45043:7;45035:36;;;::::0;-1:-1:-1;;;45035:36:0;;12808:2:1;45035:36:0::2;::::0;::::2;12790:21:1::0;12847:2;12827:18;;;12820:30;-1:-1:-1;;;12866:18:1;;;12859:46;12922:18;;45035:36:0::2;12606:340:1::0;45035:36:0::2;-1:-1:-1::0;;1768:1:0::1;2722:7;:22:::0;44863:216::o;34706:355::-;34865:28;34875:4;34881:2;34885:7;34865:9;:28::i;:::-;34926:48;34949:4;34955:2;34959:7;34968:5;34926:22;:48::i;:::-;34904:149;;;;-1:-1:-1;;;34904:149:0;;;;;;;:::i;:::-;34706:355;;;;:::o;31838:477::-;31956:13;32009:16;32017:7;35407:12;;-1:-1:-1;35397:22:0;35316:111;32009:16;31987:113;;;;-1:-1:-1;;;31987:113:0;;11215:2:1;31987:113:0;;;11197:21:1;11254:2;11234:18;;;11227:30;11293:34;11273:18;;;11266:62;-1:-1:-1;;;11344:18:1;;;11337:45;11399:19;;31987:113:0;11013:411:1;31987:113:0;32113:21;32137:10;:8;:10::i;:::-;32113:34;;32202:1;32184:7;32178:21;:25;:129;;;;;;;;;;;;;;;;;32247:7;32256:18;:7;:16;:18::i;:::-;32230:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32178:129;32158:149;31838:477;-1:-1:-1;;;31838:477:0:o;45319:113::-;45377:7;45404:20;45418:5;45404:13;:20::i;7566:192::-;6712:7;6739:6;-1:-1:-1;;;;;6739:6:0;5534:10;6886:23;6878:68;;;;-1:-1:-1;;;6878:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7655:22:0;::::1;7647:73;;;::::0;-1:-1:-1;;;7647:73:0;;6857:2:1;7647:73:0::1;::::0;::::1;6839:21:1::0;6896:2;6876:18;;;6869:30;6935:34;6915:18;;;6908:62;-1:-1:-1;;;6986:18:1;;;6979:36;7032:19;;7647:73:0::1;6655:402:1::0;7647:73:0::1;7731:19;7741:8;7731:9;:19::i;39393:196::-:0;39508:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39508:29:0;-1:-1:-1;;;;;39508:29:0;;;;;;;;;39553:28;;39508:24;;39553:28;;;;;;;39393:196;;;:::o;37566:1709::-;37681:35;37719:20;37731:7;37719:11;:20::i;:::-;37794:18;;37681:58;;-1:-1:-1;37752:22:0;;-1:-1:-1;;;;;37778:34:0;5534:10;-1:-1:-1;;;;;37778:34:0;;:87;;;-1:-1:-1;5534:10:0;37829:20;37841:7;37829:11;:20::i;:::-;-1:-1:-1;;;;;37829:36:0;;37778:87;:154;;;-1:-1:-1;37899:18:0;;37882:50;;5534:10;33944:214;:::i;37882:50::-;37752:181;;37968:17;37946:117;;;;-1:-1:-1;;;37946:117:0;;11986:2:1;37946:117:0;;;11968:21:1;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;-1:-1:-1;;;12115:18:1;;;12108:48;12173:19;;37946:117:0;11784:414:1;37946:117:0;38120:4;-1:-1:-1;;;;;38098:26:0;:13;:18;;;-1:-1:-1;;;;;38098:26:0;;38076:114;;;;-1:-1:-1;;;38076:114:0;;10447:2:1;38076:114:0;;;10429:21:1;10486:2;10466:18;;;10459:30;10525:34;10505:18;;;10498:62;-1:-1:-1;;;10576:18:1;;;10569:36;10622:19;;38076:114:0;10245:402:1;38076:114:0;-1:-1:-1;;;;;38209:16:0;;38201:66;;;;-1:-1:-1;;;38201:66:0;;8079:2:1;38201:66:0;;;8061:21:1;8118:2;8098:18;;;8091:30;8157:34;8137:18;;;8130:62;-1:-1:-1;;;8208:18:1;;;8201:35;8253:19;;38201:66:0;7877:401:1;38201:66:0;38388:49;38405:1;38409:7;38418:13;:18;;;38388:8;:49::i;:::-;-1:-1:-1;;;;;38450:18:0;;;;;;:12;:18;;;;;:31;;38480:1;;38450:18;:31;;38480:1;;-1:-1:-1;;;;;38450:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38450:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38492:16:0;;-1:-1:-1;38492:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38492:16:0;;:29;;-1:-1:-1;;38492:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38492:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38555:43:0;;;;;;;;-1:-1:-1;;;;;38555:43:0;;;;;;38581:15;38555:43;;;;;;;;;-1:-1:-1;38532:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38532:66:0;-1:-1:-1;;;;;;38532:66:0;;;;;;;;;;;38860:11;38544:7;-1:-1:-1;38860:11:0;:::i;:::-;38927:1;38886:24;;;:11;:24;;;;;:29;38838:33;;-1:-1:-1;;;;;;38886:29:0;38882:288;;38950:20;38958:11;35407:12;;-1:-1:-1;35397:22:0;35316:111;38950:20;38946:213;;;39018:125;;;;;;;;39055:18;;-1:-1:-1;;;;;39018:125:0;;;;;;39096:28;;;;39018:125;;;;;;;;;;-1:-1:-1;38991:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;38991:152:0;-1:-1:-1;;;;;;38991:152:0;;;;;;;;;;;;38946:213;39206:7;39202:2;-1:-1:-1;;;;;39187:27:0;39196:4;-1:-1:-1;;;;;39187:27:0;;;;;;;;;;;39225:42;37670:1605;;;37566:1709;;;:::o;30559:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;30694:16:0;30702:7;35407:12;;-1:-1:-1;35397:22:0;35316:111;30694:16;30686:71;;;;-1:-1:-1;;;30686:71:0;;7264:2:1;30686:71:0;;;7246:21:1;7303:2;7283:18;;;7276:30;7342:34;7322:18;;;7315:62;-1:-1:-1;;;7393:18:1;;;7386:40;7443:19;;30686:71:0;7062:406:1;30686:71:0;30770:26;30822:12;30811:7;:23;30807:103;;30872:22;30882:12;30872:7;:22;:::i;:::-;:26;;30897:1;30872:26;:::i;:::-;30851:47;;30807:103;30942:7;30922:242;30959:18;30951:4;:26;30922:242;;31002:31;31036:17;;;:11;:17;;;;;;;;;31002:51;;;;;;;;;-1:-1:-1;;;;;31002:51:0;;;;;-1:-1:-1;;;31002:51:0;;;;;;;;;;;;31072:28;31068:85;;31128:9;30559:682;-1:-1:-1;;;;30559:682:0:o;31068:85::-;-1:-1:-1;30979:6:0;;;;:::i;:::-;;;;30922:242;;;-1:-1:-1;31176:57:0;;-1:-1:-1;;;31176:57:0;;15459:2:1;31176:57:0;;;15441:21:1;15498:2;15478:18;;;15471:30;15537:34;15517:18;;;15510:62;-1:-1:-1;;;15588:18:1;;;15581:45;15643:19;;31176:57:0;15257:411:1;7766:173:0;7822:16;7841:6;;-1:-1:-1;;;;;7858:17:0;;;-1:-1:-1;;;;;;7858:17:0;;;;;;7891:40;;7841:6;;;;;;;7891:40;;7822:16;7891:40;7811:128;7766:173;:::o;35435:114::-;35504:27;35514:2;35518:8;35504:27;;;;;;;;;;;;:9;:27::i;:::-;35435:114;;:::o;41268:985::-;41423:4;-1:-1:-1;;;;;41444:13:0;;9035:20;9083:8;41440:806;;41497:175;;-1:-1:-1;;;41497:175:0;;-1:-1:-1;;;;;41497:36:0;;;;;:175;;5534:10;;41591:4;;41618:7;;41648:5;;41497:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41497:175:0;;;;;;;;-1:-1:-1;;41497:175:0;;;;;;;;;;;;:::i;:::-;;;41476:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41859:13:0;;41855:321;;41902:109;;-1:-1:-1;;;41902:109:0;;;;;;;:::i;41855:321::-;42126:6;42120:13;42111:6;42107:2;42103:15;42096:38;41476:715;-1:-1:-1;;;;;;41736:55:0;-1:-1:-1;;;41736:55:0;;-1:-1:-1;41729:62:0;;41440:806;-1:-1:-1;42230:4:0;41440:806;41268:985;;;;;;:::o;45709:114::-;45769:13;45802;45795:20;;;;;:::i;3070:723::-;3126:13;3347:10;3343:53;;-1:-1:-1;;3374:10:0;;;;;;;;;;;;-1:-1:-1;;;3374:10:0;;;;;3070:723::o;3343:53::-;3421:5;3406:12;3462:78;3469:9;;3462:78;;3495:8;;;;:::i;:::-;;-1:-1:-1;3518:10:0;;-1:-1:-1;3526:2:0;3518:10;;:::i;:::-;;;3462:78;;;3550:19;3582:6;3572:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3572:17:0;;3550:39;;3600:154;3607:10;;3600:154;;3634:11;3644:1;3634:11;;:::i;:::-;;-1:-1:-1;3703:10:0;3711:2;3703:5;:10;:::i;:::-;3690:24;;:2;:24;:::i;:::-;3677:39;;3660:6;3667;3660:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3660:56:0;;;;;;;;-1:-1:-1;3731:11:0;3740:2;3731:11;;:::i;:::-;;;3600:154;;30285:266;30346:7;-1:-1:-1;;;;;30388:19:0;;30366:118;;;;-1:-1:-1;;;30366:118:0;;8485:2:1;30366:118:0;;;8467:21:1;8524:2;8504:18;;;8497:30;8563:34;8543:18;;;8536:62;-1:-1:-1;;;8614:18:1;;;8607:47;8671:19;;30366:118:0;8283:413:1;30366:118:0;-1:-1:-1;;;;;;30510:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;30510:32:0;;-1:-1:-1;;;;;30510:32:0;;30285:266::o;35912:1400::-;36058:12;;-1:-1:-1;;;;;36089:16:0;;36081:62;;;;-1:-1:-1;;;36081:62:0;;13931:2:1;36081:62:0;;;13913:21:1;13970:2;13950:18;;;13943:30;14009:34;13989:18;;;13982:62;-1:-1:-1;;;14060:18:1;;;14053:31;14101:19;;36081:62:0;13729:397:1;36081:62:0;36288:21;36296:12;35407;;-1:-1:-1;35397:22:0;35316:111;36288:21;36287:22;36279:64;;;;-1:-1:-1;;;36279:64:0;;13573:2:1;36279:64:0;;;13555:21:1;13612:2;13592:18;;;13585:30;13651:31;13631:18;;;13624:59;13700:18;;36279:64:0;13371:353:1;36279:64:0;36374:12;36362:8;:24;;36354:71;;;;-1:-1:-1;;;36354:71:0;;16289:2:1;36354:71:0;;;16271:21:1;16328:2;16308:18;;;16301:30;16367:34;16347:18;;;16340:62;-1:-1:-1;;;16418:18:1;;;16411:32;16460:19;;36354:71:0;16087:398:1;36354:71:0;-1:-1:-1;;;;;36545:16:0;;36512:30;36545:16;;;:12;:16;;;;;;;;;36512:49;;;;;;;;;-1:-1:-1;;;;;36512:49:0;;;;;-1:-1:-1;;;36512:49:0;;;;;;;;;;;36591:135;;;;;;;;36617:19;;36512:49;;36591:135;;;36617:39;;36647:8;;36617:39;:::i;:::-;-1:-1:-1;;;;;36591:135:0;;;;;36706:8;36671:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36591:135:0;;;;;;-1:-1:-1;;;;;36572:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;36572:154:0;;;;;;;;;;;;36765:43;;;;;;;;;;;36791:15;36765:43;;;;;;;;36737:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36737:71:0;-1:-1:-1;;;;;;36737:71:0;;;;;;;;;;;;;;;;;;36749:12;;36869:325;36893:8;36889:1;:12;36869:325;;;36928:38;;36953:12;;-1:-1:-1;;;;;36928:38:0;;;36945:1;;36928:38;;36945:1;;36928:38;37007:59;37038:1;37042:2;37046:12;37060:5;37007:22;:59::i;:::-;36981:172;;;;-1:-1:-1;;;36981:172:0;;;;;;;:::i;:::-;37168:14;;;;:::i;:::-;;;;36903:3;;;;;:::i;:::-;;;;36869:325;;;-1:-1:-1;37206:12:0;:27;;;37244:60;34706:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:637::-;4563:3;4601:6;4595:13;4617:53;4663:6;4658:3;4651:4;4643:6;4639:17;4617:53;:::i;:::-;4733:13;;4692:16;;;;4755:57;4733:13;4692:16;4789:4;4777:17;;4755:57;:::i;:::-;-1:-1:-1;;;4834:20:1;;4863:22;;;4912:1;4901:13;;4283:637;-1:-1:-1;;;;4283:637:1:o;5343:488::-;-1:-1:-1;;;;;5612:15:1;;;5594:34;;5664:15;;5659:2;5644:18;;5637:43;5711:2;5696:18;;5689:34;;;5759:3;5754:2;5739:18;;5732:31;;;5537:4;;5780:45;;5805:19;;5797:6;5780:45;:::i;:::-;5772:53;5343:488;-1:-1:-1;;;;;;5343:488:1:o;6028:219::-;6177:2;6166:9;6159:21;6140:4;6197:44;6237:2;6226:9;6222:18;6214:6;6197:44;:::i;10652:356::-;10854:2;10836:21;;;10873:18;;;10866:30;10932:34;10927:2;10912:18;;10905:62;10999:2;10984:18;;10652:356::o;12951:415::-;13153:2;13135:21;;;13192:2;13172:18;;;13165:30;13231:34;13226:2;13211:18;;13204:62;-1:-1:-1;;;13297:2:1;13282:18;;13275:49;13356:3;13341:19;;12951:415::o;16672:253::-;16712:3;-1:-1:-1;;;;;16801:2:1;16798:1;16794:10;16831:2;16828:1;16824:10;16862:3;16858:2;16854:12;16849:3;16846:21;16843:47;;;16870:18;;:::i;:::-;16906:13;;16672:253;-1:-1:-1;;;;16672:253:1:o;16930:128::-;16970:3;17001:1;16997:6;16994:1;16991:13;16988:39;;;17007:18;;:::i;:::-;-1:-1:-1;17043:9:1;;16930:128::o;17063:120::-;17103:1;17129;17119:35;;17134:18;;:::i;:::-;-1:-1:-1;17168:9:1;;17063:120::o;17188:168::-;17228:7;17294:1;17290;17286:6;17282:14;17279:1;17276:21;17271:1;17264:9;17257:17;17253:45;17250:71;;;17301:18;;:::i;:::-;-1:-1:-1;17341:9:1;;17188:168::o;17361:246::-;17401:4;-1:-1:-1;;;;;17514:10:1;;;;17484;;17536:12;;;17533:38;;;17551:18;;:::i;:::-;17588:13;;17361:246;-1:-1:-1;;;17361:246:1:o;17612:125::-;17652:4;17680:1;17677;17674:8;17671:34;;;17685:18;;:::i;:::-;-1:-1:-1;17722:9:1;;17612:125::o;17742:258::-;17814:1;17824:113;17838:6;17835:1;17832:13;17824:113;;;17914:11;;;17908:18;17895:11;;;17888:39;17860:2;17853:10;17824:113;;;17955:6;17952:1;17949:13;17946:48;;;-1:-1:-1;;17990:1:1;17972:16;;17965:27;17742:258::o;18005:136::-;18044:3;18072:5;18062:39;;18081:18;;:::i;:::-;-1:-1:-1;;;18117:18:1;;18005:136::o;18146:380::-;18225:1;18221:12;;;;18268;;;18289:61;;18343:4;18335:6;18331:17;18321:27;;18289:61;18396:2;18388:6;18385:14;18365:18;18362:38;18359:161;;;18442:10;18437:3;18433:20;18430:1;18423:31;18477:4;18474:1;18467:15;18505:4;18502:1;18495:15;18359:161;;18146:380;;;:::o;18531:135::-;18570:3;-1:-1:-1;;18591:17:1;;18588:43;;;18611:18;;:::i;:::-;-1:-1:-1;18658:1:1;18647:13;;18531:135::o;18671:112::-;18703:1;18729;18719:35;;18734:18;;:::i;:::-;-1:-1:-1;18768:9:1;;18671:112::o;18788:127::-;18849:10;18844:3;18840:20;18837:1;18830:31;18880:4;18877:1;18870:15;18904:4;18901:1;18894:15;18920:127;18981:10;18976:3;18972:20;18969:1;18962:31;19012:4;19009:1;19002:15;19036:4;19033:1;19026:15;19052:127;19113:10;19108:3;19104:20;19101:1;19094:31;19144:4;19141:1;19134:15;19168:4;19165:1;19158:15;19184:127;19245:10;19240:3;19236:20;19233:1;19226:31;19276:4;19273:1;19266:15;19300:4;19297:1;19290:15;19316:131;-1:-1:-1;;;;;;19390:32:1;;19380:43;;19370:71;;19437:1;19434;19427:12

Swarm Source

ipfs://893ef86037db1fe5db1390729bc64be6bb5af3cea2018c4e112c4ce1d4d30bd2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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