ETH Price: $3,312.80 (-3.53%)
Gas: 16 Gwei

Token

PETS (PETS)
 

Overview

Max Total Supply

2,625 PETS

Holders

413

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PETS
0x29Dc3A06f681183f12C59857e9EB00176Ae177fC
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:
PetsContract

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-13
*/

/**
 *Submitted for verification at BscScan.com on 2021-09-13
*/

// SPDX-License-Identifier: None

pragma solidity ^0.8.4;


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


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


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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

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

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

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

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

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

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

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

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


// import "./IERC165.sol";

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


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







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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// import "../IERC721.sol";

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




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

 
 

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





contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


contract PetsContract is Ownable, ERC721 {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public mintPrice = 0 ether;
    uint256 public mintLimit = 2;

    uint256 public supplyLimit;
    bool public saleActive = false;

    uint256 namingPrice = 0 ether;

    address public dev1Address;
    address public dev2Address;
    

    uint8 public dev1Share = 50;
    uint8 public dev2Share = 50;

    uint8 public charLimit = 32;

    mapping(uint256 => uint256) public tokenStyle;
    mapping(uint256 => bool) public allowedStyles;
    mapping(uint256 => uint256) public stylePrice;

    string public baseURI = "";

    uint256 public totalSupply = 0;
    bool public namingAllowed = false;

//Events

    event wallet1AddressChanged(address _wallet1);
    event wallet2AddressChanged(address _wallet2);

    event SharesChanged(uint8 _value1, uint8 _value2);

    event SaleStateChanged(bool _state);
    event SupplyLimitChanged(uint256 _supplyLimit);
    event MintLimitChanged(uint256 _mintLimit);
    event MintPriceChanged(uint256 _mintPrice);
    event BaseURIChanged(string _baseURI);
    event PetMinted(address indexed _user, uint256 indexed _tokenId, string _tokenURI);
    event ReservePets(uint256 _numberOfTokens);

    event StyleChanged(uint256 _tokenId, uint256 _styleId);
    event NameChanged(uint256 _tokenId, string _name);
    event StyleAdded(uint256 _id);
    event StyleRemoved(uint256 _id);
    event StylePriceChanged(uint256 _styleId, uint256 _price);
    event NamingPriceChanged(uint256 _price);
    event NamingStateChanged(bool _namingAllowed);
    
//End Events

    constructor(
        uint256 tokenSupplyLimit,
        string memory _baseURI
    ) ERC721("PETS", "PETS") {
        
        supplyLimit = tokenSupplyLimit;
        dev1Address = owner();
        dev2Address = owner();
        
        baseURI = _baseURI;
        allowedStyles[0] = true;
        
        emit NamingPriceChanged(namingPrice);
        emit SupplyLimitChanged(supplyLimit);
        emit MintLimitChanged(mintLimit);
        emit MintPriceChanged(mintPrice);
        emit BaseURIChanged(_baseURI);
        emit StyleAdded(0);
        emit NamingStateChanged(true);
    }

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

        return bytes(baseURI).length > 0 ? 
        string(abi.encodePacked(baseURI, tokenStyle[tokenId].toString(), "/", tokenId.toString())) : "";
    }

    function setCharacterLimit(uint8 _charLimit) external onlyOwner {
        charLimit = _charLimit;
    }

    function toggleNaming(bool _namingAllowed) external onlyOwner {
        namingAllowed = _namingAllowed;
        emit NamingStateChanged(_namingAllowed);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
        emit BaseURIChanged(_baseURI);
    }

    function setWallet_1(address _address) external onlyOwner{
        dev1Address = _address;
        emit wallet1AddressChanged(_address);
    }

    function setWallet_2(address _address) external onlyOwner{
        dev2Address = _address;
        transferOwnership(_address);
        emit wallet2AddressChanged(_address);
    }

    function toggleSaleActive() external onlyOwner {
        saleActive = !saleActive;
        emit SaleStateChanged(saleActive);
    }

    function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner {
        require(_supplyLimit >= totalSupply, "Enter number higher than current.");
        supplyLimit = _supplyLimit;
        emit SupplyLimitChanged(_supplyLimit);
    }

    function changeMintLimit(uint256 _mintLimit) external onlyOwner {
        mintLimit = _mintLimit;
        emit MintLimitChanged(_mintLimit);
    }

    function changeMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
        emit MintPriceChanged(_mintPrice);
    }

    function buyPets(uint _numberOfTokens) external payable {
        require(saleActive, "Sale Has Not Started.");
        require(_numberOfTokens <= mintLimit, "Can't mint this many tokens.");
        require(msg.value >= mintPrice.mul(_numberOfTokens), "Check your payment, something went wrong.");

        _mintPets(_numberOfTokens);
    }

    function _mintPets(uint _numberOfTokens) internal {
        require(totalSupply.add(_numberOfTokens) <= supplyLimit, "Not enough tokens remaining.");

        uint256 newId = totalSupply;
        for(uint i = 0; i < _numberOfTokens; i++) {
            newId += 1;
            totalSupply = totalSupply.add(1);

            _safeMint(msg.sender, newId);
            emit PetMinted(msg.sender, newId, tokenURI(newId));
        }
    }

    function reservePets(uint256 _numberOfTokens) external onlyOwner {
        _mintPets(_numberOfTokens);
        emit ReservePets(_numberOfTokens);
    }

    function _withdraw() internal {
        require(address(this).balance > 0, "No balance to withdraw.");
        uint256 _amount = address(this).balance;
        (bool wallet1Success, ) = dev1Address.call{value: _amount.mul(dev1Share).div(100)}("");
        (bool wallet2Success, ) = dev2Address.call{value: _amount.mul(dev2Share).div(100)}("");

        require(wallet1Success && wallet2Success, "Withdrawal failed.");
    }

    function setStylePrice(uint256 _styleId, uint256 _price) external onlyOwner {
        require(allowedStyles[_styleId], "Style is not allowed.");
        stylePrice[_styleId] = _price;
        emit StylePriceChanged(_styleId, _price);
    }

    function setNamingPrice(uint256 _namingPrice) external onlyOwner {
        namingPrice = _namingPrice;
        emit NamingPriceChanged(_namingPrice);
    }

    function changeStyle(uint256 _styleId, uint256 _tokenId) external payable {
        require(ownerOf(_tokenId) == msg.sender, "Only owner of NFT can change name.");
        require(allowedStyles[_styleId], "Style is not allowed.");
        require(stylePrice[_styleId] >= msg.value, "Price is incorrect");

        tokenStyle[_tokenId] = _styleId;
        emit StyleChanged(_tokenId, _styleId);
    }

    function addStyle(uint256 _styleId) external onlyOwner {
        require(_styleId >= 0 && !allowedStyles[_styleId], "Invalid style Id.");
        
        allowedStyles[_styleId] = true;
        emit StyleAdded(_styleId);
    }

    function removeStyle(uint256 _styleId) external onlyOwner {
        require(_styleId > 0 && allowedStyles[_styleId], "Invalid style Id.");
        
        allowedStyles[_styleId] = false;
        emit StyleRemoved(_styleId);
    }

    function nameNFT(uint256 _tokenId, string memory _name) external payable {
        require(msg.value == namingPrice, "Incorrect price paid.");
        require(namingAllowed, "Naming is disabled.");
        require(ownerOf(_tokenId) == msg.sender, "Only owner of NFT can change name.");
        require(bytes(_name).length <= charLimit, "Name exceeds characters limit.");
        emit NameChanged(_tokenId, _name);
    }

    function emergencyWithdraw() external onlyOwner {
        require(address(this).balance > 0, "No funds in smart Contract.");
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "Withdraw Failed.");
    }
  
    function withdrawAll() external {
        require(msg.sender == dev1Address || msg.sender == dev2Address, "Only share holders can call this method.");
        _withdraw();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"tokenSupplyLimit","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"}],"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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"NamingPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_namingAllowed","type":"bool"}],"name":"NamingStateChanged","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":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"PetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"ReservePets","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"_value1","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_value2","type":"uint8"}],"name":"SharesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"StyleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_styleId","type":"uint256"}],"name":"StyleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_styleId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"StylePriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"StyleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet1","type":"address"}],"name":"wallet1AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet2","type":"address"}],"name":"wallet2AddressChanged","type":"event"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"}],"name":"addStyle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowedStyles","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"buyPets","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"changeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"changeStyle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charLimit","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev1Share","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev2Share","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"nameNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"namingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"}],"name":"removeStyle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"reservePets","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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint8","name":"_charLimit","type":"uint8"}],"name":"setCharacterLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_namingPrice","type":"uint256"}],"name":"setNamingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setStylePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWallet_1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWallet_2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stylePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_namingAllowed","type":"bool"}],"name":"toggleNaming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenStyle","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600060078190556002600855600a805460ff19169055600b819055600d805462ffffff60a01b19166210191960a11b17905560a0604081905260808290526200004c91601191906200037a565b5060006012556013805460ff191690553480156200006957600080fd5b5060405162003416380380620034168339810160408190526200008c9162000420565b604051806040016040528060048152602001635045545360e01b815250604051806040016040528060048152602001635045545360e01b815250620000e0620000da6200032660201b60201c565b6200032a565b8151620000f59060019060208501906200037a565b5080516200010b9060029060208401906200037a565b5050506009829055600054600c80546001600160a01b039092166001600160a01b03199283168117909155600d80549092161790558051620001559060119060208401906200037a565b5060008052600f6020527ff4803e074bd026baaf6ed2e288c9515f68c72fb7216eebdd7cae1718a53ec375805460ff19166001179055600b546040517f4c9664b26dac29ad37dc5d246f6d23b260bd682a0179c9dd803e6643fc39ab9691620001c19190815260200190565b60405180910390a17f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07600954604051620001fd91815260200190565b60405180910390a17f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516200023991815260200190565b60405180910390a17f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f6007546040516200027591815260200190565b60405180910390a17f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051620002ae9190620004e1565b60405180910390a1604051600081527f0fbf9d62c56adf188a275d5f7a102eef44f9a934c1625f86996a96f005efa9cf9060200160405180910390a1604051600181527f83bbab4027fa9736c47ba53472f66ce0a0564aa42d70db3e3e3c11b2eb793d199060200160405180910390a150506200059c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620003889062000549565b90600052602060002090601f016020900481019282620003ac5760008555620003f7565b82601f10620003c757805160ff1916838001178555620003f7565b82800160010185558215620003f7579182015b82811115620003f7578251825591602001919060010190620003da565b506200040592915062000409565b5090565b5b808211156200040557600081556001016200040a565b6000806040838503121562000433578182fd5b825160208401519092506001600160401b038082111562000452578283fd5b818501915085601f83011262000466578283fd5b8151818111156200047b576200047b62000586565b604051601f8201601f19908116603f01168101908382118183101715620004a657620004a662000586565b81604052828152886020848701011115620004bf578586fd5b620004d283602083016020880162000516565b80955050505050509250929050565b60208152600082518060208401526200050281604085016020870162000516565b601f01601f19169190910160400192915050565b60005b838110156200053357818101518382015260200162000519565b8381111562000543576000848401525b50505050565b600181811c908216806200055e57607f821691505b602082108114156200058057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e6a80620005ac6000396000f3fe6080604052600436106102c95760003560e01c806368428a1b116101755780639a13a7ec116100dc578063d44e357311610095578063e985e9c51161006f578063e985e9c514610860578063f2fde38b146108a9578063ff16d1df146108c9578063fff5982b146108f657600080fd5b8063d44e35731461080b578063d51151971461082b578063db2e21bc1461084b57600080fd5b80639a13a7ec14610749578063a22cb4651461076a578063b564ef781461078a578063b88d4fde146107ab578063bc37681e146107cb578063c87b56dd146107eb57600080fd5b8063853828b61161012e578063853828b6146106ab5780638da5cb5b146106c05780639219ac36146106de5780639225de64146106fe57806395d89b411461071e578063996517cf1461073357600080fd5b806368428a1b146106145780636c0360eb1461062e5780636f5286d71461064357806370a0823114610656578063712ad5cc14610676578063715018a61461069657600080fd5b806334259b5c11610234578063555dc709116101ed5780635a409fd7116101c75780635a409fd7146105b15780635c0c370f146105c45780636352211e146105de5780636817c76c146105fe57600080fd5b8063555dc7091461053457806355f804b31461056457806359af2ba11461058457600080fd5b806334259b5c1461046e5780633fd173661461048e57806342842e0e146104ae5780634c085ece146104ce5780635325fafd14610501578063542e56331461052157600080fd5b806318160ddd1161028657806318160ddd146103bf57806319d1997a146103e357806320c09e24146103f957806323b872dd146104195780632cd29564146104395780633100a5351461045957600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d578063128cf3f81461037f57806316afd7be1461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612959565b610916565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610968565b6040516102fa9190612b9e565b34801561033157600080fd5b506103456103403660046129c4565b6109fa565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612916565b610a94565b005b34801561038b57600080fd5b5061037d61039a3660046127ed565b610baa565b3480156103ab57600080fd5b5061037d6103ba3660046129c4565b610c38565b3480156103cb57600080fd5b506103d560125481565b6040519081526020016102fa565b3480156103ef57600080fd5b506103d560095481565b34801561040557600080fd5b50600d54610345906001600160a01b031681565b34801561042557600080fd5b5061037d610434366004612839565b610d08565b34801561044557600080fd5b5061037d6104543660046129c4565b610d39565b34801561046557600080fd5b5061037d610d98565b34801561047a57600080fd5b5061037d6104893660046129c4565b610e0f565b34801561049a57600080fd5b5061037d6104a93660046129c4565b610e6e565b3480156104ba57600080fd5b5061037d6104c9366004612839565b610ecd565b3480156104da57600080fd5b50600d546104ef90600160a01b900460ff1681565b60405160ff90911681526020016102fa565b34801561050d57600080fd5b5061037d61051c366004612a42565b610ee8565b61037d61052f3660046129c4565b610f32565b34801561054057600080fd5b506102ee61054f3660046129c4565b600f6020526000908152604090205460ff1681565b34801561057057600080fd5b5061037d61057f366004612991565b611048565b34801561059057600080fd5b506103d561059f3660046129c4565b600e6020526000908152604090205481565b61037d6105bf366004612a21565b6110b5565b3480156105d057600080fd5b506013546102ee9060ff1681565b3480156105ea57600080fd5b506103456105f93660046129c4565b6111de565b34801561060a57600080fd5b506103d560075481565b34801561062057600080fd5b50600a546102ee9060ff1681565b34801561063a57600080fd5b50610318611255565b61037d6106513660046129dc565b6112e3565b34801561066257600080fd5b506103d56106713660046127ed565b611433565b34801561068257600080fd5b5061037d61069136600461293f565b6114ba565b3480156106a257600080fd5b5061037d611525565b3480156106b757600080fd5b5061037d61155b565b3480156106cc57600080fd5b506000546001600160a01b0316610345565b3480156106ea57600080fd5b5061037d6106f93660046129c4565b6115e3565b34801561070a57600080fd5b5061037d6107193660046127ed565b611646565b34801561072a57600080fd5b506103186116be565b34801561073f57600080fd5b506103d560085481565b34801561075557600080fd5b50600d546104ef90600160b01b900460ff1681565b34801561077657600080fd5b5061037d6107853660046128ed565b6116cd565b34801561079657600080fd5b50600d546104ef90600160a81b900460ff1681565b3480156107b757600080fd5b5061037d6107c6366004612874565b611792565b3480156107d757600080fd5b5061037d6107e6366004612a21565b6117ca565b3480156107f757600080fd5b506103186108063660046129c4565b611892565b34801561081757600080fd5b5061037d6108263660046129c4565b611987565b34801561083757600080fd5b5061037d6108463660046129c4565b611a42565b34801561085757600080fd5b5061037d611b0a565b34801561086c57600080fd5b506102ee61087b366004612807565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108b557600080fd5b5061037d6108c43660046127ed565b611c1a565b3480156108d557600080fd5b506103d56108e43660046129c4565b60106020526000908152604090205481565b34801561090257600080fd5b50600c54610345906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b148061094757506001600160e01b03198216635b5e139f60e01b145b8061096257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461097790612d72565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390612d72565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a9f826111de565b9050806001600160a01b0316836001600160a01b03161415610b0d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a6f565b336001600160a01b0382161480610b295750610b29813361087b565b610b9b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6f565b610ba58383611cb2565b505050565b6000546001600160a01b03163314610bd45760405162461bcd60e51b8152600401610a6f90612c03565b600d80546001600160a01b0319166001600160a01b038316179055610bf881611c1a565b6040516001600160a01b03821681527f9539f0adf432f6612656f7ec15ddf8a7e5835132bd4a474f39954885dbfc4554906020015b60405180910390a150565b6000546001600160a01b03163314610c625760405162461bcd60e51b8152600401610a6f90612c03565b600081118015610c8057506000818152600f602052604090205460ff165b610cc05760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b21039ba3cb6329024b21760791b6044820152606401610a6f565b6000818152600f602052604090819020805460ff19169055517f68377694da626e57ab4efe5b346f62cb4c2a7dc3d84bf0b17a09717742362cdc90610c2d9083815260200190565b610d123382611d20565b610d2e5760405162461bcd60e51b8152600401610a6f90612c7a565b610ba5838383611e17565b6000546001600160a01b03163314610d635760405162461bcd60e51b8152600401610a6f90612c03565b600b8190556040518181527f4c9664b26dac29ad37dc5d246f6d23b260bd682a0179c9dd803e6643fc39ab9690602001610c2d565b6000546001600160a01b03163314610dc25760405162461bcd60e51b8152600401610a6f90612c03565b600a805460ff8082161560ff1990921682179092556040519116151581527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200160405180910390a1565b6000546001600160a01b03163314610e395760405162461bcd60e51b8152600401610a6f90612c03565b60088190556040518181527f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab90602001610c2d565b6000546001600160a01b03163314610e985760405162461bcd60e51b8152600401610a6f90612c03565b60078190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610c2d565b610ba583838360405180602001604052806000815250611792565b6000546001600160a01b03163314610f125760405162461bcd60e51b8152600401610a6f90612c03565b600d805460ff909216600160b01b0260ff60b01b19909216919091179055565b600a5460ff16610f7c5760405162461bcd60e51b815260206004820152601560248201527429b0b632902430b9902737ba1029ba30b93a32b21760591b6044820152606401610a6f565b600854811115610fce5760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686973206d616e7920746f6b656e732e000000006044820152606401610a6f565b600754610fdb9082611fb7565b34101561103c5760405162461bcd60e51b815260206004820152602960248201527f436865636b20796f7572207061796d656e742c20736f6d657468696e67207765604482015268373a103bb937b7339760b91b6064820152608401610a6f565b61104581611fca565b50565b6000546001600160a01b031633146110725760405162461bcd60e51b8152600401610a6f90612c03565b8051611085906011906020840190612693565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c2d9190612b9e565b336110bf826111de565b6001600160a01b0316146110e55760405162461bcd60e51b8152600401610a6f90612c38565b6000828152600f602052604090205460ff1661113b5760405162461bcd60e51b815260206004820152601560248201527429ba3cb6329034b9903737ba1030b63637bbb2b21760591b6044820152606401610a6f565b60008281526010602052604090205434111561118e5760405162461bcd60e51b8152602060048201526012602482015271141c9a58d9481a5cc81a5b98dbdc9c9958dd60721b6044820152606401610a6f565b6000818152600e602090815260409182902084905581518381529081018490527fe8b6c222311acdcfb38b74b9fbe783ed3c1ea1b725bb82a0a1c76a82c6ffb4d291015b60405180910390a15050565b6000818152600360205260408120546001600160a01b0316806109625760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a6f565b6011805461126290612d72565b80601f016020809104026020016040519081016040528092919081815260200182805461128e90612d72565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b505050505081565b600b54341461132c5760405162461bcd60e51b815260206004820152601560248201527424b731b7b93932b1ba10383934b1b2903830b4b21760591b6044820152606401610a6f565b60135460ff166113745760405162461bcd60e51b81526020600482015260136024820152722730b6b4b7339034b9903234b9b0b13632b21760691b6044820152606401610a6f565b3361137e836111de565b6001600160a01b0316146113a45760405162461bcd60e51b8152600401610a6f90612c38565b600d548151600160b01b90910460ff1610156114025760405162461bcd60e51b815260206004820152601e60248201527f4e616d6520657863656564732063686172616374657273206c696d69742e00006044820152606401610a6f565b7f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b82826040516111d2929190612ccb565b60006001600160a01b03821661149e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a6f565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146114e45760405162461bcd60e51b8152600401610a6f90612c03565b6013805460ff19168215159081179091556040519081527f83bbab4027fa9736c47ba53472f66ce0a0564aa42d70db3e3e3c11b2eb793d1990602001610c2d565b6000546001600160a01b0316331461154f5760405162461bcd60e51b8152600401610a6f90612c03565b61155960006120b2565b565b600c546001600160a01b031633148061157e5750600d546001600160a01b031633145b6115db5760405162461bcd60e51b815260206004820152602860248201527f4f6e6c7920736861726520686f6c646572732063616e2063616c6c20746869736044820152671036b2ba3437b21760c11b6064820152608401610a6f565b611559612102565b6000546001600160a01b0316331461160d5760405162461bcd60e51b8152600401610a6f90612c03565b61161681611fca565b6040518181527f40aa174962cbb9967c99989b1a489d06ec7c8e28b96905ac4999e3daf91d211c90602001610c2d565b6000546001600160a01b031633146116705760405162461bcd60e51b8152600401610a6f90612c03565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f1354f2ed7ad63d510fe05b011c0f4585cc0503e5f2a9cf0ac0b2e7dc80127d5d90602001610c2d565b60606002805461097790612d72565b6001600160a01b0382163314156117265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61179c3383611d20565b6117b85760405162461bcd60e51b8152600401610a6f90612c7a565b6117c48484848461228e565b50505050565b6000546001600160a01b031633146117f45760405162461bcd60e51b8152600401610a6f90612c03565b6000828152600f602052604090205460ff1661184a5760405162461bcd60e51b815260206004820152601560248201527429ba3cb6329034b9903737ba1030b63637bbb2b21760591b6044820152606401610a6f565b60008281526010602090815260409182902083905581518481529081018390527f0de32425bf4e0574a7c52f3fe4f82fe171dfce59235a2f29ce86928ac105e39891016111d2565b6000818152600360205260409020546060906001600160a01b03166119115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6f565b60006011805461192090612d72565b90501161193c5760405180602001604052806000815250610962565b6000828152600e6020526040902054601190611957906122c1565b611960846122c1565b60405160200161197293929190612aab565b60405160208183030381529060405292915050565b6000546001600160a01b031633146119b15760405162461bcd60e51b8152600401610a6f90612c03565b601254811015611a0d5760405162461bcd60e51b815260206004820152602160248201527f456e746572206e756d62657220686967686572207468616e2063757272656e746044820152601760f91b6064820152608401610a6f565b60098190556040518181527f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0790602001610c2d565b6000546001600160a01b03163314611a6c5760405162461bcd60e51b8152600401610a6f90612c03565b6000818152600f602052604090205460ff1615611abf5760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b21039ba3cb6329024b21760791b6044820152606401610a6f565b6000818152600f602052604090819020805460ff19166001179055517f0fbf9d62c56adf188a275d5f7a102eef44f9a934c1625f86996a96f005efa9cf90610c2d9083815260200190565b6000546001600160a01b03163314611b345760405162461bcd60e51b8152600401610a6f90612c03565b60004711611b845760405162461bcd60e51b815260206004820152601b60248201527f4e6f2066756e647320696e20736d61727420436f6e74726163742e00000000006044820152606401610a6f565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114611bd1576040519150601f19603f3d011682016040523d82523d6000602084013e611bd6565b606091505b50509050806110455760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb902330b4b632b21760811b6044820152606401610a6f565b6000546001600160a01b03163314611c445760405162461bcd60e51b8152600401610a6f90612c03565b6001600160a01b038116611ca95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b611045816120b2565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ce7826111de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611d995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6f565b6000611da4836111de565b9050806001600160a01b0316846001600160a01b03161480611ddf5750836001600160a01b0316611dd4846109fa565b6001600160a01b0316145b80611e0f57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e2a826111de565b6001600160a01b031614611e925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a6f565b6001600160a01b038216611ef45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6f565b611eff600082611cb2565b6001600160a01b0383166000908152600460205260408120805460019290611f28908490612d2f565b90915550506001600160a01b0382166000908152600460205260408120805460019290611f56908490612ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611fc38284612d10565b9392505050565b600954601254611fda90836123db565b11156120285760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e672e000000006044820152606401610a6f565b60125460005b82811015610ba557612041600183612ce4565b6012549092506120529060016123db565b60125561205f33836123e7565b81337fea7d05fbcf322781087e60d7f9261da9daa54500fccc983a1844cf0c9a72da3d61208b83611892565b6040516120989190612b9e565b60405180910390a3806120aa81612dad565b91505061202e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600047116121525760405162461bcd60e51b815260206004820152601760248201527f4e6f2062616c616e636520746f2077697468647261772e0000000000000000006044820152606401610a6f565b600c54600d5447916000916001600160a01b039091169061218b90606490612185908690600160a01b900460ff16611fb7565b90612405565b604051600081818185875af1925050503d80600081146121c7576040519150601f19603f3d011682016040523d82523d6000602084013e6121cc565b606091505b5050600d549091506000906001600160a01b038116906121fe90606490612185908790600160a81b900460ff16611fb7565b604051600081818185875af1925050503d806000811461223a576040519150601f19603f3d011682016040523d82523d6000602084013e61223f565b606091505b5050905081801561224d5750805b610ba55760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bbb0b6103330b4b632b21760711b6044820152606401610a6f565b612299848484611e17565b6122a584848484612411565b6117c45760405162461bcd60e51b8152600401610a6f90612bb1565b6060816122e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230f57806122f981612dad565b91506123089050600a83612cfc565b91506122e9565b60008167ffffffffffffffff81111561233857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612362576020820181803683370190505b5090505b8415611e0f57612377600183612d2f565b9150612384600a86612dc8565b61238f906030612ce4565b60f81b8183815181106123b257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123d4600a86612cfc565b9450612366565b6000611fc38284612ce4565b61240182826040518060200160405280600081525061251e565b5050565b6000611fc38284612cfc565b60006001600160a01b0384163b1561251357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612455903390899088908890600401612b6b565b602060405180830381600087803b15801561246f57600080fd5b505af192505050801561249f575060408051601f3d908101601f1916820190925261249c91810190612975565b60015b6124f9573d8080156124cd576040519150601f19603f3d011682016040523d82523d6000602084013e6124d2565b606091505b5080516124f15760405162461bcd60e51b8152600401610a6f90612bb1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e0f565b506001949350505050565b6125288383612551565b6125356000848484612411565b610ba55760405162461bcd60e51b8152600401610a6f90612bb1565b6001600160a01b0382166125a75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6f565b6000818152600360205260409020546001600160a01b03161561260c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6f565b6001600160a01b0382166000908152600460205260408120805460019290612635908490612ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461269f90612d72565b90600052602060002090601f0160209004810192826126c15760008555612707565b82601f106126da57805160ff1916838001178555612707565b82800160010185558215612707579182015b828111156127075782518255916020019190600101906126ec565b50612713929150612717565b5090565b5b808211156127135760008155600101612718565b600067ffffffffffffffff8084111561274757612747612e08565b604051601f8501601f19908116603f0116810190828211818310171561276f5761276f612e08565b8160405280935085815286868601111561278857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127b957600080fd5b919050565b803580151581146127b957600080fd5b600082601f8301126127de578081fd5b611fc38383356020850161272c565b6000602082840312156127fe578081fd5b611fc3826127a2565b60008060408385031215612819578081fd5b612822836127a2565b9150612830602084016127a2565b90509250929050565b60008060006060848603121561284d578081fd5b612856846127a2565b9250612864602085016127a2565b9150604084013590509250925092565b60008060008060808587031215612889578081fd5b612892856127a2565b93506128a0602086016127a2565b925060408501359150606085013567ffffffffffffffff8111156128c2578182fd5b8501601f810187136128d2578182fd5b6128e18782356020840161272c565b91505092959194509250565b600080604083850312156128ff578182fd5b612908836127a2565b9150612830602084016127be565b60008060408385031215612928578182fd5b612931836127a2565b946020939093013593505050565b600060208284031215612950578081fd5b611fc3826127be565b60006020828403121561296a578081fd5b8135611fc381612e1e565b600060208284031215612986578081fd5b8151611fc381612e1e565b6000602082840312156129a2578081fd5b813567ffffffffffffffff8111156129b8578182fd5b611e0f848285016127ce565b6000602082840312156129d5578081fd5b5035919050565b600080604083850312156129ee578182fd5b82359150602083013567ffffffffffffffff811115612a0b578182fd5b612a17858286016127ce565b9150509250929050565b60008060408385031215612a33578182fd5b50508035926020909101359150565b600060208284031215612a53578081fd5b813560ff81168114611fc3578182fd5b60008151808452612a7b816020860160208601612d46565b601f01601f19169290920160200192915050565b60008151612aa1818560208601612d46565b9290920192915050565b600080855482600182811c915080831680612ac757607f831692505b6020808410821415612ae757634e487b7160e01b87526022600452602487fd5b818015612afb5760018114612b0c57612b38565b60ff19861689528489019650612b38565b60008c815260209020885b86811015612b305781548b820152908501908301612b17565b505084890196505b505050505050612b61612b5b612b4e8388612a8f565b602f60f81b815260010190565b85612a8f565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6190830184612a63565b602081526000611fc36020830184612a63565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f4f6e6c79206f776e6572206f66204e46542063616e206368616e6765206e616d604082015261329760f11b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b828152604060208201526000611e0f6040830184612a63565b60008219821115612cf757612cf7612ddc565b500190565b600082612d0b57612d0b612df2565b500490565b6000816000190483118215151615612d2a57612d2a612ddc565b500290565b600082821015612d4157612d41612ddc565b500390565b60005b83811015612d61578181015183820152602001612d49565b838111156117c45750506000910152565b600181811c90821680612d8657607f821691505b60208210811415612da757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dc157612dc1612ddc565b5060010190565b600082612dd757612dd7612df2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104557600080fdfea2646970667358221220dba8e71c11e34bc96a083b3316c99144d2c4b0932081a667ebb3aedd42a486d864736f6c6343000804003300000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f706574736e66742e696f2f706574732f0000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c806368428a1b116101755780639a13a7ec116100dc578063d44e357311610095578063e985e9c51161006f578063e985e9c514610860578063f2fde38b146108a9578063ff16d1df146108c9578063fff5982b146108f657600080fd5b8063d44e35731461080b578063d51151971461082b578063db2e21bc1461084b57600080fd5b80639a13a7ec14610749578063a22cb4651461076a578063b564ef781461078a578063b88d4fde146107ab578063bc37681e146107cb578063c87b56dd146107eb57600080fd5b8063853828b61161012e578063853828b6146106ab5780638da5cb5b146106c05780639219ac36146106de5780639225de64146106fe57806395d89b411461071e578063996517cf1461073357600080fd5b806368428a1b146106145780636c0360eb1461062e5780636f5286d71461064357806370a0823114610656578063712ad5cc14610676578063715018a61461069657600080fd5b806334259b5c11610234578063555dc709116101ed5780635a409fd7116101c75780635a409fd7146105b15780635c0c370f146105c45780636352211e146105de5780636817c76c146105fe57600080fd5b8063555dc7091461053457806355f804b31461056457806359af2ba11461058457600080fd5b806334259b5c1461046e5780633fd173661461048e57806342842e0e146104ae5780634c085ece146104ce5780635325fafd14610501578063542e56331461052157600080fd5b806318160ddd1161028657806318160ddd146103bf57806319d1997a146103e357806320c09e24146103f957806323b872dd146104195780632cd29564146104395780633100a5351461045957600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d578063128cf3f81461037f57806316afd7be1461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612959565b610916565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610968565b6040516102fa9190612b9e565b34801561033157600080fd5b506103456103403660046129c4565b6109fa565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612916565b610a94565b005b34801561038b57600080fd5b5061037d61039a3660046127ed565b610baa565b3480156103ab57600080fd5b5061037d6103ba3660046129c4565b610c38565b3480156103cb57600080fd5b506103d560125481565b6040519081526020016102fa565b3480156103ef57600080fd5b506103d560095481565b34801561040557600080fd5b50600d54610345906001600160a01b031681565b34801561042557600080fd5b5061037d610434366004612839565b610d08565b34801561044557600080fd5b5061037d6104543660046129c4565b610d39565b34801561046557600080fd5b5061037d610d98565b34801561047a57600080fd5b5061037d6104893660046129c4565b610e0f565b34801561049a57600080fd5b5061037d6104a93660046129c4565b610e6e565b3480156104ba57600080fd5b5061037d6104c9366004612839565b610ecd565b3480156104da57600080fd5b50600d546104ef90600160a01b900460ff1681565b60405160ff90911681526020016102fa565b34801561050d57600080fd5b5061037d61051c366004612a42565b610ee8565b61037d61052f3660046129c4565b610f32565b34801561054057600080fd5b506102ee61054f3660046129c4565b600f6020526000908152604090205460ff1681565b34801561057057600080fd5b5061037d61057f366004612991565b611048565b34801561059057600080fd5b506103d561059f3660046129c4565b600e6020526000908152604090205481565b61037d6105bf366004612a21565b6110b5565b3480156105d057600080fd5b506013546102ee9060ff1681565b3480156105ea57600080fd5b506103456105f93660046129c4565b6111de565b34801561060a57600080fd5b506103d560075481565b34801561062057600080fd5b50600a546102ee9060ff1681565b34801561063a57600080fd5b50610318611255565b61037d6106513660046129dc565b6112e3565b34801561066257600080fd5b506103d56106713660046127ed565b611433565b34801561068257600080fd5b5061037d61069136600461293f565b6114ba565b3480156106a257600080fd5b5061037d611525565b3480156106b757600080fd5b5061037d61155b565b3480156106cc57600080fd5b506000546001600160a01b0316610345565b3480156106ea57600080fd5b5061037d6106f93660046129c4565b6115e3565b34801561070a57600080fd5b5061037d6107193660046127ed565b611646565b34801561072a57600080fd5b506103186116be565b34801561073f57600080fd5b506103d560085481565b34801561075557600080fd5b50600d546104ef90600160b01b900460ff1681565b34801561077657600080fd5b5061037d6107853660046128ed565b6116cd565b34801561079657600080fd5b50600d546104ef90600160a81b900460ff1681565b3480156107b757600080fd5b5061037d6107c6366004612874565b611792565b3480156107d757600080fd5b5061037d6107e6366004612a21565b6117ca565b3480156107f757600080fd5b506103186108063660046129c4565b611892565b34801561081757600080fd5b5061037d6108263660046129c4565b611987565b34801561083757600080fd5b5061037d6108463660046129c4565b611a42565b34801561085757600080fd5b5061037d611b0a565b34801561086c57600080fd5b506102ee61087b366004612807565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108b557600080fd5b5061037d6108c43660046127ed565b611c1a565b3480156108d557600080fd5b506103d56108e43660046129c4565b60106020526000908152604090205481565b34801561090257600080fd5b50600c54610345906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b148061094757506001600160e01b03198216635b5e139f60e01b145b8061096257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461097790612d72565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390612d72565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a9f826111de565b9050806001600160a01b0316836001600160a01b03161415610b0d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a6f565b336001600160a01b0382161480610b295750610b29813361087b565b610b9b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6f565b610ba58383611cb2565b505050565b6000546001600160a01b03163314610bd45760405162461bcd60e51b8152600401610a6f90612c03565b600d80546001600160a01b0319166001600160a01b038316179055610bf881611c1a565b6040516001600160a01b03821681527f9539f0adf432f6612656f7ec15ddf8a7e5835132bd4a474f39954885dbfc4554906020015b60405180910390a150565b6000546001600160a01b03163314610c625760405162461bcd60e51b8152600401610a6f90612c03565b600081118015610c8057506000818152600f602052604090205460ff165b610cc05760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b21039ba3cb6329024b21760791b6044820152606401610a6f565b6000818152600f602052604090819020805460ff19169055517f68377694da626e57ab4efe5b346f62cb4c2a7dc3d84bf0b17a09717742362cdc90610c2d9083815260200190565b610d123382611d20565b610d2e5760405162461bcd60e51b8152600401610a6f90612c7a565b610ba5838383611e17565b6000546001600160a01b03163314610d635760405162461bcd60e51b8152600401610a6f90612c03565b600b8190556040518181527f4c9664b26dac29ad37dc5d246f6d23b260bd682a0179c9dd803e6643fc39ab9690602001610c2d565b6000546001600160a01b03163314610dc25760405162461bcd60e51b8152600401610a6f90612c03565b600a805460ff8082161560ff1990921682179092556040519116151581527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200160405180910390a1565b6000546001600160a01b03163314610e395760405162461bcd60e51b8152600401610a6f90612c03565b60088190556040518181527f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab90602001610c2d565b6000546001600160a01b03163314610e985760405162461bcd60e51b8152600401610a6f90612c03565b60078190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610c2d565b610ba583838360405180602001604052806000815250611792565b6000546001600160a01b03163314610f125760405162461bcd60e51b8152600401610a6f90612c03565b600d805460ff909216600160b01b0260ff60b01b19909216919091179055565b600a5460ff16610f7c5760405162461bcd60e51b815260206004820152601560248201527429b0b632902430b9902737ba1029ba30b93a32b21760591b6044820152606401610a6f565b600854811115610fce5760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686973206d616e7920746f6b656e732e000000006044820152606401610a6f565b600754610fdb9082611fb7565b34101561103c5760405162461bcd60e51b815260206004820152602960248201527f436865636b20796f7572207061796d656e742c20736f6d657468696e67207765604482015268373a103bb937b7339760b91b6064820152608401610a6f565b61104581611fca565b50565b6000546001600160a01b031633146110725760405162461bcd60e51b8152600401610a6f90612c03565b8051611085906011906020840190612693565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c2d9190612b9e565b336110bf826111de565b6001600160a01b0316146110e55760405162461bcd60e51b8152600401610a6f90612c38565b6000828152600f602052604090205460ff1661113b5760405162461bcd60e51b815260206004820152601560248201527429ba3cb6329034b9903737ba1030b63637bbb2b21760591b6044820152606401610a6f565b60008281526010602052604090205434111561118e5760405162461bcd60e51b8152602060048201526012602482015271141c9a58d9481a5cc81a5b98dbdc9c9958dd60721b6044820152606401610a6f565b6000818152600e602090815260409182902084905581518381529081018490527fe8b6c222311acdcfb38b74b9fbe783ed3c1ea1b725bb82a0a1c76a82c6ffb4d291015b60405180910390a15050565b6000818152600360205260408120546001600160a01b0316806109625760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a6f565b6011805461126290612d72565b80601f016020809104026020016040519081016040528092919081815260200182805461128e90612d72565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b505050505081565b600b54341461132c5760405162461bcd60e51b815260206004820152601560248201527424b731b7b93932b1ba10383934b1b2903830b4b21760591b6044820152606401610a6f565b60135460ff166113745760405162461bcd60e51b81526020600482015260136024820152722730b6b4b7339034b9903234b9b0b13632b21760691b6044820152606401610a6f565b3361137e836111de565b6001600160a01b0316146113a45760405162461bcd60e51b8152600401610a6f90612c38565b600d548151600160b01b90910460ff1610156114025760405162461bcd60e51b815260206004820152601e60248201527f4e616d6520657863656564732063686172616374657273206c696d69742e00006044820152606401610a6f565b7f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b82826040516111d2929190612ccb565b60006001600160a01b03821661149e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a6f565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146114e45760405162461bcd60e51b8152600401610a6f90612c03565b6013805460ff19168215159081179091556040519081527f83bbab4027fa9736c47ba53472f66ce0a0564aa42d70db3e3e3c11b2eb793d1990602001610c2d565b6000546001600160a01b0316331461154f5760405162461bcd60e51b8152600401610a6f90612c03565b61155960006120b2565b565b600c546001600160a01b031633148061157e5750600d546001600160a01b031633145b6115db5760405162461bcd60e51b815260206004820152602860248201527f4f6e6c7920736861726520686f6c646572732063616e2063616c6c20746869736044820152671036b2ba3437b21760c11b6064820152608401610a6f565b611559612102565b6000546001600160a01b0316331461160d5760405162461bcd60e51b8152600401610a6f90612c03565b61161681611fca565b6040518181527f40aa174962cbb9967c99989b1a489d06ec7c8e28b96905ac4999e3daf91d211c90602001610c2d565b6000546001600160a01b031633146116705760405162461bcd60e51b8152600401610a6f90612c03565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f1354f2ed7ad63d510fe05b011c0f4585cc0503e5f2a9cf0ac0b2e7dc80127d5d90602001610c2d565b60606002805461097790612d72565b6001600160a01b0382163314156117265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61179c3383611d20565b6117b85760405162461bcd60e51b8152600401610a6f90612c7a565b6117c48484848461228e565b50505050565b6000546001600160a01b031633146117f45760405162461bcd60e51b8152600401610a6f90612c03565b6000828152600f602052604090205460ff1661184a5760405162461bcd60e51b815260206004820152601560248201527429ba3cb6329034b9903737ba1030b63637bbb2b21760591b6044820152606401610a6f565b60008281526010602090815260409182902083905581518481529081018390527f0de32425bf4e0574a7c52f3fe4f82fe171dfce59235a2f29ce86928ac105e39891016111d2565b6000818152600360205260409020546060906001600160a01b03166119115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6f565b60006011805461192090612d72565b90501161193c5760405180602001604052806000815250610962565b6000828152600e6020526040902054601190611957906122c1565b611960846122c1565b60405160200161197293929190612aab565b60405160208183030381529060405292915050565b6000546001600160a01b031633146119b15760405162461bcd60e51b8152600401610a6f90612c03565b601254811015611a0d5760405162461bcd60e51b815260206004820152602160248201527f456e746572206e756d62657220686967686572207468616e2063757272656e746044820152601760f91b6064820152608401610a6f565b60098190556040518181527f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0790602001610c2d565b6000546001600160a01b03163314611a6c5760405162461bcd60e51b8152600401610a6f90612c03565b6000818152600f602052604090205460ff1615611abf5760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b21039ba3cb6329024b21760791b6044820152606401610a6f565b6000818152600f602052604090819020805460ff19166001179055517f0fbf9d62c56adf188a275d5f7a102eef44f9a934c1625f86996a96f005efa9cf90610c2d9083815260200190565b6000546001600160a01b03163314611b345760405162461bcd60e51b8152600401610a6f90612c03565b60004711611b845760405162461bcd60e51b815260206004820152601b60248201527f4e6f2066756e647320696e20736d61727420436f6e74726163742e00000000006044820152606401610a6f565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114611bd1576040519150601f19603f3d011682016040523d82523d6000602084013e611bd6565b606091505b50509050806110455760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb902330b4b632b21760811b6044820152606401610a6f565b6000546001600160a01b03163314611c445760405162461bcd60e51b8152600401610a6f90612c03565b6001600160a01b038116611ca95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b611045816120b2565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ce7826111de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611d995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6f565b6000611da4836111de565b9050806001600160a01b0316846001600160a01b03161480611ddf5750836001600160a01b0316611dd4846109fa565b6001600160a01b0316145b80611e0f57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e2a826111de565b6001600160a01b031614611e925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a6f565b6001600160a01b038216611ef45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6f565b611eff600082611cb2565b6001600160a01b0383166000908152600460205260408120805460019290611f28908490612d2f565b90915550506001600160a01b0382166000908152600460205260408120805460019290611f56908490612ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611fc38284612d10565b9392505050565b600954601254611fda90836123db565b11156120285760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e672e000000006044820152606401610a6f565b60125460005b82811015610ba557612041600183612ce4565b6012549092506120529060016123db565b60125561205f33836123e7565b81337fea7d05fbcf322781087e60d7f9261da9daa54500fccc983a1844cf0c9a72da3d61208b83611892565b6040516120989190612b9e565b60405180910390a3806120aa81612dad565b91505061202e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600047116121525760405162461bcd60e51b815260206004820152601760248201527f4e6f2062616c616e636520746f2077697468647261772e0000000000000000006044820152606401610a6f565b600c54600d5447916000916001600160a01b039091169061218b90606490612185908690600160a01b900460ff16611fb7565b90612405565b604051600081818185875af1925050503d80600081146121c7576040519150601f19603f3d011682016040523d82523d6000602084013e6121cc565b606091505b5050600d549091506000906001600160a01b038116906121fe90606490612185908790600160a81b900460ff16611fb7565b604051600081818185875af1925050503d806000811461223a576040519150601f19603f3d011682016040523d82523d6000602084013e61223f565b606091505b5050905081801561224d5750805b610ba55760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bbb0b6103330b4b632b21760711b6044820152606401610a6f565b612299848484611e17565b6122a584848484612411565b6117c45760405162461bcd60e51b8152600401610a6f90612bb1565b6060816122e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230f57806122f981612dad565b91506123089050600a83612cfc565b91506122e9565b60008167ffffffffffffffff81111561233857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612362576020820181803683370190505b5090505b8415611e0f57612377600183612d2f565b9150612384600a86612dc8565b61238f906030612ce4565b60f81b8183815181106123b257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123d4600a86612cfc565b9450612366565b6000611fc38284612ce4565b61240182826040518060200160405280600081525061251e565b5050565b6000611fc38284612cfc565b60006001600160a01b0384163b1561251357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612455903390899088908890600401612b6b565b602060405180830381600087803b15801561246f57600080fd5b505af192505050801561249f575060408051601f3d908101601f1916820190925261249c91810190612975565b60015b6124f9573d8080156124cd576040519150601f19603f3d011682016040523d82523d6000602084013e6124d2565b606091505b5080516124f15760405162461bcd60e51b8152600401610a6f90612bb1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e0f565b506001949350505050565b6125288383612551565b6125356000848484612411565b610ba55760405162461bcd60e51b8152600401610a6f90612bb1565b6001600160a01b0382166125a75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6f565b6000818152600360205260409020546001600160a01b03161561260c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6f565b6001600160a01b0382166000908152600460205260408120805460019290612635908490612ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461269f90612d72565b90600052602060002090601f0160209004810192826126c15760008555612707565b82601f106126da57805160ff1916838001178555612707565b82800160010185558215612707579182015b828111156127075782518255916020019190600101906126ec565b50612713929150612717565b5090565b5b808211156127135760008155600101612718565b600067ffffffffffffffff8084111561274757612747612e08565b604051601f8501601f19908116603f0116810190828211818310171561276f5761276f612e08565b8160405280935085815286868601111561278857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127b957600080fd5b919050565b803580151581146127b957600080fd5b600082601f8301126127de578081fd5b611fc38383356020850161272c565b6000602082840312156127fe578081fd5b611fc3826127a2565b60008060408385031215612819578081fd5b612822836127a2565b9150612830602084016127a2565b90509250929050565b60008060006060848603121561284d578081fd5b612856846127a2565b9250612864602085016127a2565b9150604084013590509250925092565b60008060008060808587031215612889578081fd5b612892856127a2565b93506128a0602086016127a2565b925060408501359150606085013567ffffffffffffffff8111156128c2578182fd5b8501601f810187136128d2578182fd5b6128e18782356020840161272c565b91505092959194509250565b600080604083850312156128ff578182fd5b612908836127a2565b9150612830602084016127be565b60008060408385031215612928578182fd5b612931836127a2565b946020939093013593505050565b600060208284031215612950578081fd5b611fc3826127be565b60006020828403121561296a578081fd5b8135611fc381612e1e565b600060208284031215612986578081fd5b8151611fc381612e1e565b6000602082840312156129a2578081fd5b813567ffffffffffffffff8111156129b8578182fd5b611e0f848285016127ce565b6000602082840312156129d5578081fd5b5035919050565b600080604083850312156129ee578182fd5b82359150602083013567ffffffffffffffff811115612a0b578182fd5b612a17858286016127ce565b9150509250929050565b60008060408385031215612a33578182fd5b50508035926020909101359150565b600060208284031215612a53578081fd5b813560ff81168114611fc3578182fd5b60008151808452612a7b816020860160208601612d46565b601f01601f19169290920160200192915050565b60008151612aa1818560208601612d46565b9290920192915050565b600080855482600182811c915080831680612ac757607f831692505b6020808410821415612ae757634e487b7160e01b87526022600452602487fd5b818015612afb5760018114612b0c57612b38565b60ff19861689528489019650612b38565b60008c815260209020885b86811015612b305781548b820152908501908301612b17565b505084890196505b505050505050612b61612b5b612b4e8388612a8f565b602f60f81b815260010190565b85612a8f565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6190830184612a63565b602081526000611fc36020830184612a63565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f4f6e6c79206f776e6572206f66204e46542063616e206368616e6765206e616d604082015261329760f11b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b828152604060208201526000611e0f6040830184612a63565b60008219821115612cf757612cf7612ddc565b500190565b600082612d0b57612d0b612df2565b500490565b6000816000190483118215151615612d2a57612d2a612ddc565b500290565b600082821015612d4157612d41612ddc565b500390565b60005b83811015612d61578181015183820152602001612d49565b838111156117c45750506000910152565b600181811c90821680612d8657607f821691505b60208210811415612da757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dc157612dc1612ddc565b5060010190565b600082612dd757612dd7612df2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104557600080fdfea2646970667358221220dba8e71c11e34bc96a083b3316c99144d2c4b0932081a667ebb3aedd42a486d864736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f706574736e66742e696f2f706574732f0000000000000000

