ETH Price: $2,907.82 (-4.04%)
Gas: 2 Gwei

Token

RichGang (RichGang)
 

Overview

Max Total Supply

2,216 RichGang

Holders

771

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
raylin51.eth
Balance
2 RichGang
0x88508c2cc76c6042b4e5912b03c512ff1c05df43
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:
RichGang

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-27
*/

// Sources flattened with hardhat v2.9.1 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/security/[email protected]


// 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/introspection/[email protected]


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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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/utils/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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

pragma solidity ^0.8.0;

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


// File 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()))
        : "";
  }

  /**
   * @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 @openzeppelin/contracts/utils/cryptography/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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


// File contracts/RichGang.sol



pragma solidity ^0.8.0;





contract RichGang is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  bytes32 public merkle_root;
  mapping(address => bool) allowlistMinted;

  struct SaleConfig {
    uint32 publicSaleStartTime;
    uint64 mintlistPrice;
    uint64 publicPrice;
    uint32 publicSaleKey;
  }

  SaleConfig public saleConfig;


  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForDevs_
  ) ERC721A("RichGang", "RichGang", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForDevs = amountForDevs_;
    saleConfig.publicSaleStartTime = uint32(block.timestamp);
    saleConfig.mintlistPrice = 0 ether;
    saleConfig.publicPrice = 0 ether;
    saleConfig.publicSaleKey = 0;
    require(
      amountForDevs_ <= collectionSize_,
      "larger collection size needed"
    );
  }
   function endAuctionAndSetupNonAuctionSaleInfo(
    uint64 mintlistPriceWei,
    uint64 publicPriceWei,
    uint32 publicSaleStartTime,
    uint32 publicSaleKey
  ) external onlyOwner {
    saleConfig = SaleConfig(
      publicSaleStartTime,
      mintlistPriceWei,
      publicPriceWei,
      publicSaleKey
    );
  }
  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function setMerkleRoot(bytes32 _merkle_root) external onlyOwner {
    merkle_root = _merkle_root;
  }

  function allowlistMint(bytes32[] memory proof) external payable callerIsUser {
    uint256 price = uint256(saleConfig.mintlistPrice);
    require(price != 0, "allowlist sale has not begun yet");
    require(allowlistMinted[msg.sender] == false, "You has minted");
    require(isQualified(proof, merkle_root, msg.sender), "not eligible for allowlist mint");
    require(totalSupply() + 1 <= collectionSize, "reached max supply");
    allowlistMinted[msg.sender] = true;
    _safeMint(msg.sender, 1);
    refundIfOver(price);
  }

  function publicSaleMint(uint256 quantity, uint256 callerPublicSaleKey)
    external
    payable
    callerIsUser
  {
    SaleConfig memory config = saleConfig;
    uint256 publicSaleKey = uint256(config.publicSaleKey);
    uint256 publicPrice = uint256(config.publicPrice);
    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);
    require(
      publicSaleKey == callerPublicSaleKey,
      "called with incorrect public sale key"
    );

    require(
      isPublicSaleOn(publicPrice, publicSaleKey, publicSaleStartTime),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(publicPrice * quantity);
  }

  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 isQualified(bytes32[] memory proof, bytes32 root, address account)
        virtual
        public
        view
        returns (bool)
    {
        // solhint-disable-next-line
        // validate whitelist user
        bytes32 leaf = keccak256(abi.encodePacked(account));
        if (MerkleProof.verify(proof, root, leaf)) {
            return (true);
        }
        return (false);
  }

  function isPublicSaleOn(
    uint256 publicPriceWei,
    uint256 publicSaleKey,
    uint256 publicSaleStartTime
  ) public view returns (bool) {
    return
      publicPriceWei != 0 &&
      publicSaleKey != 0 &&
      block.timestamp >= publicSaleStartTime;
  }

  
  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

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

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","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":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintlistPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleKey","type":"uint32"}],"name":"endAuctionAndSetupNonAuctionSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleKey","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"isQualified","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":"merkle_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"callerPublicSaleKey","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"mintlistPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"uint32","name":"publicSaleKey","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkle_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060015560006008553480156200001c57600080fd5b50604051620033c2380380620033c28339810160408190526200003f916200031f565b604051806040016040528060088152602001675269636847616e6760c01b815250604051806040016040528060088152602001675269636847616e6760c01b81525084846200009d620000976200022560201b60201c565b62000229565b600081116200010a5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000101565b83516200018190600290602087019062000279565b5082516200019790600390602086019062000279565b5060a0919091526080525050600160095560c083905260e0819052600c80546001600160c01b03191663ffffffff4216179055818111156200021c5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000101565b5050506200038a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000287906200034d565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b60008060006060848603121562000334578283fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200036257607f821691505b602082108114156200038457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612fb86200040a6000396000818161071a0152610cf701526000818161049e0152611747015260008181610d8d01528181610e1b01528181610e5301528181611fd60152818161200001526124f401526000818161108f015281816116cf01528181611d3b0152611d6d0152612fb86000f3fe60806040526004361061020f5760003560e01c80637cb6475911610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c51461067f578063f2fde38b146106c8578063f87cff75146106e8578063fbe1aa5114610708578063fd5e8efe1461073c57600080fd5b8063c87b56dd14610616578063cb91d8b314610636578063d7224ba014610649578063dc33e6811461065f57600080fd5b80639231ab2a116100e75780639231ab2a1461055f57806395d89b41146105ac578063a22cb465146105c1578063ac446002146105e1578063b88d4fde146105f657600080fd5b80637cb647591461046c5780638bc35c2f1461048c5780638da5cb5b146104c057806390aa0b0f146104de57600080fd5b8063375a069a1161019b578063537924ef1161016a578063537924ef146103e457806355f804b3146103f75780636352211e1461041757806370a0823114610437578063715018a61461045757600080fd5b8063375a069a14610364578063422030ba1461038457806342842e0e146103a45780634f6ccce7146103c457600080fd5b806318160ddd116101e257806318160ddd146102c557806321059e57146102e457806323b872dd146103045780632d20fb60146103245780632f745c591461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612b2b565b610752565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107bf565b6040516102409190612d06565b34801561027757600080fd5b5061028b610286366004612b13565b610851565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612a64565b6108e1565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612c1b565b6109f9565b34801561031057600080fd5b506102c361031f366004612938565b610ab5565b34801561033057600080fd5b506102c361033f366004612b13565b610ac0565b34801561035057600080fd5b506102d661035f366004612a64565b610b53565b34801561037057600080fd5b506102c361037f366004612b13565b610ccb565b34801561039057600080fd5b5061023461039f366004612bf0565b610e89565b3480156103b057600080fd5b506102c36103bf366004612938565b610eaf565b3480156103d057600080fd5b506102d66103df366004612b13565b610eca565b6102c36103f2366004612a8d565b610f33565b34801561040357600080fd5b506102c3610412366004612b63565b611139565b34801561042357600080fd5b5061028b610432366004612b13565b61116f565b34801561044357600080fd5b506102d66104523660046128ec565b611181565b34801561046357600080fd5b506102c3611212565b34801561047857600080fd5b506102c3610487366004612b13565b611248565b34801561049857600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b3480156104cc57600080fd5b506000546001600160a01b031661028b565b3480156104ea57600080fd5b50600c546105249063ffffffff808216916001600160401b036401000000008204811692600160601b830490911691600160a01b90041684565b604051610240949392919063ffffffff94851681526001600160401b0393841660208201529190921660408201529116606082015260800190565b34801561056b57600080fd5b5061057f61057a366004612b13565b611277565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610240565b3480156105b857600080fd5b5061025e611294565b3480156105cd57600080fd5b506102c36105dc366004612a2a565b6112a3565b3480156105ed57600080fd5b506102c3611368565b34801561060257600080fd5b506102c3610611366004612973565b611475565b34801561062257600080fd5b5061025e610631366004612b13565b6114ae565b6102c3610644366004612bcf565b61157a565b34801561065557600080fd5b506102d660085481565b34801561066b57600080fd5b506102d661067a3660046128ec565b6117e5565b34801561068b57600080fd5b5061023461069a366004612906565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d457600080fd5b506102c36106e33660046128ec565b6117f0565b3480156106f457600080fd5b50610234610703366004612abf565b61188b565b34801561071457600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561074857600080fd5b506102d6600a5481565b60006001600160e01b031982166380ac58cd60e01b148061078357506001600160e01b03198216635b5e139f60e01b145b8061079e57506001600160e01b0319821663780e9d6360e01b145b806107b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107ce90612ec0565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90612ec0565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085e826001541190565b6108c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ec8261116f565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108bc565b336001600160a01b03821614806109775750610977813361069a565b6109e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108bc565b6109f48383836118ec565b505050565b6000546001600160a01b03163314610a235760405162461bcd60e51b81526004016108bc90612d19565b6040805160808101825263ffffffff9384168082526001600160401b039687166020830181905295909616918101829052919092166060909101819052600c80546bffffffffffffffffffffffff1916909417640100000000909302929092176bffffffffffffffffffffffff60601b1916600160601b90910263ffffffff60a01b191617600160a01b909102179055565b6109f4838383611948565b6000546001600160a01b03163314610aea5760405162461bcd60e51b81526004016108bc90612d19565b60026009541415610b3d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b6002600955610b4b81611cca565b506001600955565b6000610b5e83611181565b8210610bb75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108bc565b6000610bc260015490565b905060008060005b83811015610c6b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c1c57805192505b876001600160a01b0316836001600160a01b03161415610c585786841415610c4a575093506107b992505050565b83610c5481612efb565b9450505b5080610c6381612efb565b915050610bca565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108bc565b6000546001600160a01b03163314610cf55760405162461bcd60e51b81526004016108bc90612d19565b7f000000000000000000000000000000000000000000000000000000000000000081610d2060015490565b610d2a9190612df3565b1115610d885760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016108bc565b610db27f000000000000000000000000000000000000000000000000000000000000000082612f16565b15610e145760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108bc565b6000610e407f000000000000000000000000000000000000000000000000000000000000000083612e0b565b905060005b818110156109f457610e77337f0000000000000000000000000000000000000000000000000000000000000000611eb3565b80610e8181612efb565b915050610e45565b60008315801590610e9957508215155b8015610ea55750814210155b90505b9392505050565b6109f483838360405180602001604052806000815250611475565b6000610ed560015490565b8210610f2f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108bc565b5090565b323314610f825760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108bc565b600c5464010000000090046001600160401b031680610fe35760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108bc565b336000908152600b602052604090205460ff16156110345760405162461bcd60e51b815260206004820152600e60248201526d165bdd481a185cc81b5a5b9d195960921b60448201526064016108bc565b61104182600a543361188b565b61108d5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108bc565b7f00000000000000000000000000000000000000000000000000000000000000006110b760015490565b6110c2906001612df3565b11156111055760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108bc565b336000818152600b60205260409020805460ff1916600190811790915561112c9190611eb3565b61113581611ecd565b5050565b6000546001600160a01b031633146111635760405162461bcd60e51b81526004016108bc90612d19565b6109f4600d8383612793565b600061117a82611f54565b5192915050565b60006001600160a01b0382166111ed5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108bc565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461123c5760405162461bcd60e51b81526004016108bc90612d19565b61124660006120fd565b565b6000546001600160a01b031633146112725760405162461bcd60e51b81526004016108bc90612d19565b600a55565b60408051808201909152600080825260208201526107b982611f54565b6060600380546107ce90612ec0565b6001600160a01b0382163314156112fc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108bc565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113925760405162461bcd60e51b81526004016108bc90612d19565b600260095414156113e55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b6002600955604051600090339047908381818185875af1925050503d806000811461142c576040519150601f19603f3d011682016040523d82523d6000602084013e611431565b606091505b5050905080610b4b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108bc565b611480848484611948565b61148c8484848461214d565b6114a85760405162461bcd60e51b81526004016108bc90612d4e565b50505050565b60606114bb826001541190565b61151f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108bc565b600061152961225b565b905060008151116115495760405180602001604052806000815250610ea8565b806115538461226a565b604051602001611564929190612c9a565b6040516020818303038152906040529392505050565b3233146115c95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108bc565b60408051608081018252600c5463ffffffff8082168084526001600160401b03640100000000840481166020860152600160601b840416948401859052600160a01b90920416606083018190529192908483146116765760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b60648201526084016108bc565b611681828483610e89565b6116cd5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108bc565b7f0000000000000000000000000000000000000000000000000000000000000000866116f860015490565b6117029190612df3565b11156117455760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108bc565b7f000000000000000000000000000000000000000000000000000000000000000086611770336117e5565b61177a9190612df3565b11156117c15760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108bc565b6117cb3387611eb3565b6117dd6117d88784612e1f565b611ecd565b505050505050565b60006107b982612383565b6000546001600160a01b0316331461181a5760405162461bcd60e51b81526004016108bc90612d19565b6001600160a01b03811661187f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bc565b611888816120fd565b50565b6040516bffffffffffffffffffffffff19606083901b16602082015260009081906034016040516020818303038152906040528051906020012090506118d2858583612421565b156118e1576001915050610ea8565b506000949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061195382611f54565b80519091506000906001600160a01b0316336001600160a01b0316148061198a57503361197f84610851565b6001600160a01b0316145b8061199c5750815161199c903361069a565b905080611a065760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108bc565b846001600160a01b031682600001516001600160a01b031614611a7a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108bc565b6001600160a01b038416611ade5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108bc565b611aee60008484600001516118ec565b6001600160a01b0385166000908152600560205260408120805460019290611b209084906001600160801b0316612e3e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611b6c91859116612dd1565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bf3846001612df3565b6000818152600460205260409020549091506001600160a01b0316611c8457611c1d816001541190565b15611c845760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117dd565b60085481611d1a5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108bc565b60006001611d288484612df3565b611d329190612e66565b9050611d5f60017f0000000000000000000000000000000000000000000000000000000000000000612e66565b811115611d9457611d9160017f0000000000000000000000000000000000000000000000000000000000000000612e66565b90505b611d9f816001541190565b611dfa5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108bc565b815b818111611e9f576000818152600460205260409020546001600160a01b0316611e8d576000611e2a82611f54565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e9781612efb565b915050611dfc565b50611eab816001612df3565b600855505050565b611135828260405180602001604052806000815250612437565b80341015611f165760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108bc565b8034111561188857336108fc611f2c8334612e66565b6040518115909202916000818181858888f19350505050158015611135573d6000803e3d6000fd5b6040805180820190915260008082526020820152611f73826001541190565b611fd25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108bc565b60007f00000000000000000000000000000000000000000000000000000000000000008310612033576120257f000000000000000000000000000000000000000000000000000000000000000084612e66565b612030906001612df3565b90505b825b81811061209c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561208957949350505050565b508061209481612ea9565b915050612035565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561224f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612191903390899088908890600401612cc9565b602060405180830381600087803b1580156121ab57600080fd5b505af19250505080156121db575060408051601f3d908101601f191682019092526121d891810190612b47565b60015b612235573d808015612209576040519150601f19603f3d011682016040523d82523d6000602084013e61220e565b606091505b50805161222d5760405162461bcd60e51b81526004016108bc90612d4e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612253565b5060015b949350505050565b6060600d80546107ce90612ec0565b60608161228e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122b857806122a281612efb565b91506122b19050600a83612e0b565b9150612292565b6000816001600160401b038111156122e057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561230a576020820181803683370190505b5090505b84156122535761231f600183612e66565b915061232c600a86612f16565b612337906030612df3565b60f81b81838151811061235a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061237c600a86612e0b565b945061230e565b60006001600160a01b0382166123f55760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108bc565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60008261242e8584612711565b14949350505050565b6001546001600160a01b03841661249a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108bc565b6124a5816001541190565b156124f25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108bc565b7f000000000000000000000000000000000000000000000000000000000000000083111561256d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108bc565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906125c9908790612dd1565b6001600160801b031681526020018583602001516125e79190612dd1565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127065760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46126ca600088848861214d565b6126e65760405162461bcd60e51b81526004016108bc90612d4e565b816126f081612efb565b92505080806126fe90612efb565b91505061267d565b5060018190556117dd565b600081815b845181101561278b57600085828151811061274157634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116127675760008381526020829052604090209250612778565b600081815260208490526040902092505b508061278381612efb565b915050612716565b509392505050565b82805461279f90612ec0565b90600052602060002090601f0160209004810192826127c15760008555612807565b82601f106127da5782800160ff19823516178555612807565b82800160010185558215612807579182015b828111156128075782358255916020019190600101906127ec565b50610f2f9291505b80821115610f2f576000815560010161280f565b80356001600160a01b038116811461283a57600080fd5b919050565b600082601f83011261284f578081fd5b813560206001600160401b0382111561286a5761286a612f56565b8160051b612879828201612da1565b838152828101908684018388018501891015612893578687fd5b8693505b858410156128b5578035835260019390930192918401918401612897565b50979650505050505050565b803563ffffffff8116811461283a57600080fd5b80356001600160401b038116811461283a57600080fd5b6000602082840312156128fd578081fd5b610ea882612823565b60008060408385031215612918578081fd5b61292183612823565b915061292f60208401612823565b90509250929050565b60008060006060848603121561294c578081fd5b61295584612823565b925061296360208501612823565b9150604084013590509250925092565b60008060008060808587031215612988578081fd5b61299185612823565b935060206129a0818701612823565b93506040860135925060608601356001600160401b03808211156129c2578384fd5b818801915088601f8301126129d5578384fd5b8135818111156129e7576129e7612f56565b6129f9601f8201601f19168501612da1565b91508082528984828501011115612a0e578485fd5b8084840185840137810190920192909252939692955090935050565b60008060408385031215612a3c578182fd5b612a4583612823565b915060208301358015158114612a59578182fd5b809150509250929050565b60008060408385031215612a76578182fd5b612a7f83612823565b946020939093013593505050565b600060208284031215612a9e578081fd5b81356001600160401b03811115612ab3578182fd5b6122538482850161283f565b600080600060608486031215612ad3578283fd5b83356001600160401b03811115612ae8578384fd5b612af48682870161283f565b93505060208401359150612b0a60408501612823565b90509250925092565b600060208284031215612b24578081fd5b5035919050565b600060208284031215612b3c578081fd5b8135610ea881612f6c565b600060208284031215612b58578081fd5b8151610ea881612f6c565b60008060208385031215612b75578182fd5b82356001600160401b0380821115612b8b578384fd5b818501915085601f830112612b9e578384fd5b813581811115612bac578485fd5b866020828501011115612bbd578485fd5b60209290920196919550909350505050565b60008060408385031215612be1578182fd5b50508035926020909101359150565b600080600060608486031215612c04578081fd5b505081359360208301359350604090920135919050565b60008060008060808587031215612c30578182fd5b612c39856128d5565b9350612c47602086016128d5565b9250612c55604086016128c1565b9150612c63606086016128c1565b905092959194509250565b60008151808452612c86816020860160208601612e7d565b601f01601f19169290920160200192915050565b60008351612cac818460208801612e7d565b835190830190612cc0818360208801612e7d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cfc90830184612c6e565b9695505050505050565b602081526000610ea86020830184612c6e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612dc957612dc9612f56565b604052919050565b60006001600160801b03808316818516808303821115612cc057612cc0612f2a565b60008219821115612e0657612e06612f2a565b500190565b600082612e1a57612e1a612f40565b500490565b6000816000190483118215151615612e3957612e39612f2a565b500290565b60006001600160801b0383811690831681811015612e5e57612e5e612f2a565b039392505050565b600082821015612e7857612e78612f2a565b500390565b60005b83811015612e98578181015183820152602001612e80565b838111156114a85750506000910152565b600081612eb857612eb8612f2a565b506000190190565b600181811c90821680612ed457607f821691505b60208210811415612ef557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f0f57612f0f612f2a565b5060010190565b600082612f2557612f25612f40565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461188857600080fdfea264697066735822122092c9354ddba647310a38a4301fe7b81d00e42be2f8a981e882c71e74039397c064736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000001a0a00000000000000000000000000000000000000000000000000000000000000fa

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637cb6475911610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c51461067f578063f2fde38b146106c8578063f87cff75146106e8578063fbe1aa5114610708578063fd5e8efe1461073c57600080fd5b8063c87b56dd14610616578063cb91d8b314610636578063d7224ba014610649578063dc33e6811461065f57600080fd5b80639231ab2a116100e75780639231ab2a1461055f57806395d89b41146105ac578063a22cb465146105c1578063ac446002146105e1578063b88d4fde146105f657600080fd5b80637cb647591461046c5780638bc35c2f1461048c5780638da5cb5b146104c057806390aa0b0f146104de57600080fd5b8063375a069a1161019b578063537924ef1161016a578063537924ef146103e457806355f804b3146103f75780636352211e1461041757806370a0823114610437578063715018a61461045757600080fd5b8063375a069a14610364578063422030ba1461038457806342842e0e146103a45780634f6ccce7146103c457600080fd5b806318160ddd116101e257806318160ddd146102c557806321059e57146102e457806323b872dd146103045780632d20fb60146103245780632f745c591461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612b2b565b610752565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107bf565b6040516102409190612d06565b34801561027757600080fd5b5061028b610286366004612b13565b610851565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612a64565b6108e1565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612c1b565b6109f9565b34801561031057600080fd5b506102c361031f366004612938565b610ab5565b34801561033057600080fd5b506102c361033f366004612b13565b610ac0565b34801561035057600080fd5b506102d661035f366004612a64565b610b53565b34801561037057600080fd5b506102c361037f366004612b13565b610ccb565b34801561039057600080fd5b5061023461039f366004612bf0565b610e89565b3480156103b057600080fd5b506102c36103bf366004612938565b610eaf565b3480156103d057600080fd5b506102d66103df366004612b13565b610eca565b6102c36103f2366004612a8d565b610f33565b34801561040357600080fd5b506102c3610412366004612b63565b611139565b34801561042357600080fd5b5061028b610432366004612b13565b61116f565b34801561044357600080fd5b506102d66104523660046128ec565b611181565b34801561046357600080fd5b506102c3611212565b34801561047857600080fd5b506102c3610487366004612b13565b611248565b34801561049857600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000881565b3480156104cc57600080fd5b506000546001600160a01b031661028b565b3480156104ea57600080fd5b50600c546105249063ffffffff808216916001600160401b036401000000008204811692600160601b830490911691600160a01b90041684565b604051610240949392919063ffffffff94851681526001600160401b0393841660208201529190921660408201529116606082015260800190565b34801561056b57600080fd5b5061057f61057a366004612b13565b611277565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610240565b3480156105b857600080fd5b5061025e611294565b3480156105cd57600080fd5b506102c36105dc366004612a2a565b6112a3565b3480156105ed57600080fd5b506102c3611368565b34801561060257600080fd5b506102c3610611366004612973565b611475565b34801561062257600080fd5b5061025e610631366004612b13565b6114ae565b6102c3610644366004612bcf565b61157a565b34801561065557600080fd5b506102d660085481565b34801561066b57600080fd5b506102d661067a3660046128ec565b6117e5565b34801561068b57600080fd5b5061023461069a366004612906565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d457600080fd5b506102c36106e33660046128ec565b6117f0565b3480156106f457600080fd5b50610234610703366004612abf565b61188b565b34801561071457600080fd5b506102d67f00000000000000000000000000000000000000000000000000000000000000fa81565b34801561074857600080fd5b506102d6600a5481565b60006001600160e01b031982166380ac58cd60e01b148061078357506001600160e01b03198216635b5e139f60e01b145b8061079e57506001600160e01b0319821663780e9d6360e01b145b806107b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107ce90612ec0565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90612ec0565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085e826001541190565b6108c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ec8261116f565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108bc565b336001600160a01b03821614806109775750610977813361069a565b6109e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108bc565b6109f48383836118ec565b505050565b6000546001600160a01b03163314610a235760405162461bcd60e51b81526004016108bc90612d19565b6040805160808101825263ffffffff9384168082526001600160401b039687166020830181905295909616918101829052919092166060909101819052600c80546bffffffffffffffffffffffff1916909417640100000000909302929092176bffffffffffffffffffffffff60601b1916600160601b90910263ffffffff60a01b191617600160a01b909102179055565b6109f4838383611948565b6000546001600160a01b03163314610aea5760405162461bcd60e51b81526004016108bc90612d19565b60026009541415610b3d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b6002600955610b4b81611cca565b506001600955565b6000610b5e83611181565b8210610bb75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108bc565b6000610bc260015490565b905060008060005b83811015610c6b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c1c57805192505b876001600160a01b0316836001600160a01b03161415610c585786841415610c4a575093506107b992505050565b83610c5481612efb565b9450505b5080610c6381612efb565b915050610bca565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108bc565b6000546001600160a01b03163314610cf55760405162461bcd60e51b81526004016108bc90612d19565b7f00000000000000000000000000000000000000000000000000000000000000fa81610d2060015490565b610d2a9190612df3565b1115610d885760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016108bc565b610db27f000000000000000000000000000000000000000000000000000000000000000882612f16565b15610e145760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108bc565b6000610e407f000000000000000000000000000000000000000000000000000000000000000883612e0b565b905060005b818110156109f457610e77337f0000000000000000000000000000000000000000000000000000000000000008611eb3565b80610e8181612efb565b915050610e45565b60008315801590610e9957508215155b8015610ea55750814210155b90505b9392505050565b6109f483838360405180602001604052806000815250611475565b6000610ed560015490565b8210610f2f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108bc565b5090565b323314610f825760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108bc565b600c5464010000000090046001600160401b031680610fe35760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108bc565b336000908152600b602052604090205460ff16156110345760405162461bcd60e51b815260206004820152600e60248201526d165bdd481a185cc81b5a5b9d195960921b60448201526064016108bc565b61104182600a543361188b565b61108d5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108bc565b7f0000000000000000000000000000000000000000000000000000000000001a0a6110b760015490565b6110c2906001612df3565b11156111055760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108bc565b336000818152600b60205260409020805460ff1916600190811790915561112c9190611eb3565b61113581611ecd565b5050565b6000546001600160a01b031633146111635760405162461bcd60e51b81526004016108bc90612d19565b6109f4600d8383612793565b600061117a82611f54565b5192915050565b60006001600160a01b0382166111ed5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108bc565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461123c5760405162461bcd60e51b81526004016108bc90612d19565b61124660006120fd565b565b6000546001600160a01b031633146112725760405162461bcd60e51b81526004016108bc90612d19565b600a55565b60408051808201909152600080825260208201526107b982611f54565b6060600380546107ce90612ec0565b6001600160a01b0382163314156112fc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108bc565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113925760405162461bcd60e51b81526004016108bc90612d19565b600260095414156113e55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b6002600955604051600090339047908381818185875af1925050503d806000811461142c576040519150601f19603f3d011682016040523d82523d6000602084013e611431565b606091505b5050905080610b4b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108bc565b611480848484611948565b61148c8484848461214d565b6114a85760405162461bcd60e51b81526004016108bc90612d4e565b50505050565b60606114bb826001541190565b61151f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108bc565b600061152961225b565b905060008151116115495760405180602001604052806000815250610ea8565b806115538461226a565b604051602001611564929190612c9a565b6040516020818303038152906040529392505050565b3233146115c95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108bc565b60408051608081018252600c5463ffffffff8082168084526001600160401b03640100000000840481166020860152600160601b840416948401859052600160a01b90920416606083018190529192908483146116765760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b60648201526084016108bc565b611681828483610e89565b6116cd5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108bc565b7f0000000000000000000000000000000000000000000000000000000000001a0a866116f860015490565b6117029190612df3565b11156117455760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108bc565b7f000000000000000000000000000000000000000000000000000000000000000886611770336117e5565b61177a9190612df3565b11156117c15760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108bc565b6117cb3387611eb3565b6117dd6117d88784612e1f565b611ecd565b505050505050565b60006107b982612383565b6000546001600160a01b0316331461181a5760405162461bcd60e51b81526004016108bc90612d19565b6001600160a01b03811661187f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bc565b611888816120fd565b50565b6040516bffffffffffffffffffffffff19606083901b16602082015260009081906034016040516020818303038152906040528051906020012090506118d2858583612421565b156118e1576001915050610ea8565b506000949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061195382611f54565b80519091506000906001600160a01b0316336001600160a01b0316148061198a57503361197f84610851565b6001600160a01b0316145b8061199c5750815161199c903361069a565b905080611a065760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108bc565b846001600160a01b031682600001516001600160a01b031614611a7a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108bc565b6001600160a01b038416611ade5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108bc565b611aee60008484600001516118ec565b6001600160a01b0385166000908152600560205260408120805460019290611b209084906001600160801b0316612e3e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611b6c91859116612dd1565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bf3846001612df3565b6000818152600460205260409020549091506001600160a01b0316611c8457611c1d816001541190565b15611c845760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117dd565b60085481611d1a5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108bc565b60006001611d288484612df3565b611d329190612e66565b9050611d5f60017f0000000000000000000000000000000000000000000000000000000000001a0a612e66565b811115611d9457611d9160017f0000000000000000000000000000000000000000000000000000000000001a0a612e66565b90505b611d9f816001541190565b611dfa5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108bc565b815b818111611e9f576000818152600460205260409020546001600160a01b0316611e8d576000611e2a82611f54565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e9781612efb565b915050611dfc565b50611eab816001612df3565b600855505050565b611135828260405180602001604052806000815250612437565b80341015611f165760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108bc565b8034111561188857336108fc611f2c8334612e66565b6040518115909202916000818181858888f19350505050158015611135573d6000803e3d6000fd5b6040805180820190915260008082526020820152611f73826001541190565b611fd25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108bc565b60007f00000000000000000000000000000000000000000000000000000000000000088310612033576120257f000000000000000000000000000000000000000000000000000000000000000884612e66565b612030906001612df3565b90505b825b81811061209c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561208957949350505050565b508061209481612ea9565b915050612035565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561224f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612191903390899088908890600401612cc9565b602060405180830381600087803b1580156121ab57600080fd5b505af19250505080156121db575060408051601f3d908101601f191682019092526121d891810190612b47565b60015b612235573d808015612209576040519150601f19603f3d011682016040523d82523d6000602084013e61220e565b606091505b50805161222d5760405162461bcd60e51b81526004016108bc90612d4e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612253565b5060015b949350505050565b6060600d80546107ce90612ec0565b60608161228e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122b857806122a281612efb565b91506122b19050600a83612e0b565b9150612292565b6000816001600160401b038111156122e057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561230a576020820181803683370190505b5090505b84156122535761231f600183612e66565b915061232c600a86612f16565b612337906030612df3565b60f81b81838151811061235a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061237c600a86612e0b565b945061230e565b60006001600160a01b0382166123f55760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108bc565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60008261242e8584612711565b14949350505050565b6001546001600160a01b03841661249a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108bc565b6124a5816001541190565b156124f25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108bc565b7f000000000000000000000000000000000000000000000000000000000000000883111561256d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108bc565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906125c9908790612dd1565b6001600160801b031681526020018583602001516125e79190612dd1565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127065760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46126ca600088848861214d565b6126e65760405162461bcd60e51b81526004016108bc90612d4e565b816126f081612efb565b92505080806126fe90612efb565b91505061267d565b5060018190556117dd565b600081815b845181101561278b57600085828151811061274157634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116127675760008381526020829052604090209250612778565b600081815260208490526040902092505b508061278381612efb565b915050612716565b509392505050565b82805461279f90612ec0565b90600052602060002090601f0160209004810192826127c15760008555612807565b82601f106127da5782800160ff19823516178555612807565b82800160010185558215612807579182015b828111156128075782358255916020019190600101906127ec565b50610f2f9291505b80821115610f2f576000815560010161280f565b80356001600160a01b038116811461283a57600080fd5b919050565b600082601f83011261284f578081fd5b813560206001600160401b0382111561286a5761286a612f56565b8160051b612879828201612da1565b838152828101908684018388018501891015612893578687fd5b8693505b858410156128b5578035835260019390930192918401918401612897565b50979650505050505050565b803563ffffffff8116811461283a57600080fd5b80356001600160401b038116811461283a57600080fd5b6000602082840312156128fd578081fd5b610ea882612823565b60008060408385031215612918578081fd5b61292183612823565b915061292f60208401612823565b90509250929050565b60008060006060848603121561294c578081fd5b61295584612823565b925061296360208501612823565b9150604084013590509250925092565b60008060008060808587031215612988578081fd5b61299185612823565b935060206129a0818701612823565b93506040860135925060608601356001600160401b03808211156129c2578384fd5b818801915088601f8301126129d5578384fd5b8135818111156129e7576129e7612f56565b6129f9601f8201601f19168501612da1565b91508082528984828501011115612a0e578485fd5b8084840185840137810190920192909252939692955090935050565b60008060408385031215612a3c578182fd5b612a4583612823565b915060208301358015158114612a59578182fd5b809150509250929050565b60008060408385031215612a76578182fd5b612a7f83612823565b946020939093013593505050565b600060208284031215612a9e578081fd5b81356001600160401b03811115612ab3578182fd5b6122538482850161283f565b600080600060608486031215612ad3578283fd5b83356001600160401b03811115612ae8578384fd5b612af48682870161283f565b93505060208401359150612b0a60408501612823565b90509250925092565b600060208284031215612b24578081fd5b5035919050565b600060208284031215612b3c578081fd5b8135610ea881612f6c565b600060208284031215612b58578081fd5b8151610ea881612f6c565b60008060208385031215612b75578182fd5b82356001600160401b0380821115612b8b578384fd5b818501915085601f830112612b9e578384fd5b813581811115612bac578485fd5b866020828501011115612bbd578485fd5b60209290920196919550909350505050565b60008060408385031215612be1578182fd5b50508035926020909101359150565b600080600060608486031215612c04578081fd5b505081359360208301359350604090920135919050565b60008060008060808587031215612c30578182fd5b612c39856128d5565b9350612c47602086016128d5565b9250612c55604086016128c1565b9150612c63606086016128c1565b905092959194509250565b60008151808452612c86816020860160208601612e7d565b601f01601f19169290920160200192915050565b60008351612cac818460208801612e7d565b835190830190612cc0818360208801612e7d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cfc90830184612c6e565b9695505050505050565b602081526000610ea86020830184612c6e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612dc957612dc9612f56565b604052919050565b60006001600160801b03808316818516808303821115612cc057612cc0612f2a565b60008219821115612e0657612e06612f2a565b500190565b600082612e1a57612e1a612f40565b500490565b6000816000190483118215151615612e3957612e39612f2a565b500290565b60006001600160801b0383811690831681811015612e5e57612e5e612f2a565b039392505050565b600082821015612e7857612e78612f2a565b500390565b60005b83811015612e98578181015183820152602001612e80565b838111156114a85750506000910152565b600081612eb857612eb8612f2a565b506000190190565b600181811c90821680612ed457607f821691505b60208210811415612ef557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f0f57612f0f612f2a565b5060010190565b600082612f2557612f25612f40565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461188857600080fdfea264697066735822122092c9354ddba647310a38a4301fe7b81d00e42be2f8a981e882c71e74039397c064736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000001a0a00000000000000000000000000000000000000000000000000000000000000fa

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 8
Arg [1] : collectionSize_ (uint256): 6666
Arg [2] : amountForDevs_ (uint256): 250

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000fa


Deployed Bytecode Sourcemap

45211:5186:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30435:370;;;;;;;;;;-1:-1:-1;30435:370:0;;;;;:::i;:::-;;:::i;:::-;;;9280:14:1;;9273:22;9255:41;;9243:2;9228:18;30435:370:0;;;;;;;;32161:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33686:204::-;;;;;;;;;;-1:-1:-1;33686:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8578:32:1;;;8560:51;;8548:2;8533:18;33686:204:0;8515:102:1;33249:379:0;;;;;;;;;;-1:-1:-1;33249:379:0;;;;;:::i;:::-;;:::i;:::-;;28996:94;;;;;;;;;;-1:-1:-1;29072:12:0;;28996:94;;;9453:25:1;;;9441:2;9426:18;28996:94:0;9408:76:1;46167:329:0;;;;;;;;;;-1:-1:-1;46167:329:0;;;;;:::i;:::-;;:::i;34536:142::-;;;;;;;;;;-1:-1:-1;34536:142:0;;;;;:::i;:::-;;:::i;50010:118::-;;;;;;;;;;-1:-1:-1;50010:118:0;;;;;:::i;:::-;;:::i;29627:744::-;;;;;;;;;;-1:-1:-1;29627:744:0;;;;;:::i;:::-;;:::i;49098:442::-;;;;;;;;;;-1:-1:-1;49098:442:0;;;;;:::i;:::-;;:::i;48792:271::-;;;;;;;;;;-1:-1:-1;48792:271:0;;;;;:::i;:::-;;:::i;34741:157::-;;;;;;;;;;-1:-1:-1;34741:157:0;;;;;:::i;:::-;;:::i;29159:177::-;;;;;;;;;;-1:-1:-1;29159:177:0;;;;;:::i;:::-;;:::i;46726:536::-;;;;;;:::i;:::-;;:::i;49717:100::-;;;;;;;;;;-1:-1:-1;49717:100:0;;;;;:::i;:::-;;:::i;31984:118::-;;;;;;;;;;-1:-1:-1;31984:118:0;;;;;:::i;:::-;;:::i;30861:211::-;;;;;;;;;;-1:-1:-1;30861:211:0;;;;;:::i;:::-;;:::i;2682:103::-;;;;;;;;;;;;;:::i;46617:::-;;;;;;;;;;-1:-1:-1;46617:103:0;;;;;:::i;:::-;;:::i;45271:48::-;;;;;;;;;;;;;;;2031:87;;;;;;;;;;-1:-1:-1;2077:7:0;2104:6;-1:-1:-1;;;;;2104:6:0;2031:87;;45587:28;;;;;;;;;;-1:-1:-1;45587:28:0;;;;;;;;;-1:-1:-1;;;;;45587:28:0;;;;;;-1:-1:-1;;;45587:28:0;;;;;;-1:-1:-1;;;45587:28:0;;;;;;;;;;;;;;24491:10:1;24528:15;;;24510:34;;-1:-1:-1;;;;;24617:15:1;;;24612:2;24597:18;;24590:43;24669:15;;;;24664:2;24649:18;;24642:43;24721:15;;24716:2;24701:18;;24694:43;24468:3;24453:19;;24435:308;50247:147:0;;;;;;;;;;-1:-1:-1;50247:147:0;;;;;:::i;:::-;;:::i;:::-;;;;23941:13:1;;-1:-1:-1;;;;;23937:39:1;23919:58;;24037:4;24025:17;;;24019:24;-1:-1:-1;;;;;24015:49:1;23993:20;;;23986:79;;;;23892:18;50247:147:0;23874:197:1;32316:98:0;;;;;;;;;;;;;:::i;33954:274::-;;;;;;;;;;-1:-1:-1;33954:274:0;;;;;:::i;:::-;;:::i;49823:181::-;;;;;;;;;;;;;:::i;34961:311::-;;;;;;;;;;-1:-1:-1;34961:311:0;;;;;:::i;:::-;;:::i;32477:394::-;;;;;;;;;;-1:-1:-1;32477:394:0;;;;;:::i;:::-;;:::i;47268:892::-;;;;;;:::i;:::-;;:::i;39376:43::-;;;;;;;;;;;;;;;;50134:107;;;;;;;;;;-1:-1:-1;50134:107:0;;;;;:::i;:::-;;:::i;34291:186::-;;;;;;;;;;-1:-1:-1;34291:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34436:25:0;;;34413:4;34436:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34291:186;2940:201;;;;;;;;;;-1:-1:-1;2940:201:0;;;;;:::i;:::-;;:::i;48374:412::-;;;;;;;;;;-1:-1:-1;48374:412:0;;;;;:::i;:::-;;:::i;45324:38::-;;;;;;;;;;;;;;;45367:26;;;;;;;;;;;;;;;;30435:370;30562:4;-1:-1:-1;;;;;;30592:40:0;;-1:-1:-1;;;30592:40:0;;:99;;-1:-1:-1;;;;;;;30643:48:0;;-1:-1:-1;;;30643:48:0;30592:99;:160;;;-1:-1:-1;;;;;;;30702:50:0;;-1:-1:-1;;;30702:50:0;30592:160;:207;;;-1:-1:-1;;;;;;;;;;26626:40:0;;;30763:36;30578:221;30435:370;-1:-1:-1;;30435:370:0:o;32161:94::-;32215:13;32244:5;32237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32161:94;:::o;33686:204::-;33754:7;33778:16;33786:7;35598:12;;-1:-1:-1;35588:22:0;35511:105;33778:16;33770:74;;;;-1:-1:-1;;;33770:74:0;;23096:2:1;33770:74:0;;;23078:21:1;23135:2;23115:18;;;23108:30;23174:34;23154:18;;;23147:62;-1:-1:-1;;;23225:18:1;;;23218:43;23278:19;;33770:74:0;;;;;;;;;-1:-1:-1;33860:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33860:24:0;;33686:204::o;33249:379::-;33318:13;33334:24;33350:7;33334:15;:24::i;:::-;33318:40;;33379:5;-1:-1:-1;;;;;33373:11:0;:2;-1:-1:-1;;;;;33373:11:0;;;33365:58;;;;-1:-1:-1;;;33365:58:0;;18460:2:1;33365:58:0;;;18442:21:1;18499:2;18479:18;;;18472:30;18538:34;18518:18;;;18511:62;-1:-1:-1;;;18589:18:1;;;18582:32;18631:19;;33365:58:0;18432:224:1;33365:58:0;829:10;-1:-1:-1;;;;;33448:21:0;;;;:62;;-1:-1:-1;33473:37:0;33490:5;829:10;34291:186;:::i;33473:37::-;33432:153;;;;-1:-1:-1;;;33432:153:0;;13885:2:1;33432:153:0;;;13867:21:1;13924:2;13904:18;;;13897:30;13963:34;13943:18;;;13936:62;14034:27;14014:18;;;14007:55;14079:19;;33432:153:0;13857:247:1;33432:153:0;33594:28;33603:2;33607:7;33616:5;33594:8;:28::i;:::-;33249:379;;;:::o;46167:329::-;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;46375:115:::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;46375:115:0;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;46362:10:::1;:128:::0;;-1:-1:-1;;46362:128:0;;;;;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;46362:128:0;-1:-1:-1;;;46362:128:0;;::::1;-1:-1:-1::0;;;;46362:128:0;;-1:-1:-1;;;46362:128:0;;::::1;;::::0;;46167:329::o;34536:142::-;34644:28;34654:4;34660:2;34664:7;34644:9;:28::i;50010:118::-;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;5319:1:::1;5917:7;;:19;;5909:63;;;::::0;-1:-1:-1;;;5909:63:0;;22320:2:1;5909:63:0::1;::::0;::::1;22302:21:1::0;22359:2;22339:18;;;22332:30;22398:33;22378:18;;;22371:61;22449:18;;5909:63:0::1;22292:181:1::0;5909:63:0::1;5319:1;6050:7;:18:::0;50094:28:::2;50113:8:::0;50094:18:::2;:28::i;:::-;-1:-1:-1::0;5275:1:0::1;6229:7;:22:::0;50010:118::o;29627:744::-;29736:7;29771:16;29781:5;29771:9;:16::i;:::-;29763:5;:24;29755:71;;;;-1:-1:-1;;;29755:71:0;;9915:2:1;29755:71:0;;;9897:21:1;9954:2;9934:18;;;9927:30;9993:34;9973:18;;;9966:62;-1:-1:-1;;;10044:18:1;;;10037:32;10086:19;;29755:71:0;9887:224:1;29755:71:0;29833:22;29858:13;29072:12;;;28996:94;29858:13;29833:38;;29878:19;29908:25;29958:9;29953:350;29977:14;29973:1;:18;29953:350;;;30007:31;30041:14;;;:11;:14;;;;;;;;;30007:48;;;;;;;;;-1:-1:-1;;;;;30007:48:0;;;;;-1:-1:-1;;;30007:48:0;;;-1:-1:-1;;;;;30007:48:0;;;;;;;;30068:28;30064:89;;30129:14;;;-1:-1:-1;30064:89:0;30186:5;-1:-1:-1;;;;;30165:26:0;:17;-1:-1:-1;;;;;30165:26:0;;30161:135;;;30223:5;30208:11;:20;30204:59;;;-1:-1:-1;30250:1:0;-1:-1:-1;30243:8:0;;-1:-1:-1;;;30243:8:0;30204:59;30273:13;;;;:::i;:::-;;;;30161:135;-1:-1:-1;29993:3:0;;;;:::i;:::-;;;;29953:350;;;-1:-1:-1;30309:56:0;;-1:-1:-1;;;30309:56:0;;21498:2:1;30309:56:0;;;21480:21:1;21537:2;21517:18;;;21510:30;21576:34;21556:18;;;21549:62;-1:-1:-1;;;21627:18:1;;;21620:44;21681:19;;30309:56:0;21470:236:1;49098:442:0;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;49203:13:::1;49191:8;49175:13;29072:12:::0;;;28996:94;49175:13:::1;:24;;;;:::i;:::-;:41;;49159:114;;;::::0;-1:-1:-1;;;49159:114:0;;21090:2:1;49159:114:0::1;::::0;::::1;21072:21:1::0;21129:2;21109:18;;;21102:30;21168:34;21148:18;;;21141:62;-1:-1:-1;;;21219:18:1;;;21212:37;21266:19;;49159:114:0::1;21062:229:1::0;49159:114:0::1;49296:23;49307:12;49296:8:::0;:23:::1;:::i;:::-;:28:::0;49280:106:::1;;;::::0;-1:-1:-1;;;49280:106:0;;11479:2:1;49280:106:0::1;::::0;::::1;11461:21:1::0;11518:2;11498:18;;;11491:30;11557:34;11537:18;;;11530:62;-1:-1:-1;;;11608:18:1;;;11601:42;11660:19;;49280:106:0::1;11451:234:1::0;49280:106:0::1;49393:17;49413:23;49424:12;49413:8:::0;:23:::1;:::i;:::-;49393:43;;49448:9;49443:92;49467:9;49463:1;:13;49443:92;;;49492:35;49502:10;49514:12;49492:9;:35::i;:::-;49478:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49443:92;;48792:271:::0;48933:4;48960:19;;;;;:48;;-1:-1:-1;48990:18:0;;;48960:48;:97;;;;;49038:19;49019:15;:38;;48960:97;48946:111;;48792:271;;;;;;:::o;34741:157::-;34853:39;34870:4;34876:2;34880:7;34853:39;;;;;;;;;;;;:16;:39::i;29159:177::-;29226:7;29258:13;29072:12;;;28996:94;29258:13;29250:5;:21;29242:69;;;;-1:-1:-1;;;29242:69:0;;11892:2:1;29242:69:0;;;11874:21:1;11931:2;11911:18;;;11904:30;11970:34;11950:18;;;11943:62;-1:-1:-1;;;12021:18:1;;;12014:33;12064:19;;29242:69:0;11864:225:1;29242:69:0;-1:-1:-1;29325:5:0;29159:177::o;46726:536::-;46539:9;46552:10;46539:23;46531:66;;;;-1:-1:-1;;;46531:66:0;;13526:2:1;46531:66:0;;;13508:21:1;13565:2;13545:18;;;13538:30;13604:32;13584:18;;;13577:60;13654:18;;46531:66:0;13498:180:1;46531:66:0;46834:10:::1;:24:::0;;;::::1;-1:-1:-1::0;;;;;46834:24:0::1;::::0;46866:55:::1;;;::::0;-1:-1:-1;;;46866:55:0;;17741:2:1;46866:55:0::1;::::0;::::1;17723:21:1::0;;;17760:18;;;17753:30;17819:34;17799:18;;;17792:62;17871:18;;46866:55:0::1;17713:182:1::0;46866:55:0::1;46952:10;46936:27;::::0;;;:15:::1;:27;::::0;;;;;::::1;;:36;46928:63;;;::::0;-1:-1:-1;;;46928:63:0;;10318:2:1;46928:63:0::1;::::0;::::1;10300:21:1::0;10357:2;10337:18;;;10330:30;-1:-1:-1;;;10376:18:1;;;10369:44;10430:18;;46928:63:0::1;10290:164:1::0;46928:63:0::1;47006:43;47018:5;47025:11;;47038:10;47006:11;:43::i;:::-;46998:87;;;::::0;-1:-1:-1;;;46998:87:0;;15423:2:1;46998:87:0::1;::::0;::::1;15405:21:1::0;15462:2;15442:18;;;15435:30;15501:33;15481:18;;;15474:61;15552:18;;46998:87:0::1;15395:181:1::0;46998:87:0::1;47121:14;47100:13;29072:12:::0;;;28996:94;47100:13:::1;:17;::::0;47116:1:::1;47100:17;:::i;:::-;:35;;47092:66;;;::::0;-1:-1:-1;;;47092:66:0;;15076:2:1;47092:66:0::1;::::0;::::1;15058:21:1::0;15115:2;15095:18;;;15088:30;-1:-1:-1;;;15134:18:1;;;15127:48;15192:18;;47092:66:0::1;15048:168:1::0;47092:66:0::1;47181:10;47165:27;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;47165:34:0::1;47195:4;47165:34:::0;;::::1;::::0;;;47206:24:::1;::::0;47181:10;47206:9:::1;:24::i;:::-;47237:19;47250:5;47237:12;:19::i;:::-;46604:1;46726:536:::0;:::o;49717:100::-;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;49788:23:::1;:13;49804:7:::0;;49788:23:::1;:::i;31984:118::-:0;32048:7;32071:20;32083:7;32071:11;:20::i;:::-;:25;;31984:118;-1:-1:-1;;31984:118:0:o;30861:211::-;30925:7;-1:-1:-1;;;;;30949:19:0;;30941:75;;;;-1:-1:-1;;;30941:75:0;;14664:2:1;30941:75:0;;;14646:21:1;14703:2;14683:18;;;14676:30;14742:34;14722:18;;;14715:62;-1:-1:-1;;;14793:18:1;;;14786:41;14844:19;;30941:75:0;14636:233:1;30941:75:0;-1:-1:-1;;;;;;31038:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31038:27:0;;30861:211::o;2682:103::-;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;2747:30:::1;2774:1;2747:18;:30::i;:::-;2682:103::o:0;46617:::-;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;46688:11:::1;:26:::0;46617:103::o;50247:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;50368:20:0;50380:7;50368:11;:20::i;32316:98::-;32372:13;32401:7;32394:14;;;;;:::i;33954:274::-;-1:-1:-1;;;;;34045:24:0;;829:10;34045:24;;34037:63;;;;-1:-1:-1;;;34037:63:0;;16967:2:1;34037:63:0;;;16949:21:1;17006:2;16986:18;;;16979:30;17045:28;17025:18;;;17018:56;17091:18;;34037:63:0;16939:176:1;34037:63:0;829:10;34109:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34109:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34109:53:0;;;;;;;;;;34174:48;;9255:41:1;;;34109:42:0;;829:10;34174:48;;9228:18:1;34174:48:0;;;;;;;33954:274;;:::o;49823:181::-;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;5319:1:::1;5917:7;;:19;;5909:63;;;::::0;-1:-1:-1;;;5909:63:0;;22320:2:1;5909:63:0::1;::::0;::::1;22302:21:1::0;22359:2;22339:18;;;22332:30;22398:33;22378:18;;;22371:61;22449:18;;5909:63:0::1;22292:181:1::0;5909:63:0::1;5319:1;6050:7;:18:::0;49906:49:::2;::::0;49888:12:::2;::::0;49906:10:::2;::::0;49929:21:::2;::::0;49888:12;49906:49;49888:12;49906:49;49929:21;49906:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49887:68;;;49970:7;49962:36;;;::::0;-1:-1:-1;;;49962:36:0;;18863:2:1;49962:36:0::2;::::0;::::2;18845:21:1::0;18902:2;18882:18;;;18875:30;-1:-1:-1;;;18921:18:1;;;18914:46;18977:18;;49962:36:0::2;18835:166:1::0;34961:311:0;35098:28;35108:4;35114:2;35118:7;35098:9;:28::i;:::-;35149:48;35172:4;35178:2;35182:7;35191:5;35149:22;:48::i;:::-;35133:133;;;;-1:-1:-1;;;35133:133:0;;;;;;;:::i;:::-;34961:311;;;;:::o;32477:394::-;32575:13;32616:16;32624:7;35598:12;;-1:-1:-1;35588:22:0;35511:105;32616:16;32600:97;;;;-1:-1:-1;;;32600:97:0;;16551:2:1;32600:97:0;;;16533:21:1;16590:2;16570:18;;;16563:30;16629:34;16609:18;;;16602:62;-1:-1:-1;;;16680:18:1;;;16673:45;16735:19;;32600:97:0;16523:237:1;32600:97:0;32706:21;32730:10;:8;:10::i;:::-;32706:34;;32785:1;32767:7;32761:21;:25;:104;;;;;;;;;;;;;;;;;32822:7;32831:18;:7;:16;:18::i;:::-;32805:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32747:118;32477:394;-1:-1:-1;;;32477:394:0:o;47268:892::-;46539:9;46552:10;46539:23;46531:66;;;;-1:-1:-1;;;46531:66:0;;13526:2:1;46531:66:0;;;13508:21:1;13565:2;13545:18;;;13538:30;13604:32;13584:18;;;13577:60;13654:18;;46531:66:0;13498:180:1;46531:66:0;47394:37:::1;::::0;;::::1;::::0;::::1;::::0;;47421:10:::1;47394:37:::0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;47394:37:0;;::::1;::::0;::::1;;::::0;::::1;::::0;-1:-1:-1;;;47394:37:0;::::1;;::::0;;;;;;-1:-1:-1;;;47394:37:0;;::::1;;::::0;;;;;;;;;47642:36;;::::1;47626:107;;;::::0;-1:-1:-1;;;47626:107:0;;13120:2:1;47626:107:0::1;::::0;::::1;13102:21:1::0;13159:2;13139:18;;;13132:30;13198:34;13178:18;;;13171:62;-1:-1:-1;;;13249:18:1;;;13242:35;13294:19;;47626:107:0::1;13092:227:1::0;47626:107:0::1;47758:63;47773:11;47786:13;47801:19;47758:14;:63::i;:::-;47742:126;;;::::0;-1:-1:-1;;;47742:126:0;;18102:2:1;47742:126:0::1;::::0;::::1;18084:21:1::0;18141:2;18121:18;;;18114:30;18180:31;18160:18;;;18153:59;18229:18;;47742:126:0::1;18074:179:1::0;47742:126:0::1;47911:14;47899:8;47883:13;29072:12:::0;;;28996:94;47883:13:::1;:24;;;;:::i;:::-;:42;;47875:73;;;::::0;-1:-1:-1;;;47875:73:0;;15076:2:1;47875:73:0::1;::::0;::::1;15058:21:1::0;15115:2;15095:18;;;15088:30;-1:-1:-1;;;15134:18:1;;;15127:48;15192:18;;47875:73:0::1;15048:168:1::0;47875:73:0::1;48010:23;47998:8;47971:24;47984:10;47971:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;47955:118;;;::::0;-1:-1:-1;;;47955:118:0;;20739:2:1;47955:118:0::1;::::0;::::1;20721:21:1::0;20778:2;20758:18;;;20751:30;-1:-1:-1;;;20797:18:1;;;20790:52;20859:18;;47955:118:0::1;20711:172:1::0;47955:118:0::1;48080:31;48090:10;48102:8;48080:9;:31::i;:::-;48118:36;48131:22;48145:8:::0;48131:11;:22:::1;:::i;:::-;48118:12;:36::i;:::-;46604:1;;;;47268:892:::0;;:::o;50134:107::-;50192:7;50215:20;50229:5;50215:13;:20::i;2940:201::-;2077:7;2104:6;-1:-1:-1;;;;;2104:6:0;829:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3029:22:0;::::1;3021:73;;;::::0;-1:-1:-1;;;3021:73:0;;10661:2:1;3021:73:0::1;::::0;::::1;10643:21:1::0;10700:2;10680:18;;;10673:30;10739:34;10719:18;;;10712:62;-1:-1:-1;;;10790:18:1;;;10783:36;10836:19;;3021:73:0::1;10633:228:1::0;3021:73:0::1;3105:28;3124:8;3105:18;:28::i;:::-;2940:201:::0;:::o;48374:412::-;48636:25;;-1:-1:-1;;7644:2:1;7640:15;;;7636:53;48636:25:0;;;7624:66:1;48515:4:0;;;;7706:12:1;;48636:25:0;;;;;;;;;;;;48626:36;;;;;;48611:51;;48677:37;48696:5;48703:4;48709;48677:18;:37::i;:::-;48673:83;;;48739:4;48731:13;;;;;48673:83;-1:-1:-1;48774:5:0;;48374:412;-1:-1:-1;;;;48374:412:0:o;39198:172::-;39295:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39295:29:0;-1:-1:-1;;;;;39295:29:0;;;;;;;;;39336:28;;39295:24;;39336:28;;;;;;;39198:172;;;:::o;37563:1529::-;37660:35;37698:20;37710:7;37698:11;:20::i;:::-;37769:18;;37660:58;;-1:-1:-1;37727:22:0;;-1:-1:-1;;;;;37753:34:0;829:10;-1:-1:-1;;;;;37753:34:0;;:81;;;-1:-1:-1;829:10:0;37798:20;37810:7;37798:11;:20::i;:::-;-1:-1:-1;;;;;37798:36:0;;37753:81;:142;;;-1:-1:-1;37862:18:0;;37845:50;;829:10;34291:186;:::i;37845:50::-;37727:169;;37921:17;37905:101;;;;-1:-1:-1;;;37905:101:0;;17322:2:1;37905:101:0;;;17304:21:1;17361:2;17341:18;;;17334:30;17400:34;17380:18;;;17373:62;-1:-1:-1;;;17451:18:1;;;17444:48;17509:19;;37905:101:0;17294:240:1;37905:101:0;38053:4;-1:-1:-1;;;;;38031:26:0;:13;:18;;;-1:-1:-1;;;;;38031:26:0;;38015:98;;;;-1:-1:-1;;;38015:98:0;;15783:2:1;38015:98:0;;;15765:21:1;15822:2;15802:18;;;15795:30;15861:34;15841:18;;;15834:62;-1:-1:-1;;;15912:18:1;;;15905:36;15958:19;;38015:98:0;15755:228:1;38015:98:0;-1:-1:-1;;;;;38128:16:0;;38120:66;;;;-1:-1:-1;;;38120:66:0;;12296:2:1;38120:66:0;;;12278:21:1;12335:2;12315:18;;;12308:30;12374:34;12354:18;;;12347:62;-1:-1:-1;;;12425:18:1;;;12418:35;12470:19;;38120:66:0;12268:227:1;38120:66:0;38295:49;38312:1;38316:7;38325:13;:18;;;38295:8;:49::i;:::-;-1:-1:-1;;;;;38353:18:0;;;;;;:12;:18;;;;;:31;;38383:1;;38353:18;:31;;38383:1;;-1:-1:-1;;;;;38353:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38353:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38391:16:0;;-1:-1:-1;38391:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38391:16:0;;:29;;-1:-1:-1;;38391:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38391:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38450:43:0;;;;;;;;-1:-1:-1;;;;;38450:43:0;;;;;-1:-1:-1;;;;;38476:15:0;38450:43;;;;;;;;;-1:-1:-1;38427:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38427:66:0;-1:-1:-1;;;;;;38427:66:0;;;;;;;;;;;38743:11;38439:7;-1:-1:-1;38743:11:0;:::i;:::-;38806:1;38765:24;;;:11;:24;;;;;:29;38721:33;;-1:-1:-1;;;;;;38765:29:0;38761:236;;38823:20;38831:11;35598:12;;-1:-1:-1;35588:22:0;35511:105;38823:20;38819:171;;;38883:97;;;;;;;;38910:18;;-1:-1:-1;;;;;38883:97:0;;;;;;38941:28;;;;-1:-1:-1;;;;;38883:97:0;;;;;;;;;-1:-1:-1;38856:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38856:124:0;-1:-1:-1;;;;;;38856:124:0;;;;;;;;;;;;38819:171;39029:7;39025:2;-1:-1:-1;;;;;39010:27:0;39019:4;-1:-1:-1;;;;;39010:27:0;;;;;;;;;;;39044:42;34961:311;39524:846;39614:24;;39653:12;39645:49;;;;-1:-1:-1;;;39645:49:0;;14311:2:1;39645:49:0;;;14293:21:1;14350:2;14330:18;;;14323:30;14389:26;14369:18;;;14362:54;14433:18;;39645:49:0;14283:174:1;39645:49:0;39701:16;39751:1;39720:28;39740:8;39720:17;:28;:::i;:::-;:32;;;;:::i;:::-;39701:51;-1:-1:-1;39774:18:0;39791:1;39774:14;:18;:::i;:::-;39763:8;:29;39759:81;;;39814:18;39831:1;39814:14;:18;:::i;:::-;39803:29;;39759:81;39955:17;39963:8;35598:12;;-1:-1:-1;35588:22:0;35511:105;39955:17;39947:68;;;;-1:-1:-1;;;39947:68:0;;21913:2:1;39947:68:0;;;21895:21:1;21952:2;21932:18;;;21925:30;21991:34;21971:18;;;21964:62;-1:-1:-1;;;22042:18:1;;;22035:36;22088:19;;39947:68:0;21885:228:1;39947:68:0;40039:17;40022:297;40063:8;40058:1;:13;40022:297;;40122:1;40091:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;40091:19:0;40087:225;;40137:31;40171:14;40183:1;40171:11;:14::i;:::-;40213:89;;;;;;;;40240:14;;-1:-1:-1;;;;;40213:89:0;;;;;;40267:24;;;;-1:-1:-1;;;;;40213:89:0;;;;;;;;;-1:-1:-1;40196:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;40196:106:0;-1:-1:-1;;;;;;40196:106:0;;;;;;;;;;;;-1:-1:-1;40087:225:0;40073:3;;;;:::i;:::-;;;;40022:297;;;-1:-1:-1;40352:12:0;:8;40363:1;40352:12;:::i;:::-;40325:24;:39;-1:-1:-1;;;39524:846:0:o;35622:98::-;35687:27;35697:2;35701:8;35687:27;;;;;;;;;;;;:9;:27::i;48166:204::-;48239:5;48226:9;:18;;48218:53;;;;-1:-1:-1;;;48218:53:0;;19628:2:1;48218:53:0;;;19610:21:1;19667:2;19647:18;;;19640:30;-1:-1:-1;;;19686:18:1;;;19679:52;19748:18;;48218:53:0;19600:172:1;48218:53:0;48294:5;48282:9;:17;48278:87;;;48318:10;48310:47;48339:17;48351:5;48339:9;:17;:::i;:::-;48310:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31324:606;-1:-1:-1;;;;;;;;;;;;;;;;;31441:16:0;31449:7;35598:12;;-1:-1:-1;35588:22:0;35511:105;31441:16;31433:71;;;;-1:-1:-1;;;31433:71:0;;11068:2:1;31433:71:0;;;11050:21:1;11107:2;11087:18;;;11080:30;11146:34;11126:18;;;11119:62;-1:-1:-1;;;11197:18:1;;;11190:40;11247:19;;31433:71:0;11040:232:1;31433:71:0;31513:26;31561:12;31550:7;:23;31546:93;;31605:22;31615:12;31605:7;:22;:::i;:::-;:26;;31630:1;31605:26;:::i;:::-;31584:47;;31546:93;31667:7;31647:212;31684:18;31676:4;:26;31647:212;;31721:31;31755:17;;;:11;:17;;;;;;;;;31721:51;;;;;;;;;-1:-1:-1;;;;;31721:51:0;;;;;-1:-1:-1;;;31721:51:0;;;-1:-1:-1;;;;;31721:51:0;;;;;;;;31785:28;31781:71;;31833:9;31324:606;-1:-1:-1;;;;31324:606:0:o;31781:71::-;-1:-1:-1;31704:6:0;;;;:::i;:::-;;;;31647:212;;;-1:-1:-1;31867:57:0;;-1:-1:-1;;;31867:57:0;;22680:2:1;31867:57:0;;;22662:21:1;22719:2;22699:18;;;22692:30;22758:34;22738:18;;;22731:62;-1:-1:-1;;;22809:18:1;;;22802:45;22864:19;;31867:57:0;22652:237:1;3301:191:0;3375:16;3394:6;;-1:-1:-1;;;;;3411:17:0;;;-1:-1:-1;;;;;;3411:17:0;;;;;;3444:40;;3394:6;;;;;;;3444:40;;3375:16;3444:40;3301:191;;:::o;40913:690::-;41050:4;-1:-1:-1;;;;;41067:13:0;;16539:19;:23;41063:535;;41106:72;;-1:-1:-1;;;41106:72:0;;-1:-1:-1;;;;;41106:36:0;;;;;:72;;829:10;;41157:4;;41163:7;;41172:5;;41106:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41106:72:0;;;;;;;;-1:-1:-1;;41106:72:0;;;;;;;;;;;;:::i;:::-;;;41093:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41337:13:0;;41333:215;;41370:61;;-1:-1:-1;;;41370:61:0;;;;;;;:::i;41333:215::-;41516:6;41510:13;41501:6;41497:2;41493:15;41486:38;41093:464;-1:-1:-1;;;;;;41228:55:0;-1:-1:-1;;;41228:55:0;;-1:-1:-1;41221:62:0;;41063:535;-1:-1:-1;41586:4:0;41063:535;40913:690;;;;;;:::o;49603:108::-;49663:13;49692;49685:20;;;;;:::i;23887:723::-;23943:13;24164:10;24160:53;;-1:-1:-1;;24191:10:0;;;;;;;;;;;;-1:-1:-1;;;24191:10:0;;;;;23887:723::o;24160:53::-;24238:5;24223:12;24279:78;24286:9;;24279:78;;24312:8;;;;:::i;:::-;;-1:-1:-1;24335:10:0;;-1:-1:-1;24343:2:0;24335:10;;:::i;:::-;;;24279:78;;;24367:19;24399:6;-1:-1:-1;;;;;24389:17:0;;;;;-1:-1:-1;;;24389:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24389:17:0;;24367:39;;24417:154;24424:10;;24417:154;;24451:11;24461:1;24451:11;;:::i;:::-;;-1:-1:-1;24520:10:0;24528:2;24520:5;:10;:::i;:::-;24507:24;;:2;:24;:::i;:::-;24494:39;;24477:6;24484;24477:14;;;;;;-1:-1:-1;;;24477:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;24477:56:0;;;;;;;;-1:-1:-1;24548:11:0;24557:2;24548:11;;:::i;:::-;;;24417:154;;31078:240;31139:7;-1:-1:-1;;;;;31171:19:0;;31155:102;;;;-1:-1:-1;;;31155:102:0;;12702:2:1;31155:102:0;;;12684:21:1;12741:2;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;-1:-1:-1;;;12831:18:1;;;12824:47;12888:19;;31155:102:0;12674:239:1;31155:102:0;-1:-1:-1;;;;;;31279:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;31279:32:0;;-1:-1:-1;;;;;31279:32:0;;31078:240::o;43670:190::-;43795:4;43848;43819:25;43832:5;43839:4;43819:12;:25::i;:::-;:33;;43670:190;-1:-1:-1;;;;43670:190:0:o;36059:1272::-;36187:12;;-1:-1:-1;;;;;36214:16:0;;36206:62;;;;-1:-1:-1;;;36206:62:0;;20337:2:1;36206:62:0;;;20319:21:1;20376:2;20356:18;;;20349:30;20415:34;20395:18;;;20388:62;-1:-1:-1;;;20466:18:1;;;20459:31;20507:19;;36206:62:0;20309:223:1;36206:62:0;36405:21;36413:12;35598;;-1:-1:-1;35588:22:0;35511:105;36405:21;36404:22;36396:64;;;;-1:-1:-1;;;36396:64:0;;19979:2:1;36396:64:0;;;19961:21:1;20018:2;19998:18;;;19991:30;20057:31;20037:18;;;20030:59;20106:18;;36396:64:0;19951:179:1;36396:64:0;36487:12;36475:8;:24;;36467:71;;;;-1:-1:-1;;;36467:71:0;;23510:2:1;36467:71:0;;;23492:21:1;23549:2;23529:18;;;23522:30;23588:34;23568:18;;;23561:62;-1:-1:-1;;;23639:18:1;;;23632:32;23681:19;;36467:71:0;23482:224:1;36467:71:0;-1:-1:-1;;;;;36650:16:0;;36617:30;36650:16;;;:12;:16;;;;;;;;;36617:49;;;;;;;;;-1:-1:-1;;;;;36617:49:0;;;;;-1:-1:-1;;;36617:49:0;;;;;;;;;;;36692:119;;;;;;;;36712:19;;36617:49;;36692:119;;;36712:39;;36742:8;;36712:39;:::i;:::-;-1:-1:-1;;;;;36692:119:0;;;;;36795:8;36760:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36692:119:0;;;;;;-1:-1:-1;;;;;36673:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36673:138:0;;;;;;;;;;;;36846:43;;;;;;;;;;-1:-1:-1;;;;;36872:15:0;36846:43;;;;;;;;36818:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36818:71:0;-1:-1:-1;;;;;;36818:71:0;;;;;;;;;;;;;;;;;;36830:12;;36942:281;36966:8;36962:1;:12;36942:281;;;36995:38;;37020:12;;-1:-1:-1;;;;;36995:38:0;;;37012:1;;36995:38;;37012:1;;36995:38;37060:59;37091:1;37095:2;37099:12;37113:5;37060:22;:59::i;:::-;37042:150;;;;-1:-1:-1;;;37042:150:0;;;;;;;:::i;:::-;37201:14;;;;:::i;:::-;;;;36976:3;;;;;:::i;:::-;;;;36942:281;;;-1:-1:-1;37231:12:0;:27;;;37265:60;34961:311;44222:675;44305:7;44348:4;44305:7;44363:497;44387:5;:12;44383:1;:16;44363:497;;;44421:20;44444:5;44450:1;44444:8;;;;;;-1:-1:-1;;;44444:8:0;;;;;;;;;;;;;;;44421:31;;44487:12;44471;:28;44467:382;;44973:13;45023:15;;;45059:4;45052:15;;;45106:4;45090:21;;44599:57;;44467:382;;;44973:13;45023:15;;;45059:4;45052:15;;;45106:4;45090:21;;44776:57;;44467:382;-1:-1:-1;44401:3:0;;;;:::i;:::-;;;;44363:497;;;-1:-1:-1;44877:12:0;44222:675;-1:-1:-1;;;44222:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:743::-;246:5;299:3;292:4;284:6;280:17;276:27;266:2;;321:5;314;307:20;266:2;361:6;348:20;387:4;-1:-1:-1;;;;;406:2:1;403:26;400:2;;;432:18;;:::i;:::-;478:2;475:1;471:10;501:28;525:2;521;517:11;501:28;:::i;:::-;563:15;;;594:12;;;;626:15;;;660;;;656:24;;653:33;-1:-1:-1;650:2:1;;;703:5;696;689:20;650:2;729:5;720:14;;743:163;757:2;754:1;751:9;743:163;;;814:17;;802:30;;775:1;768:9;;;;;852:12;;;;884;;743:163;;;-1:-1:-1;924:5:1;256:679;-1:-1:-1;;;;;;;256:679:1:o;940:163::-;1007:20;;1067:10;1056:22;;1046:33;;1036:2;;1093:1;1090;1083:12;1108:171;1175:20;;-1:-1:-1;;;;;1224:30:1;;1214:41;;1204:2;;1269:1;1266;1259:12;1284:196;1343:6;1396:2;1384:9;1375:7;1371:23;1367:32;1364:2;;;1417:6;1409;1402:22;1364:2;1445:29;1464:9;1445:29;:::i;1485:270::-;1553:6;1561;1614:2;1602:9;1593:7;1589:23;1585:32;1582:2;;;1635:6;1627;1620:22;1582:2;1663:29;1682:9;1663:29;:::i;:::-;1653:39;;1711:38;1745:2;1734:9;1730:18;1711:38;:::i;:::-;1701:48;;1572:183;;;;;:::o;1760:338::-;1837:6;1845;1853;1906:2;1894:9;1885:7;1881:23;1877:32;1874:2;;;1927:6;1919;1912:22;1874:2;1955:29;1974:9;1955:29;:::i;:::-;1945:39;;2003:38;2037:2;2026:9;2022:18;2003:38;:::i;:::-;1993:48;;2088:2;2077:9;2073:18;2060:32;2050:42;;1864:234;;;;;:::o;2103:1025::-;2198:6;2206;2214;2222;2275:3;2263:9;2254:7;2250:23;2246:33;2243:2;;;2297:6;2289;2282:22;2243:2;2325:29;2344:9;2325:29;:::i;:::-;2315:39;;2373:2;2394:38;2428:2;2417:9;2413:18;2394:38;:::i;:::-;2384:48;;2479:2;2468:9;2464:18;2451:32;2441:42;;2534:2;2523:9;2519:18;2506:32;-1:-1:-1;;;;;2598:2:1;2590:6;2587:14;2584:2;;;2619:6;2611;2604:22;2584:2;2662:6;2651:9;2647:22;2637:32;;2707:7;2700:4;2696:2;2692:13;2688:27;2678:2;;2734:6;2726;2719:22;2678:2;2775;2762:16;2797:2;2793;2790:10;2787:2;;;2803:18;;:::i;:::-;2845:53;2888:2;2869:13;;-1:-1:-1;;2865:27:1;2861:36;;2845:53;:::i;:::-;2832:66;;2921:2;2914:5;2907:17;2961:7;2956:2;2951;2947;2943:11;2939:20;2936:33;2933:2;;;2987:6;2979;2972:22;2933:2;3047;3042;3038;3034:11;3029:2;3022:5;3018:14;3005:45;3070:14;;3066:23;;;3059:39;;;;2233:895;;;;-1:-1:-1;2233:895:1;;-1:-1:-1;;2233:895:1:o;3133:367::-;3198:6;3206;3259:2;3247:9;3238:7;3234:23;3230:32;3227:2;;;3280:6;3272;3265:22;3227:2;3308:29;3327:9;3308:29;:::i;:::-;3298:39;;3387:2;3376:9;3372:18;3359:32;3434:5;3427:13;3420:21;3413:5;3410:32;3400:2;;3461:6;3453;3446:22;3400:2;3489:5;3479:15;;;3217:283;;;;;:::o;3505:264::-;3573:6;3581;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3683:29;3702:9;3683:29;:::i;:::-;3673:39;3759:2;3744:18;;;;3731:32;;-1:-1:-1;;;3592:177:1:o;3774:368::-;3858:6;3911:2;3899:9;3890:7;3886:23;3882:32;3879:2;;;3932:6;3924;3917:22;3879:2;3977:9;3964:23;-1:-1:-1;;;;;4002:6:1;3999:30;3996:2;;;4047:6;4039;4032:22;3996:2;4075:61;4128:7;4119:6;4108:9;4104:22;4075:61;:::i;4147:510::-;4249:6;4257;4265;4318:2;4306:9;4297:7;4293:23;4289:32;4286:2;;;4339:6;4331;4324:22;4286:2;4384:9;4371:23;-1:-1:-1;;;;;4409:6:1;4406:30;4403:2;;;4454:6;4446;4439:22;4403:2;4482:61;4535:7;4526:6;4515:9;4511:22;4482:61;:::i;:::-;4472:71;;;4590:2;4579:9;4575:18;4562:32;4552:42;;4613:38;4647:2;4636:9;4632:18;4613:38;:::i;:::-;4603:48;;4276:381;;;;;:::o;4662:190::-;4721:6;4774:2;4762:9;4753:7;4749:23;4745:32;4742:2;;;4795:6;4787;4780:22;4742:2;-1:-1:-1;4823:23:1;;4732:120;-1:-1:-1;4732:120:1:o;4857:255::-;4915:6;4968:2;4956:9;4947:7;4943:23;4939:32;4936:2;;;4989:6;4981;4974:22;4936:2;5033:9;5020:23;5052:30;5076:5;5052:30;:::i;5117:259::-;5186:6;5239:2;5227:9;5218:7;5214:23;5210:32;5207:2;;;5260:6;5252;5245:22;5207:2;5297:9;5291:16;5316:30;5340:5;5316:30;:::i;5381:642::-;5452:6;5460;5513:2;5501:9;5492:7;5488:23;5484:32;5481:2;;;5534:6;5526;5519:22;5481:2;5579:9;5566:23;-1:-1:-1;;;;;5649:2:1;5641:6;5638:14;5635:2;;;5670:6;5662;5655:22;5635:2;5713:6;5702:9;5698:22;5688:32;;5758:7;5751:4;5747:2;5743:13;5739:27;5729:2;;5785:6;5777;5770:22;5729:2;5830;5817:16;5856:2;5848:6;5845:14;5842:2;;;5877:6;5869;5862:22;5842:2;5927:7;5922:2;5913:6;5909:2;5905:15;5901:24;5898:37;5895:2;;;5953:6;5945;5938:22;5895:2;5989;5981:11;;;;;6011:6;;-1:-1:-1;5471:552:1;;-1:-1:-1;;;;5471:552:1:o;6223:258::-;6291:6;6299;6352:2;6340:9;6331:7;6327:23;6323:32;6320:2;;;6373:6;6365;6358:22;6320:2;-1:-1:-1;;6401:23:1;;;6471:2;6456:18;;;6443:32;;-1:-1:-1;6310:171:1:o;6486:326::-;6563:6;6571;6579;6632:2;6620:9;6611:7;6607:23;6603:32;6600:2;;;6653:6;6645;6638:22;6600:2;-1:-1:-1;;6681:23:1;;;6751:2;6736:18;;6723:32;;-1:-1:-1;6802:2:1;6787:18;;;6774:32;;6590:222;-1:-1:-1;6590:222:1:o;6817:411::-;6899:6;6907;6915;6923;6976:3;6964:9;6955:7;6951:23;6947:33;6944:2;;;6998:6;6990;6983:22;6944:2;7026:28;7044:9;7026:28;:::i;:::-;7016:38;;7073:37;7106:2;7095:9;7091:18;7073:37;:::i;:::-;7063:47;;7129:37;7162:2;7151:9;7147:18;7129:37;:::i;:::-;7119:47;;7185:37;7218:2;7207:9;7203:18;7185:37;:::i;:::-;7175:47;;6934:294;;;;;;;:::o;7233:257::-;7274:3;7312:5;7306:12;7339:6;7334:3;7327:19;7355:63;7411:6;7404:4;7399:3;7395:14;7388:4;7381:5;7377:16;7355:63;:::i;:::-;7472:2;7451:15;-1:-1:-1;;7447:29:1;7438:39;;;;7479:4;7434:50;;7282:208;-1:-1:-1;;7282:208:1:o;7729:470::-;7908:3;7946:6;7940:13;7962:53;8008:6;8003:3;7996:4;7988:6;7984:17;7962:53;:::i;:::-;8078:13;;8037:16;;;;8100:57;8078:13;8037:16;8134:4;8122:17;;8100:57;:::i;:::-;8173:20;;7916:283;-1:-1:-1;;;;7916:283:1:o;8622:488::-;-1:-1:-1;;;;;8891:15:1;;;8873:34;;8943:15;;8938:2;8923:18;;8916:43;8990:2;8975:18;;8968:34;;;9038:3;9033:2;9018:18;;9011:31;;;8816:4;;9059:45;;9084:19;;9076:6;9059:45;:::i;:::-;9051:53;8825:285;-1:-1:-1;;;;;;8825:285:1:o;9489:219::-;9638:2;9627:9;9620:21;9601:4;9658:44;9698:2;9687:9;9683:18;9675:6;9658:44;:::i;15988:356::-;16190:2;16172:21;;;16209:18;;;16202:30;16268:34;16263:2;16248:18;;16241:62;16335:2;16320:18;;16162:182::o;19006:415::-;19208:2;19190:21;;;19247:2;19227:18;;;19220:30;19286:34;19281:2;19266:18;;19259:62;-1:-1:-1;;;19352:2:1;19337:18;;19330:49;19411:3;19396:19;;19180:241::o;24748:275::-;24819:2;24813:9;24884:2;24865:13;;-1:-1:-1;;24861:27:1;24849:40;;-1:-1:-1;;;;;24904:34:1;;24940:22;;;24901:62;24898:2;;;24966:18;;:::i;:::-;25002:2;24995:22;24793:230;;-1:-1:-1;24793:230:1:o;25028:253::-;25068:3;-1:-1:-1;;;;;25157:2:1;25154:1;25150:10;25187:2;25184:1;25180:10;25218:3;25214:2;25210:12;25205:3;25202:21;25199:2;;;25226:18;;:::i;25286:128::-;25326:3;25357:1;25353:6;25350:1;25347:13;25344:2;;;25363:18;;:::i;:::-;-1:-1:-1;25399:9:1;;25334:80::o;25419:120::-;25459:1;25485;25475:2;;25490:18;;:::i;:::-;-1:-1:-1;25524:9:1;;25465:74::o;25544:168::-;25584:7;25650:1;25646;25642:6;25638:14;25635:1;25632:21;25627:1;25620:9;25613:17;25609:45;25606:2;;;25657:18;;:::i;:::-;-1:-1:-1;25697:9:1;;25596:116::o;25717:246::-;25757:4;-1:-1:-1;;;;;25870:10:1;;;;25840;;25892:12;;;25889:2;;;25907:18;;:::i;:::-;25944:13;;25766:197;-1:-1:-1;;;25766:197:1:o;25968:125::-;26008:4;26036:1;26033;26030:8;26027:2;;;26041:18;;:::i;:::-;-1:-1:-1;26078:9:1;;26017:76::o;26098:258::-;26170:1;26180:113;26194:6;26191:1;26188:13;26180:113;;;26270:11;;;26264:18;26251:11;;;26244:39;26216:2;26209:10;26180:113;;;26311:6;26308:1;26305:13;26302:2;;;-1:-1:-1;;26346:1:1;26328:16;;26321:27;26151:205::o;26361:136::-;26400:3;26428:5;26418:2;;26437:18;;:::i;:::-;-1:-1:-1;;;26473:18:1;;26408:89::o;26502:380::-;26581:1;26577:12;;;;26624;;;26645:2;;26699:4;26691:6;26687:17;26677:27;;26645:2;26752;26744:6;26741:14;26721:18;26718:38;26715:2;;;26798:10;26793:3;26789:20;26786:1;26779:31;26833:4;26830:1;26823:15;26861:4;26858:1;26851:15;26715:2;;26557:325;;;:::o;26887:135::-;26926:3;-1:-1:-1;;26947:17:1;;26944:2;;;26967:18;;:::i;:::-;-1:-1:-1;27014:1:1;27003:13;;26934:88::o;27027:112::-;27059:1;27085;27075:2;;27090:18;;:::i;:::-;-1:-1:-1;27124:9:1;;27065:74::o;27144:127::-;27205:10;27200:3;27196:20;27193:1;27186:31;27236:4;27233:1;27226:15;27260:4;27257:1;27250:15;27276:127;27337:10;27332:3;27328:20;27325:1;27318:31;27368:4;27365:1;27358:15;27392:4;27389:1;27382:15;27408:127;27469:10;27464:3;27460:20;27457:1;27450:31;27500:4;27497:1;27490:15;27524:4;27521:1;27514:15;27540:131;-1:-1:-1;;;;;;27614:32:1;;27604:43;;27594:2;;27661:1;27658;27651:12

Swarm Source

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