-----Decoded View---------------
Arg [0] : tokenSupplyLimit (uint256): 2500
Arg [1] : _baseURI (string): https://petsnft.io/pets/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [3] : 68747470733a2f2f706574736e66742e696f2f706574732f0000000000000000


Deployed Bytecode Sourcemap

40604:7717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28479:305;;;;;;;;;;-1:-1:-1;28479:305:0;;;;;:::i;:::-;;:::i;:::-;;;8555:14:1;;8548:22;8530:41;;8518:2;8503:18;28479:305:0;;;;;;;;29424:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30983:221::-;;;;;;;;;;-1:-1:-1;30983:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7853:32:1;;;7835:51;;7823:2;7808:18;30983:221:0;7790:102:1;30506:411:0;;;;;;;;;;-1:-1:-1;30506:411:0;;;;;:::i;:::-;;:::i;:::-;;43820:183;;;;;;;;;;-1:-1:-1;43820:183:0;;;;;:::i;:::-;;:::i;47196:236::-;;;;;;;;;;-1:-1:-1;47196:236:0;;;;;:::i;:::-;;:::i;41280:30::-;;;;;;;;;;;;;;;;;;;21522:25:1;;;21510:2;21495:18;41280:30:0;21477:76:1;40797:26:0;;;;;;;;;;;;;;;;40940;;;;;;;;;;-1:-1:-1;40940:26:0;;;;-1:-1:-1;;;;;40940:26:0;;;31873:339;;;;;;;;;;-1:-1:-1;31873:339:0;;;;;:::i;:::-;;:::i;46376:158::-;;;;;;;;;;-1:-1:-1;46376:158:0;;;;;:::i;:::-;;:::i;44011:134::-;;;;;;;;;;;;;:::i;44406:149::-;;;;;;;;;;-1:-1:-1;44406:149:0;;;;;:::i;:::-;;:::i;44563:::-;;;;;;;;;;-1:-1:-1;44563:149:0;;;;;:::i;:::-;;:::i;32283:185::-;;;;;;;;;;-1:-1:-1;32283:185:0;;;;;:::i;:::-;;:::i;40981:27::-;;;;;;;;;;-1:-1:-1;40981:27:0;;;;-1:-1:-1;;;40981:27:0;;;;;;;;;22278:4:1;22266:17;;;22248:36;;22236:2;22221:18;40981:27:0;22203:87:1;43237:105:0;;;;;;;;;;-1:-1:-1;43237:105:0;;;;;:::i;:::-;;:::i;44720:346::-;;;;;;:::i;:::-;;:::i;41139:45::-;;;;;;;;;;-1:-1:-1;41139:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43519:140;;;;;;;;;;-1:-1:-1;43519:140:0;;;;;:::i;:::-;;:::i;41087:45::-;;;;;;;;;;-1:-1:-1;41087:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;46542:406;;;;;;:::i;:::-;;:::i;41317:33::-;;;;;;;;;;-1:-1:-1;41317:33:0;;;;;;;;29118:239;;;;;;;;;;-1:-1:-1;29118:239:0;;;;;:::i;:::-;;:::i;40719:34::-;;;;;;;;;;;;;;;;40830:30;;;;;;;;;;-1:-1:-1;40830:30:0;;;;;;;;41245:26;;;;;;;;;;;;;:::i;47440:425::-;;;;;;:::i;:::-;;:::i;28848:208::-;;;;;;;;;;-1:-1:-1;28848:208:0;;;;;:::i;:::-;;:::i;43350:161::-;;;;;;;;;;-1:-1:-1;43350:161:0;;;;;:::i;:::-;;:::i;14140:94::-;;;;;;;;;;;;;:::i;48138:180::-;;;;;;;;;;;;;:::i;13489:87::-;;;;;;;;;;-1:-1:-1;13535:7:0;13562:6;-1:-1:-1;;;;;13562:6:0;13489:87;;45525:154;;;;;;;;;;-1:-1:-1;45525:154:0;;;;;:::i;:::-;;:::i;43667:145::-;;;;;;;;;;-1:-1:-1;43667:145:0;;;;;:::i;:::-;;:::i;29593:104::-;;;;;;;;;;;;;:::i;40760:28::-;;;;;;;;;;;;;;;;41051:27;;;;;;;;;;-1:-1:-1;41051:27:0;;;;-1:-1:-1;;;41051:27:0;;;;;;31276:295;;;;;;;;;;-1:-1:-1;31276:295:0;;;;;:::i;:::-;;:::i;41015:27::-;;;;;;;;;;-1:-1:-1;41015:27:0;;;;-1:-1:-1;;;41015:27:0;;;;;;32539:328;;;;;;;;;;-1:-1:-1;32539:328:0;;;;;:::i;:::-;;:::i;46125:243::-;;;;;;;;;;-1:-1:-1;46125:243:0;;;;;:::i;:::-;;:::i;42901:328::-;;;;;;;;;;-1:-1:-1;42901:328:0;;;;;:::i;:::-;;:::i;44153:245::-;;;;;;;;;;-1:-1:-1;44153:245:0;;;;;:::i;:::-;;:::i;46956:232::-;;;;;;;;;;-1:-1:-1;46956:232:0;;;;;:::i;:::-;;:::i;47873:255::-;;;;;;;;;;;;;:::i;31642:164::-;;;;;;;;;;-1:-1:-1;31642:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31763:25:0;;;31739:4;31763:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31642:164;14389:192;;;;;;;;;;-1:-1:-1;14389:192:0;;;;;:::i;:::-;;:::i;41191:45::-;;;;;;;;;;-1:-1:-1;41191:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;40907:26;;;;;;;;;;-1:-1:-1;40907:26:0;;;;-1:-1:-1;;;;;40907:26:0;;;28479:305;28581:4;-1:-1:-1;;;;;;28618:40:0;;-1:-1:-1;;;28618:40:0;;:105;;-1:-1:-1;;;;;;;28675:48:0;;-1:-1:-1;;;28675:48:0;28618:105;:158;;;-1:-1:-1;;;;;;;;;;15608:40:0;;;28740:36;28598:178;28479:305;-1:-1:-1;;28479:305:0:o;29424:100::-;29478:13;29511:5;29504:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29424:100;:::o;30983:221::-;31059:7;34466:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34466:16:0;31079:73;;;;-1:-1:-1;;;31079:73:0;;15499:2:1;31079:73:0;;;15481:21:1;15538:2;15518:18;;;15511:30;15577:34;15557:18;;;15550:62;-1:-1:-1;;;15628:18:1;;;15621:42;15680:19;;31079:73:0;;;;;;;;;-1:-1:-1;31172:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31172:24:0;;30983:221::o;30506:411::-;30587:13;30603:23;30618:7;30603:14;:23::i;:::-;30587:39;;30651:5;-1:-1:-1;;;;;30645:11:0;:2;-1:-1:-1;;;;;30645:11:0;;;30637:57;;;;-1:-1:-1;;;30637:57:0;;17449:2:1;30637:57:0;;;17431:21:1;17488:2;17468:18;;;17461:30;17527:34;17507:18;;;17500:62;-1:-1:-1;;;17578:18:1;;;17571:31;17619:19;;30637:57:0;17421:223:1;30637:57:0;12445:10;-1:-1:-1;;;;;30729:21:0;;;;:62;;-1:-1:-1;30754:37:0;30771:5;12445:10;31642:164;:::i;30754:37::-;30707:168;;;;-1:-1:-1;;;30707:168:0;;13542:2:1;30707:168:0;;;13524:21:1;13581:2;13561:18;;;13554:30;13620:34;13600:18;;;13593:62;13691:26;13671:18;;;13664:54;13735:19;;30707:168:0;13514:246:1;30707:168:0;30888:21;30897:2;30901:7;30888:8;:21::i;:::-;30506:411;;;:::o;43820:183::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;43888:11:::1;:22:::0;;-1:-1:-1;;;;;;43888:22:0::1;-1:-1:-1::0;;;;;43888:22:0;::::1;;::::0;;43921:27:::1;43888:22:::0;43921:17:::1;:27::i;:::-;43964:31;::::0;-1:-1:-1;;;;;7853:32:1;;7835:51;;43964:31:0::1;::::0;7823:2:1;7808:18;43964:31:0::1;;;;;;;;43820:183:::0;:::o;47196:236::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;47284:1:::1;47273:8;:12;:39;;;;-1:-1:-1::0;47289:23:0::1;::::0;;;:13:::1;:23;::::0;;;;;::::1;;47273:39;47265:69;;;::::0;-1:-1:-1;;;47265:69:0;;18656:2:1;47265:69:0::1;::::0;::::1;18638:21:1::0;18695:2;18675:18;;;18668:30;-1:-1:-1;;;18714:18:1;;;18707:47;18771:18;;47265:69:0::1;18628:167:1::0;47265:69:0::1;47381:5;47355:23:::0;;;:13:::1;:23;::::0;;;;;;:31;;-1:-1:-1;;47355:31:0::1;::::0;;47402:22;::::1;::::0;::::1;::::0;47369:8;21522:25:1;;21510:2;21495:18;;21477:76;31873:339:0;32068:41;12445:10;32101:7;32068:18;:41::i;:::-;32060:103;;;;-1:-1:-1;;;32060:103:0;;;;;;;:::i;:::-;32176:28;32186:4;32192:2;32196:7;32176:9;:28::i;46376:158::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;46452:11:::1;:26:::0;;;46494:32:::1;::::0;21522:25:1;;;46494:32:0::1;::::0;21510:2:1;21495:18;46494:32:0::1;21477:76:1::0;44011:134:0;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;44083:10:::1;::::0;;::::1;::::0;;::::1;44082:11;-1:-1:-1::0;;44069:24:0;;::::1;::::0;::::1;::::0;;;44109:28:::1;::::0;44126:10;;8555:14:1;8548:22;8530:41;;44109:28:0::1;::::0;8518:2:1;8503:18;44109:28:0::1;;;;;;;44011:134::o:0;44406:149::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;44481:9:::1;:22:::0;;;44519:28:::1;::::0;21522:25:1;;;44519:28:0::1;::::0;21510:2:1;21495:18;44519:28:0::1;21477:76:1::0;44563:149:0;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;44638:9:::1;:22:::0;;;44676:28:::1;::::0;21522:25:1;;;44676:28:0::1;::::0;21510:2:1;21495:18;44676:28:0::1;21477:76:1::0;32283:185:0;32421:39;32438:4;32444:2;32448:7;32421:39;;;;;;;;;;;;:16;:39::i;43237:105::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;43312:9:::1;:22:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;43312:22:0::1;-1:-1:-1::0;;;;43312:22:0;;::::1;::::0;;;::::1;::::0;;43237:105::o;44720:346::-;44795:10;;;;44787:44;;;;-1:-1:-1;;;44787:44:0;;19420:2:1;44787:44:0;;;19402:21:1;19459:2;19439:18;;;19432:30;-1:-1:-1;;;19478:18:1;;;19471:51;19539:18;;44787:44:0;19392:171:1;44787:44:0;44869:9;;44850:15;:28;;44842:69;;;;-1:-1:-1;;;44842:69:0;;9008:2:1;44842:69:0;;;8990:21:1;9047:2;9027:18;;;9020:30;9086;9066:18;;;9059:58;9134:18;;44842:69:0;8980:178:1;44842:69:0;44943:9;;:30;;44957:15;44943:13;:30::i;:::-;44930:9;:43;;44922:97;;;;-1:-1:-1;;;44922:97:0;;11659:2:1;44922:97:0;;;11641:21:1;11698:2;11678:18;;;11671:30;11737:34;11717:18;;;11710:62;-1:-1:-1;;;11788:18:1;;;11781:39;11837:19;;44922:97:0;11631:231:1;44922:97:0;45032:26;45042:15;45032:9;:26::i;:::-;44720:346;:::o;43519:140::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;43593:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43627:24;43642:8;43627:24;;;;;;:::i;46542:406::-:0;46656:10;46635:17;46643:8;46635:7;:17::i;:::-;-1:-1:-1;;;;;46635:31:0;;46627:78;;;;-1:-1:-1;;;46627:78:0;;;;;;;:::i;:::-;46724:23;;;;:13;:23;;;;;;;;46716:57;;;;-1:-1:-1;;;46716:57:0;;17099:2:1;46716:57:0;;;17081:21:1;17138:2;17118:18;;;17111:30;-1:-1:-1;;;17157:18:1;;;17150:51;17218:18;;46716:57:0;17071:171:1;46716:57:0;46792:20;;;;:10;:20;;;;;;46816:9;-1:-1:-1;46792:33:0;46784:64;;;;-1:-1:-1;;;46784:64:0;;20822:2:1;46784:64:0;;;20804:21:1;20861:2;20841:18;;;20834:30;-1:-1:-1;;;20880:18:1;;;20873:48;20938:18;;46784:64:0;20794:168:1;46784:64:0;46861:20;;;;:10;:20;;;;;;;;;:31;;;46908:32;;22027:25:1;;;22068:18;;;22061:34;;;46908:32:0;;22000:18:1;46908:32:0;;;;;;;;46542:406;;:::o;29118:239::-;29190:7;29226:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29226:16:0;29261:19;29253:73;;;;-1:-1:-1;;;29253:73:0;;14378:2:1;29253:73:0;;;14360:21:1;14417:2;14397:18;;;14390:30;14456:34;14436:18;;;14429:62;-1:-1:-1;;;14507:18:1;;;14500:39;14556:19;;29253:73:0;14350:231:1;41245:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47440:425::-;47545:11;;47532:9;:24;47524:58;;;;-1:-1:-1;;;47524:58:0;;14788:2:1;47524:58:0;;;14770:21:1;14827:2;14807:18;;;14800:30;-1:-1:-1;;;14846:18:1;;;14839:51;14907:18;;47524:58:0;14760:171:1;47524:58:0;47601:13;;;;47593:45;;;;-1:-1:-1;;;47593:45:0;;19770:2:1;47593:45:0;;;19752:21:1;19809:2;19789:18;;;19782:30;-1:-1:-1;;;19828:18:1;;;19821:49;19887:18;;47593:45:0;19742:169:1;47593:45:0;47678:10;47657:17;47665:8;47657:7;:17::i;:::-;-1:-1:-1;;;;;47657:31:0;;47649:78;;;;-1:-1:-1;;;47649:78:0;;;;;;;:::i;:::-;47769:9;;47746:19;;-1:-1:-1;;;47769:9:0;;;;;-1:-1:-1;47746:32:0;47738:75;;;;-1:-1:-1;;;47738:75:0;;20463:2:1;47738:75:0;;;20445:21:1;20502:2;20482:18;;;20475:30;20541:32;20521:18;;;20514:60;20591:18;;47738:75:0;20435:180:1;47738:75:0;47829:28;47841:8;47851:5;47829:28;;;;;;;:::i;28848:208::-;28920:7;-1:-1:-1;;;;;28948:19:0;;28940:74;;;;-1:-1:-1;;;28940:74:0;;13967:2:1;28940:74:0;;;13949:21:1;14006:2;13986:18;;;13979:30;14045:34;14025:18;;;14018:62;-1:-1:-1;;;14096:18:1;;;14089:40;14146:19;;28940:74:0;13939:232:1;28940:74:0;-1:-1:-1;;;;;;29032:16:0;;;;;:9;:16;;;;;;;28848:208::o;43350:161::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;43423:13:::1;:30:::0;;-1:-1:-1;;43423:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43469:34:::1;::::0;8530:41:1;;;43469:34:0::1;::::0;8518:2:1;8503:18;43469:34:0::1;8485:92:1::0;14140:94:0;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;14205:21:::1;14223:1;14205:9;:21::i;:::-;14140:94::o:0;48138:180::-;48203:11;;-1:-1:-1;;;;;48203:11:0;48189:10;:25;;:54;;-1:-1:-1;48232:11:0;;-1:-1:-1;;;;;48232:11:0;48218:10;:25;48189:54;48181:107;;;;-1:-1:-1;;;48181:107:0;;21169:2:1;48181:107:0;;;21151:21:1;21208:2;21188:18;;;21181:30;21247:34;21227:18;;;21220:62;-1:-1:-1;;;21298:18:1;;;21291:38;21346:19;;48181:107:0;21141:230:1;48181:107:0;48299:11;:9;:11::i;45525:154::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;45601:26:::1;45611:15;45601:9;:26::i;:::-;45643:28;::::0;21522:25:1;;;45643:28:0::1;::::0;21510:2:1;21495:18;45643:28:0::1;21477:76:1::0;43667:145:0;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;43735:11:::1;:22:::0;;-1:-1:-1;;;;;;43735:22:0::1;-1:-1:-1::0;;;;;43735:22:0;::::1;::::0;;::::1;::::0;;;43773:31:::1;::::0;7835:51:1;;;43773:31:0::1;::::0;7823:2:1;7808:18;43773:31:0::1;7790:102:1::0;29593:104:0;29649:13;29682:7;29675:14;;;;;:::i;31276:295::-;-1:-1:-1;;;;;31379:24:0;;12445:10;31379:24;;31371:62;;;;-1:-1:-1;;;31371:62:0;;11305:2:1;31371:62:0;;;11287:21:1;11344:2;11324:18;;;11317:30;11383:27;11363:18;;;11356:55;11428:18;;31371:62:0;11277:175:1;31371:62:0;12445:10;31446:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31446:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31446:53:0;;;;;;;;;;31515:48;;8530:41:1;;;31446:42:0;;12445:10;31515:48;;8503:18:1;31515:48:0;;;;;;;31276:295;;:::o;32539:328::-;32714:41;12445:10;32747:7;32714:18;:41::i;:::-;32706:103;;;;-1:-1:-1;;;32706:103:0;;;;;;;:::i;:::-;32820:39;32834:4;32840:2;32844:7;32853:5;32820:13;:39::i;:::-;32539:328;;;;:::o;46125:243::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;46220:23:::1;::::0;;;:13:::1;:23;::::0;;;;;::::1;;46212:57;;;::::0;-1:-1:-1;;;46212:57:0;;17099:2:1;46212:57:0::1;::::0;::::1;17081:21:1::0;17138:2;17118:18;;;17111:30;-1:-1:-1;;;17157:18:1;;;17150:51;17218:18;;46212:57:0::1;17071:171:1::0;46212:57:0::1;46280:20;::::0;;;:10:::1;:20;::::0;;;;;;;;:29;;;46325:35;;22027:25:1;;;22068:18;;;22061:34;;;46325:35:0::1;::::0;22000:18:1;46325:35:0::1;21982:119:1::0;42901:328:0;34442:4;34466:16;;;:7;:16;;;;;;42966:13;;-1:-1:-1;;;;;34466:16:0;42992:76;;;;-1:-1:-1;;;42992:76:0;;16683:2:1;42992:76:0;;;16665:21:1;16722:2;16702:18;;;16695:30;16761:34;16741:18;;;16734:62;-1:-1:-1;;;16812:18:1;;;16805:45;16867:19;;42992:76:0;16655:237:1;42992:76:0;43112:1;43094:7;43088:21;;;;;:::i;:::-;;;:25;:133;;;;;;;;;;;;;;;;;43159:19;;;;:10;:19;;;;;;43150:7;;43159:30;;:28;:30::i;:::-;43196:18;:7;:16;:18::i;:::-;43133:82;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43081:140;42901:328;-1:-1:-1;;42901:328:0:o;44153:245::-;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;44256:11:::1;;44240:12;:27;;44232:73;;;::::0;-1:-1:-1;;;44232:73:0;;17851:2:1;44232:73:0::1;::::0;::::1;17833:21:1::0;17890:2;17870:18;;;17863:30;17929:34;17909:18;;;17902:62;-1:-1:-1;;;17980:18:1;;;17973:31;18021:19;;44232:73:0::1;17823:223:1::0;44232:73:0::1;44316:11;:26:::0;;;44358:32:::1;::::0;21522:25:1;;;44358:32:0::1;::::0;21510:2:1;21495:18;44358:32:0::1;21477:76:1::0;46956:232:0;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;47048:23:::1;::::0;;;:13:::1;:23;::::0;;;;;::::1;;47047:24;47022:71;;;::::0;-1:-1:-1;;;47022:71:0;;18656:2:1;47022:71:0::1;::::0;::::1;18638:21:1::0;18695:2;18675:18;;;18668:30;-1:-1:-1;;;18714:18:1;;;18707:47;18771:18;;47022:71:0::1;18628:167:1::0;47022:71:0::1;47114:23;::::0;;;:13:::1;:23;::::0;;;;;;:30;;-1:-1:-1;;47114:30:0::1;47140:4;47114:30;::::0;;47160:20;::::1;::::0;::::1;::::0;47128:8;21522:25:1;;21510:2;21495:18;;21477:76;47873:255:0;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;47964:1:::1;47940:21;:25;47932:65;;;::::0;-1:-1:-1;;;47932:65:0;;13186:2:1;47932:65:0::1;::::0;::::1;13168:21:1::0;13225:2;13205:18;;;13198:30;13264:29;13244:18;;;13237:57;13311:18;;47932:65:0::1;13158:177:1::0;47932:65:0::1;48009:12;13562:6:::0;;48027:46:::1;::::0;-1:-1:-1;;;;;13562:6:0;;;;48047:21:::1;::::0;48009:12;48027:46;48009:12;48027:46;48047:21;13562:6;48027:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48008:65;;;48092:7;48084:36;;;::::0;-1:-1:-1;;;48084:36:0;;20118:2:1;48084:36:0::1;::::0;::::1;20100:21:1::0;20157:2;20137:18;;;20130:30;-1:-1:-1;;;20176:18:1;;;20169:46;20232:18;;48084:36:0::1;20090:166:1::0;14389:192:0;13535:7;13562:6;-1:-1:-1;;;;;13562:6:0;12445:10;13709:23;13701:68;;;;-1:-1:-1;;;13701:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14478:22:0;::::1;14470:73;;;::::0;-1:-1:-1;;;14470:73:0;;9784:2:1;14470:73:0::1;::::0;::::1;9766:21:1::0;9823:2;9803:18;;;9796:30;9862:34;9842:18;;;9835:62;-1:-1:-1;;;9913:18:1;;;9906:36;9959:19;;14470:73:0::1;9756:228:1::0;14470:73:0::1;14554:19;14564:8;14554:9;:19::i;38359:174::-:0;38434:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38434:29:0;-1:-1:-1;;;;;38434:29:0;;;;;;;;:24;;38488:23;38434:24;38488:14;:23::i;:::-;-1:-1:-1;;;;;38479:46:0;;;;;;;;;;;38359:174;;:::o;34671:348::-;34764:4;34466:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34466:16:0;34781:73;;;;-1:-1:-1;;;34781:73:0;;12773:2:1;34781:73:0;;;12755:21:1;12812:2;12792:18;;;12785:30;12851:34;12831:18;;;12824:62;-1:-1:-1;;;12902:18:1;;;12895:42;12954:19;;34781:73:0;12745:234:1;34781:73:0;34865:13;34881:23;34896:7;34881:14;:23::i;:::-;34865:39;;34934:5;-1:-1:-1;;;;;34923:16:0;:7;-1:-1:-1;;;;;34923:16:0;;:51;;;;34967:7;-1:-1:-1;;;;;34943:31:0;:20;34955:7;34943:11;:20::i;:::-;-1:-1:-1;;;;;34943:31:0;;34923:51;:87;;;-1:-1:-1;;;;;;31763:25:0;;;31739:4;31763:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34978:32;34915:96;34671:348;-1:-1:-1;;;;34671:348:0:o;37663:578::-;37822:4;-1:-1:-1;;;;;37795:31:0;:23;37810:7;37795:14;:23::i;:::-;-1:-1:-1;;;;;37795:31:0;;37787:85;;;;-1:-1:-1;;;37787:85:0;;16273:2:1;37787:85:0;;;16255:21:1;16312:2;16292:18;;;16285:30;16351:34;16331:18;;;16324:62;-1:-1:-1;;;16402:18:1;;;16395:39;16451:19;;37787:85:0;16245:231:1;37787:85:0;-1:-1:-1;;;;;37891:16:0;;37883:65;;;;-1:-1:-1;;;37883:65:0;;10900:2:1;37883:65:0;;;10882:21:1;10939:2;10919:18;;;10912:30;10978:34;10958:18;;;10951:62;-1:-1:-1;;;11029:18:1;;;11022:34;11073:19;;37883:65:0;10872:226:1;37883:65:0;38065:29;38082:1;38086:7;38065:8;:29::i;:::-;-1:-1:-1;;;;;38107:15:0;;;;;;:9;:15;;;;;:20;;38126:1;;38107:15;:20;;38126:1;;38107:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38138:13:0;;;;;;:9;:13;;;;;:18;;38155:1;;38138:13;:18;;38155:1;;38138:18;:::i;:::-;;;;-1:-1:-1;;38167:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38167:21:0;-1:-1:-1;;;;;38167:21:0;;;;;;;;;38206:27;;38167:16;;38206:27;;;;;;;37663:578;;;:::o;8396:98::-;8454:7;8481:5;8485:1;8481;:5;:::i;:::-;8474:12;8396:98;-1:-1:-1;;;8396:98:0:o;45074:443::-;45179:11;;45143;;:32;;45159:15;45143;:32::i;:::-;:47;;45135:88;;;;-1:-1:-1;;;45135:88:0;;12416:2:1;45135:88:0;;;12398:21:1;12455:2;12435:18;;;12428:30;12494;12474:18;;;12467:58;12542:18;;45135:88:0;12388:178:1;45135:88:0;45252:11;;45236:13;45274:236;45294:15;45290:1;:19;45274:236;;;45331:10;45340:1;45331:10;;:::i;:::-;45370:11;;45331:10;;-1:-1:-1;45370:18:0;;45386:1;45370:15;:18::i;:::-;45356:11;:32;45405:28;45415:10;45427:5;45405:9;:28::i;:::-;45475:5;45463:10;45453:45;45482:15;45475:5;45482:8;:15::i;:::-;45453:45;;;;;;:::i;:::-;;;;;;;;45311:3;;;;:::i;:::-;;;;45274:236;;14589:173;14645:16;14664:6;;-1:-1:-1;;;;;14681:17:0;;;-1:-1:-1;;;;;;14681:17:0;;;;;;14714:40;;14664:6;;;;;;;14714:40;;14645:16;14714:40;14589:173;;:::o;45687:430::-;45760:1;45736:21;:25;45728:61;;;;-1:-1:-1;;;45728:61:0;;10191:2:1;45728:61:0;;;10173:21:1;10230:2;10210:18;;;10203:30;10269:25;10249:18;;;10242:53;10312:18;;45728:61:0;10163:173:1;45728:61:0;45876:11;;45912:9;;45818:21;;45800:15;;-1:-1:-1;;;;;45876:11:0;;;;45900:31;;45927:3;;45900:22;;45818:21;;-1:-1:-1;;;45912:9:0;;;;45900:11;:22::i;:::-;:26;;:31::i;:::-;45876:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45973:11:0;;45850:86;;-1:-1:-1;45948:19:0;;-1:-1:-1;;;;;45973:11:0;;;45997:31;;46024:3;;45997:22;;:7;;-1:-1:-1;;;46009:9:0;;;;45997:11;:22::i;:31::-;45973:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45947:86;;;46054:14;:32;;;;;46072:14;46054:32;46046:63;;;;-1:-1:-1;;;46046:63:0;;12069:2:1;46046:63:0;;;12051:21:1;12108:2;12088:18;;;12081:30;-1:-1:-1;;;12127:18:1;;;12120:48;12185:18;;46046:63:0;12041:168:1;33749:315:0;33906:28;33916:4;33922:2;33926:7;33906:9;:28::i;:::-;33953:48;33976:4;33982:2;33986:7;33995:5;33953:22;:48::i;:::-;33945:111;;;;-1:-1:-1;;;33945:111:0;;;;;;;:::i;15891:723::-;15947:13;16168:10;16164:53;;-1:-1:-1;;16195:10:0;;;;;;;;;;;;-1:-1:-1;;;16195:10:0;;;;;15891:723::o;16164:53::-;16242:5;16227:12;16283:78;16290:9;;16283:78;;16316:8;;;;:::i;:::-;;-1:-1:-1;16339:10:0;;-1:-1:-1;16347:2:0;16339:10;;:::i;:::-;;;16283:78;;;16371:19;16403:6;16393:17;;;;;;-1:-1:-1;;;16393:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16393:17:0;;16371:39;;16421:154;16428:10;;16421:154;;16455:11;16465:1;16455:11;;:::i;:::-;;-1:-1:-1;16524:10:0;16532:2;16524:5;:10;:::i;:::-;16511:24;;:2;:24;:::i;:::-;16498:39;;16481:6;16488;16481:14;;;;;;-1:-1:-1;;;16481:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16481:56:0;;;;;;;;-1:-1:-1;16552:11:0;16561:2;16552:11;;:::i;:::-;;;16421:154;;7658:98;7716:7;7743:5;7747:1;7743;:5;:::i;35361:110::-;35437:26;35447:2;35451:7;35437:26;;;;;;;;;;;;:9;:26::i;:::-;35361:110;;:::o;8795:98::-;8853:7;8880:5;8884:1;8880;:5;:::i;39098:799::-;39253:4;-1:-1:-1;;;;;39274:13:0;;18666:20;18714:8;39270:620;;39310:72;;-1:-1:-1;;;39310:72:0;;-1:-1:-1;;;;;39310:36:0;;;;;:72;;12445:10;;39361:4;;39367:7;;39376:5;;39310:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39310:72:0;;;;;;;;-1:-1:-1;;39310:72:0;;;;;;;;;;;;:::i;:::-;;;39306:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39552:13:0;;39548:272;;39595:60;;-1:-1:-1;;;39595:60:0;;;;;;;:::i;39548:272::-;39770:6;39764:13;39755:6;39751:2;39747:15;39740:38;39306:529;-1:-1:-1;;;;;;39433:51:0;-1:-1:-1;;;39433:51:0;;-1:-1:-1;39426:58:0;;39270:620;-1:-1:-1;39874:4:0;39098:799;;;;;;:::o;35698:321::-;35828:18;35834:2;35838:7;35828:5;:18::i;:::-;35879:54;35910:1;35914:2;35918:7;35927:5;35879:22;:54::i;:::-;35857:154;;;;-1:-1:-1;;;35857:154:0;;;;;;;:::i;36355:382::-;-1:-1:-1;;;;;36435:16:0;;36427:61;;;;-1:-1:-1;;;36427:61:0;;15138:2:1;36427:61:0;;;15120:21:1;;;15157:18;;;15150:30;15216:34;15196:18;;;15189:62;15268:18;;36427:61:0;15110:182:1;36427:61:0;34442:4;34466:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34466:16:0;:30;36499:58;;;;-1:-1:-1;;;36499:58:0;;10543:2:1;36499:58:0;;;10525:21:1;10582:2;10562:18;;;10555:30;10621;10601:18;;;10594:58;10669:18;;36499:58:0;10515:178:1;36499:58:0;-1:-1:-1;;;;;36628:13:0;;;;;;:9;:13;;;;;:18;;36645:1;;36628:13;:18;;36645:1;;36628:18;:::i;:::-;;;;-1:-1:-1;;36657:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36657:21:0;-1:-1:-1;;;;;36657:21:0;;;;;;;;36696:33;;36657:16;;;36696:33;;36657:16;;36696:33;36355:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:229;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:2;;1111:5;1104;1097:20;1056:2;1137:79;1212:3;1203:6;1190:20;1183:4;1175:6;1171:17;1137:79;:::i;1227:196::-;1286:6;1339:2;1327:9;1318:7;1314:23;1310:32;1307:2;;;1360:6;1352;1345:22;1307:2;1388:29;1407:9;1388:29;:::i;1428:270::-;1496:6;1504;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1606:29;1625:9;1606:29;:::i;:::-;1596:39;;1654:38;1688:2;1677:9;1673:18;1654:38;:::i;:::-;1644:48;;1515:183;;;;;:::o;1703:338::-;1780:6;1788;1796;1849:2;1837:9;1828:7;1824:23;1820:32;1817:2;;;1870:6;1862;1855:22;1817:2;1898:29;1917:9;1898:29;:::i;:::-;1888:39;;1946:38;1980:2;1969:9;1965:18;1946:38;:::i;:::-;1936:48;;2031:2;2020:9;2016:18;2003:32;1993:42;;1807:234;;;;;:::o;2046:696::-;2141:6;2149;2157;2165;2218:3;2206:9;2197:7;2193:23;2189:33;2186:2;;;2240:6;2232;2225:22;2186:2;2268:29;2287:9;2268:29;:::i;:::-;2258:39;;2316:38;2350:2;2339:9;2335:18;2316:38;:::i;:::-;2306:48;;2401:2;2390:9;2386:18;2373:32;2363:42;;2456:2;2445:9;2441:18;2428:32;2483:18;2475:6;2472:30;2469:2;;;2520:6;2512;2505:22;2469:2;2548:22;;2601:4;2593:13;;2589:27;-1:-1:-1;2579:2:1;;2635:6;2627;2620:22;2579:2;2663:73;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2663:73;:::i;:::-;2653:83;;;2176:566;;;;;;;:::o;2747:264::-;2812:6;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2894:6;2886;2879:22;2841:2;2922:29;2941:9;2922:29;:::i;:::-;2912:39;;2970:35;3001:2;2990:9;2986:18;2970:35;:::i;3016:264::-;3084:6;3092;3145:2;3133:9;3124:7;3120:23;3116:32;3113:2;;;3166:6;3158;3151:22;3113:2;3194:29;3213:9;3194:29;:::i;:::-;3184:39;3270:2;3255:18;;;;3242:32;;-1:-1:-1;;;3103:177:1:o;3285:190::-;3341:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:2;;;3415:6;3407;3400:22;3362:2;3443:26;3459:9;3443:26;:::i;3480:255::-;3538:6;3591:2;3579:9;3570:7;3566:23;3562:32;3559:2;;;3612:6;3604;3597:22;3559:2;3656:9;3643:23;3675:30;3699:5;3675:30;:::i;3740:259::-;3809:6;3862:2;3850:9;3841:7;3837:23;3833:32;3830:2;;;3883:6;3875;3868:22;3830:2;3920:9;3914:16;3939:30;3963:5;3939:30;:::i;4004:342::-;4073:6;4126:2;4114:9;4105:7;4101:23;4097:32;4094:2;;;4147:6;4139;4132:22;4094:2;4192:9;4179:23;4225:18;4217:6;4214:30;4211:2;;;4262:6;4254;4247:22;4211:2;4290:50;4332:7;4323:6;4312:9;4308:22;4290:50;:::i;4351:190::-;4410:6;4463:2;4451:9;4442:7;4438:23;4434:32;4431:2;;;4484:6;4476;4469:22;4431:2;-1:-1:-1;4512:23:1;;4421:120;-1:-1:-1;4421:120:1:o;4546:410::-;4624:6;4632;4685:2;4673:9;4664:7;4660:23;4656:32;4653:2;;;4706:6;4698;4691:22;4653:2;4747:9;4734:23;4724:33;;4808:2;4797:9;4793:18;4780:32;4835:18;4827:6;4824:30;4821:2;;;4872:6;4864;4857:22;4821:2;4900:50;4942:7;4933:6;4922:9;4918:22;4900:50;:::i;:::-;4890:60;;;4643:313;;;;;:::o;4961:258::-;5029:6;5037;5090:2;5078:9;5069:7;5065:23;5061:32;5058:2;;;5111:6;5103;5096:22;5058:2;-1:-1:-1;;5139:23:1;;;5209:2;5194:18;;;5181:32;;-1:-1:-1;5048:171:1:o;5224:289::-;5281:6;5334:2;5322:9;5313:7;5309:23;5305:32;5302:2;;;5355:6;5347;5340:22;5302:2;5399:9;5386:23;5449:4;5442:5;5438:16;5431:5;5428:27;5418:2;;5474:6;5466;5459:22;5518:257;5559:3;5597:5;5591:12;5624:6;5619:3;5612:19;5640:63;5696:6;5689:4;5684:3;5680:14;5673:4;5666:5;5662:16;5640:63;:::i;:::-;5757:2;5736:15;-1:-1:-1;;5732:29:1;5723:39;;;;5764:4;5719:50;;5567:208;-1:-1:-1;;5567:208:1:o;5780:185::-;5822:3;5860:5;5854:12;5875:52;5920:6;5915:3;5908:4;5901:5;5897:16;5875:52;:::i;:::-;5943:16;;;;;5830:135;-1:-1:-1;;5830:135:1:o;6089:1385::-;6414:3;6443;6478:6;6472:13;6508:3;6530:1;6558:9;6554:2;6550:18;6540:28;;6618:2;6607:9;6603:18;6640;6630:2;;6684:4;6676:6;6672:17;6662:27;;6630:2;6710;6758;6750:6;6747:14;6727:18;6724:38;6721:2;;;-1:-1:-1;;;6785:33:1;;6841:4;6838:1;6831:15;6871:4;6792:3;6859:17;6721:2;6902:18;6929:104;;;;7047:1;7042:322;;;;6895:469;;6929:104;-1:-1:-1;;6962:24:1;;6950:37;;7007:16;;;;-1:-1:-1;6929:104:1;;7042:322;22342:4;22361:17;;;22411:4;22395:21;;7137:3;7153:165;7167:6;7164:1;7161:13;7153:165;;;7245:14;;7232:11;;;7225:35;7288:16;;;;7182:10;;7153:165;;;7157:3;;7347:6;7342:3;7338:16;7331:23;;6895:469;;;;;;;7380:88;7406:61;7436:30;7462:3;7454:6;7436:30;:::i;:::-;-1:-1:-1;;;6035:16:1;;6076:1;6067:11;;6025:59;7406:61;7398:6;7380:88;:::i;:::-;7373:95;6422:1052;-1:-1:-1;;;;;;6422:1052:1:o;7897:488::-;-1:-1:-1;;;;;8166:15:1;;;8148:34;;8218:15;;8213:2;8198:18;;8191:43;8265:2;8250:18;;8243:34;;;8313:3;8308:2;8293:18;;8286:31;;;8091:4;;8334:45;;8359:19;;8351:6;8334:45;:::i;8582:219::-;8731:2;8720:9;8713:21;8694:4;8751:44;8791:2;8780:9;8776:18;8768:6;8751:44;:::i;9163:414::-;9365:2;9347:21;;;9404:2;9384:18;;;9377:30;9443:34;9438:2;9423:18;;9416:62;-1:-1:-1;;;9509:2:1;9494:18;;9487:48;9567:3;9552:19;;9337:240::o;15710:356::-;15912:2;15894:21;;;15931:18;;;15924:30;15990:34;15985:2;15970:18;;15963:62;16057:2;16042:18;;15884:182::o;18051:398::-;18253:2;18235:21;;;18292:2;18272:18;;;18265:30;18331:34;18326:2;18311:18;;18304:62;-1:-1:-1;;;18397:2:1;18382:18;;18375:32;18439:3;18424:19;;18225:224::o;18800:413::-;19002:2;18984:21;;;19041:2;19021:18;;;19014:30;19080:34;19075:2;19060:18;;19053:62;-1:-1:-1;;;19146:2:1;19131:18;;19124:47;19203:3;19188:19;;18974:239::o;21558:290::-;21735:6;21724:9;21717:25;21778:2;21773;21762:9;21758:18;21751:30;21698:4;21798:44;21838:2;21827:9;21823:18;21815:6;21798:44;:::i;22427:128::-;22467:3;22498:1;22494:6;22491:1;22488:13;22485:2;;;22504:18;;:::i;:::-;-1:-1:-1;22540:9:1;;22475:80::o;22560:120::-;22600:1;22626;22616:2;;22631:18;;:::i;:::-;-1:-1:-1;22665:9:1;;22606:74::o;22685:168::-;22725:7;22791:1;22787;22783:6;22779:14;22776:1;22773:21;22768:1;22761:9;22754:17;22750:45;22747:2;;;22798:18;;:::i;:::-;-1:-1:-1;22838:9:1;;22737:116::o;22858:125::-;22898:4;22926:1;22923;22920:8;22917:2;;;22931:18;;:::i;:::-;-1:-1:-1;22968:9:1;;22907:76::o;22988:258::-;23060:1;23070:113;23084:6;23081:1;23078:13;23070:113;;;23160:11;;;23154:18;23141:11;;;23134:39;23106:2;23099:10;23070:113;;;23201:6;23198:1;23195:13;23192:2;;;-1:-1:-1;;23236:1:1;23218:16;;23211:27;23041:205::o;23251:380::-;23330:1;23326:12;;;;23373;;;23394:2;;23448:4;23440:6;23436:17;23426:27;;23394:2;23501;23493:6;23490:14;23470:18;23467:38;23464:2;;;23547:10;23542:3;23538:20;23535:1;23528:31;23582:4;23579:1;23572:15;23610:4;23607:1;23600:15;23464:2;;23306:325;;;:::o;23636:135::-;23675:3;-1:-1:-1;;23696:17:1;;23693:2;;;23716:18;;:::i;:::-;-1:-1:-1;23763:1:1;23752:13;;23683:88::o;23776:112::-;23808:1;23834;23824:2;;23839:18;;:::i;:::-;-1:-1:-1;23873:9:1;;23814:74::o;23893:127::-;23954:10;23949:3;23945:20;23942:1;23935:31;23985:4;23982:1;23975:15;24009:4;24006:1;23999:15;24025:127;24086:10;24081:3;24077:20;24074:1;24067:31;24117:4;24114:1;24107:15;24141:4;24138:1;24131:15;24157:127;24218:10;24213:3;24209:20;24206:1;24199:31;24249:4;24246:1;24239:15;24273:4;24270:1;24263:15;24289:131;-1:-1:-1;;;;;;24363:32:1;;24353:43;;24343:2;;24410:1;24407;24400:12

Swarm Source

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