ETH Price: $3,236.11 (-0.57%)
Gas: 1 Gwei

Token

StreetPuppies (SP)
 

Overview

Max Total Supply

1,137 SP

Holders

202

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dwb07.eth
Balance
1 SP
0x6eb5cf159e74a6ed82ac274eb86a26de5d77609b
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:
StreetPuppies

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : StreetPuppies.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

/**
 * @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 ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev give an account access to this role
     */
    function add(Role storage role, address account) internal {
        require(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev check if an account has this role
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}

/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

/**
 * @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 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
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 {}
}

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// Accessing the Ownable method ensures that only the creator of this Smart contract can interact with it
contract StreetPuppies is ERC721Enumerable, Ownable {
    using Strings for uint256;
    
    uint256 public constant MAX_PURCHASE = 5;
    uint256 public enableGenesis;
    uint256 public enablePresales;
    uint256 public immutable maxSupply;
    uint256 public maxGSupply;
    string currentcontractURI = "https://metadata.streetdawgs.io/contract/puppies";
    uint256 public genesisPrice = 0.05 ether;
    uint256 public presalePrice = 0;
    uint256 public ddPrice = 0;
    mapping (address => uint) public presaleAddress;
    address public winner;
    string  private _baseTokenURI;

    event Mint(
        address indexed to, 
        uint256 indexed id);

    constructor(
        uint256 allowPresales, 
        uint256 allowGenesis, 
        uint256 maxPuppies,
        uint256 maxGenesisSupply
        ) 
        ERC721("StreetPuppies", "SP") {
        enablePresales = allowPresales;
        enableGenesis = allowGenesis;
        maxSupply = maxPuppies;
        maxGSupply = maxGenesisSupply;
    }
    
    function createPuppies(uint amount) external payable returns (bool) {
        require(enableGenesis == 1, "CP: Sale not started");
        require(amount > 0, "CP: value > zero required");
        require(amount <= MAX_PURCHASE, "CP: value must not be larger than allowed");
        require(totalSupply() + amount <= maxGSupply, "CP: creation must not exceed maximum supply");
        require(genesisPrice * amount == msg.value, "CP: value must match accumulated price");
        
        uint256 tokensGenerated = 0;
        for (uint256 i = 0; i < amount; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < maxGSupply) {
                _safeMint(_msgSender(), mintIndex);
                emit Mint(_msgSender(), mintIndex);
                tokensGenerated++;
            }
        }
        if(tokensGenerated < amount) {
            // amount to refund
            uint256 excess = amount - tokensGenerated;
            uint256 returnAmount = genesisPrice * excess;
            payable(_msgSender()).transfer(returnAmount);
        }
        return true;
    }
    
    /*
    * Send free token to an array of addresses when ever want to as owner of the contract
    */
    function airDropPuppies(address[] calldata addresses) external onlyOwner returns (bool) {
        // uint count = addresses.length();
        uint arrayLength = addresses.length;
        uint256 mintIndex = totalSupply();
        for (uint i=0; i<arrayLength; i++) {
            if (totalSupply() < maxSupply) {
                _safeMint(addresses[i], mintIndex);
                emit Mint(addresses[i], mintIndex);
                mintIndex = totalSupply();
            }
        }
        return true;
    }
    
    function createPPuppies() external payable returns (bool) {
        require(enablePresales == 1, "CPP: Sale not started");
        require(presalePrice  == msg.value, "CPP: value must match price");
        require(presaleAddress[_msgSender()] > 0, "CPP: Not Authorised to buy");
        require(totalSupply() <= maxSupply, "CPP: creation must not exceed maximum supply");
        uint256 mintIndex = totalSupply();
        if (totalSupply() < maxGSupply) {
            _safeMint(_msgSender(), mintIndex);
            presaleAddress[_msgSender()] -= 1;
            emit Mint(_msgSender(), mintIndex);
        }
        return true;
    }
    
    function createDDPuppies() external payable returns (bool) {
        require(totalSupply() < maxSupply, "CDDP: creation must not exceed maximum supply");
        require((ddPrice == msg.value), "CDDP: value must match the daily drop price");
        require(winner == _msgSender(), "CDDP: buyer address should be DD winner");

        uint256 mintIndex = totalSupply();
        _safeMint(_msgSender(), mintIndex);
        emit Mint(_msgSender(), mintIndex);
        
        delete winner;
        return true;
    }
    
    function registerForPreSale(address[] calldata addresses) external onlyOwner returns (bool){
        uint arrayLength = addresses.length;
        for (uint i=0; i<arrayLength; i++) {
            presaleAddress[addresses[i]] += 1; 
        }
        return true;
    }
    
    function withdrawFunds(uint256 withdrawAmount) external onlyOwner returns (bool) {
        uint256 balance = address(this).balance;
        require(balance > 0, "withdrawFunds: must have funds to withdraw");
        require(withdrawAmount <= balance, "Can not withdraw more than available");
        payable(msg.sender).transfer(withdrawAmount);
        return true;
    }
    
    function transferFund(uint256 transferAmount, address transferTo) external onlyOwner returns (bool){
        uint256 amount = address(this).balance;
        require(transferAmount <= amount, "Can not withdraw more than available");
        (bool success,) = transferTo.call{value: transferAmount}("");
        require(success, "Failed to send ether");
        return true;
    }

    function setBaseURI(string memory baseURI) external onlyOwner returns (bool) {
        _baseTokenURI = baseURI;
        return true;
    }
    
    function updateContractURI(string memory newContractURI) external onlyOwner returns (bool){
        currentcontractURI = newContractURI;
        return true;
    }
    
    function setDDWinnerAndPrice(address addr, uint256 amount) external onlyOwner returns (bool) {
        require(addr != address(0), "setWinnerAndPrice: winner must not be the zero address");
        _setDDWinner(addr);
        _setDDPrice(amount);
        return true;
    }
    
    function updatePreSaleList(address preAdd, uint allowedCount) external onlyOwner returns (bool){
        presaleAddress[preAdd] = allowedCount;
        return true;
    }
    
    function setGPrice(uint256 amount) external onlyOwner returns (bool) {
        genesisPrice = amount;
        return true;
    }
    
    function setPPrice(uint256 amount) external onlyOwner returns (bool) {
        presalePrice = amount;
        return true;
    }

    function _setDDWinner(address addr) private {
        winner = addr;
    }

    function _setDDPrice(uint256 amount) private {
        ddPrice = amount;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }
    
    function contractURI() public view returns (string memory) {
        return currentcontractURI;
    }
    
    function updateGenesis(uint status) external onlyOwner returns (bool) {
        enableGenesis = status;
        return true;
    }
    
    function updatePresales(uint status) external onlyOwner returns (bool) {
        enablePresales = status;
        return true;
    }
    
    function updateMaxGenesisCount(uint256 cnt) external onlyOwner returns (bool) {
        maxGSupply = cnt;
        return true;
    }

}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"allowPresales","type":"uint256"},{"internalType":"uint256","name":"allowGenesis","type":"uint256"},{"internalType":"uint256","name":"maxPuppies","type":"uint256"},{"internalType":"uint256","name":"maxGenesisSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airDropPuppies","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createDDPuppies","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"createPPuppies","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createPuppies","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ddPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePresales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxGSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"","type":"address"}],"name":"presaleAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"registerForPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setDDWinnerAndPrice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setGPrice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPPrice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"transferAmount","type":"uint256"},{"internalType":"address","name":"transferTo","type":"address"}],"name":"transferFund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"updateContractURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"updateGenesis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cnt","type":"uint256"}],"name":"updateMaxGenesisCount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"preAdd","type":"address"},{"internalType":"uint256","name":"allowedCount","type":"uint256"}],"name":"updatePreSaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"updatePresales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"winner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdrawFunds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a060405260405180606001604052806030815260200162005d0660309139600e908051906020019062000035929190620001fe565b5066b1a2bc2ec50000600f55600060105560006011553480156200005857600080fd5b5060405162005d3638038062005d3683398181016040528101906200007e9190620002c5565b6040518060400160405280600d81526020017f53747265657450757070696573000000000000000000000000000000000000008152506040518060400160405280600281526020017f5350000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000102929190620001fe565b5080600190805190602001906200011b929190620001fe565b505050600062000130620001f660201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35083600c8190555082600b81905550816080818152505080600d8190555050505050620003ba565b600033905090565b8280546200020c906200033b565b90600052602060002090601f0160209004810192826200023057600085556200027c565b82601f106200024b57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027b5782518255916020019190600101906200025e565b5b5090506200028b91906200028f565b5090565b5b80821115620002aa57600081600090555060010162000290565b5090565b600081519050620002bf81620003a0565b92915050565b60008060008060808587031215620002dc57600080fd5b6000620002ec87828801620002ae565b9450506020620002ff87828801620002ae565b93505060406200031287828801620002ae565b92505060606200032587828801620002ae565b91505092959194509250565b6000819050919050565b600060028204905060018216806200035457607f821691505b602082108114156200036b576200036a62000371565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620003ab8162000331565b8114620003b757600080fd5b50565b60805161591b620003eb60003960008181611cfb01528181611f650152818161246101526126b4015261591b6000f3fe60806040526004361061027c5760003560e01c8063749bfcbc1161014f578063b74c02e5116100c1578063e8a3d4851161007a578063e8a3d48514610a4a578063e985e9c514610a75578063f059443e14610ab2578063f2fde38b14610aef578063f3fc159a14610b18578063f6ad5bd014610b555761027c565b8063b74c02e514610933578063b88d4fde14610951578063c87b56dd1461097a578063d5abeb01146109b7578063da5783bb146109e2578063dfbf53ae14610a1f5761027c565b8063941d827a11610113578063941d827a1461081c57806395d89b411461085957806398c173a0146108845780639ba5540b146108af578063a22cb465146108cd578063ac038b61146108f65761027c565b8063749bfcbc1461070f5780637e5b1e241461074c5780638c183596146107895780638da5cb5b146107b4578063915c70ef146107df5761027c565b806323b872dd116101f357806356447bea116101ac57806356447bea146105eb5780636352211e1461062857806370a08231146106655780637146bd08146106a2578063715018a6146106cd578063728cce7c146106e45761027c565b806323b872dd146104b25780632647b7da146104db5780632f745c591461050b57806342842e0e146105485780634f6ccce71461057157806355f804b3146105ae5761027c565b8063095ea7b311610245578063095ea7b31461037c5780630af5156c146103a557806313b9d888146103e2578063155dd5ee1461040d57806318160ddd1461044a5780631cc61d6d146104755761027c565b80620e7fa81461028157806301ffc9a7146102ac57806305ef452d146102e957806306fdde0314610314578063081812fc1461033f575b600080fd5b34801561028d57600080fd5b50610296610b92565b6040516102a3919061544b565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce919061413c565b610b98565b6040516102e09190614fce565b60405180910390f35b3480156102f557600080fd5b506102fe610c12565b60405161030b919061544b565b60405180910390f35b34801561032057600080fd5b50610329610c18565b6040516103369190614fe9565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906141cf565b610caa565b6040516103739190614f67565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e91906140bb565b610d2f565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906141cf565b610e47565b6040516103d99190614fce565b60405180910390f35b3480156103ee57600080fd5b506103f7610ed5565b604051610404919061544b565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f91906141cf565b610edb565b6040516104419190614fce565b60405180910390f35b34801561045657600080fd5b5061045f611035565b60405161046c919061544b565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906140bb565b611042565b6040516104a99190614fce565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190613fb5565b61110e565b005b6104f560048036038101906104f091906141cf565b61116e565b6040516105029190614fce565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906140bb565b611410565b60405161053f919061544b565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190613fb5565b6114b5565b005b34801561057d57600080fd5b50610598600480360381019061059391906141cf565b6114d5565b6040516105a5919061544b565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d0919061418e565b61156c565b6040516105e29190614fce565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906140f7565b61160a565b60405161061f9190614fce565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906141cf565b61175e565b60405161065c9190614f67565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613f50565b611810565b604051610699919061544b565b60405180910390f35b3480156106ae57600080fd5b506106b76118c8565b6040516106c4919061544b565b60405180910390f35b3480156106d957600080fd5b506106e26118cd565b005b3480156106f057600080fd5b506106f9611a0a565b604051610706919061544b565b60405180910390f35b34801561071b57600080fd5b50610736600480360381019061073191906141f8565b611a10565b6040516107439190614fce565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061418e565b611b8e565b6040516107809190614fce565b60405180910390f35b34801561079557600080fd5b5061079e611c2c565b6040516107ab919061544b565b60405180910390f35b3480156107c057600080fd5b506107c9611c32565b6040516107d69190614f67565b60405180910390f35b3480156107eb57600080fd5b50610806600480360381019061080191906140f7565b611c5c565b6040516108139190614fce565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906141cf565b611e3b565b6040516108509190614fce565b60405180910390f35b34801561086557600080fd5b5061086e611ec9565b60405161087b9190614fe9565b60405180910390f35b34801561089057600080fd5b50610899611f5b565b6040516108a6919061544b565b60405180910390f35b6108b7611f61565b6040516108c49190614fce565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef919061407f565b61213c565b005b34801561090257600080fd5b5061091d600480360381019061091891906141cf565b6122bd565b60405161092a9190614fce565b60405180910390f35b61093b61234b565b6040516109489190614fce565b60405180910390f35b34801561095d57600080fd5b5061097860048036038101906109739190614004565b6125a9565b005b34801561098657600080fd5b506109a1600480360381019061099c91906141cf565b61260b565b6040516109ae9190614fe9565b60405180910390f35b3480156109c357600080fd5b506109cc6126b2565b6040516109d9919061544b565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a0491906140bb565b6126d6565b604051610a169190614fce565b60405180910390f35b348015610a2b57600080fd5b50610a346127e0565b604051610a419190614f67565b60405180910390f35b348015610a5657600080fd5b50610a5f612806565b604051610a6c9190614fe9565b60405180910390f35b348015610a8157600080fd5b50610a9c6004803603810190610a979190613f79565b612898565b604051610aa99190614fce565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad491906141cf565b61292c565b604051610ae69190614fce565b60405180910390f35b348015610afb57600080fd5b50610b166004803603810190610b119190613f50565b6129ba565b005b348015610b2457600080fd5b50610b3f6004803603810190610b3a9190613f50565b612b66565b604051610b4c919061544b565b60405180910390f35b348015610b6157600080fd5b50610b7c6004803603810190610b7791906141cf565b612b7e565b604051610b899190614fce565b60405180910390f35b60105481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c0b5750610c0a82612c0c565b5b9050919050565b60115481565b606060008054610c2790615710565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5390615710565b8015610ca05780601f10610c7557610100808354040283529160200191610ca0565b820191906000526020600020905b815481529060010190602001808311610c8357829003601f168201915b5050505050905090565b6000610cb582612cee565b610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb9061520b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3a8261175e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da29061532b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dca612d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610df95750610df881610df3612d5a565b612898565b5b610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f9061516b565b60405180910390fd5b610e428383612d62565b505050565b6000610e51612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610e6f611c32565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc9061524b565b60405180910390fd5b81600c8190555060019050919050565b600d5481565b6000610ee5612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610f03611c32565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f509061524b565b60405180910390fd5b600047905060008111610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f98906153eb565b60405180910390fd5b80831115610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb906151cb565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505015801561102a573d6000803e3d6000fd5b506001915050919050565b6000600880549050905090565b600061104c612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661106a611c32565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b79061524b565b60405180910390fd5b81601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b61111f611119612d5a565b82612e1b565b61115e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111559061536b565b60405180910390fd5b611169838383612ef9565b505050565b60006001600b54146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061540b565b60405180910390fd5b600082116111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef9061522b565b60405180910390fd5b600582111561123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906152eb565b60405180910390fd5b600d5482611248611035565b6112529190615545565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061534b565b60405180910390fd5b3482600f546112a291906155cc565b146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d99061510b565b60405180910390fd5b6000805b8381101561138a5760006112f8611035565b9050600d54611305611035565b10156113765761131c611316612d5a565b82613155565b80611325612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3828061137290615742565b9350505b50808061138290615742565b9150506112e6565b508281101561140657600081846113a19190615626565b9050600081600f546113b391906155cc565b90506113bd612d5a565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611402573d6000803e3d6000fd5b5050505b6001915050919050565b600061141b83611810565b821061145c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114539061502b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6114d0838383604051806020016040528060008152506125a9565b505050565b60006114df611035565b8210611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115179061538b565b60405180910390fd5b6008828154811061155a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000611576612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611594611c32565b73ffffffffffffffffffffffffffffffffffffffff16146115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e19061524b565b60405180910390fd5b8160149080519060200190611600929190613d2a565b5060019050919050565b6000611614612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611632611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f9061524b565b60405180910390fd5b600083839050905060005b81811015611752576001601260008787858181106116da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116ef9190613f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117389190615545565b92505081905550808061174a90615742565b915050611693565b50600191505092915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906151ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118789061518b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600581565b6118d5612d5a565b73ffffffffffffffffffffffffffffffffffffffff166118f3611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061524b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6000611a1a612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611a38611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a859061524b565b60405180910390fd5b600047905080841115611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd906151cb565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1685604051611afc90614f52565b60006040518083038185875af1925050503d8060008114611b39576040519150601f19603f3d011682016040523d82523d6000602084013e611b3e565b606091505b5050905080611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b799061526b565b60405180910390fd5b60019250505092915050565b6000611b98612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611bb6611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c039061524b565b60405180910390fd5b81600e9080519060200190611c22929190613d2a565b5060019050919050565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611c66612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611c84611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd19061524b565b60405180910390fd5b60008383905090506000611cec611035565b905060005b82811015611e2e577f0000000000000000000000000000000000000000000000000000000000000000611d22611035565b1015611e1b57611d7f868683818110611d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d799190613f50565b83613155565b81868683818110611db9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dce9190613f50565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3611e18611035565b91505b8080611e2690615742565b915050611cf1565b5060019250505092915050565b6000611e45612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611e63611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb09061524b565b60405180910390fd5b81600f8190555060019050919050565b606060018054611ed890615710565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0490615710565b8015611f515780601f10611f2657610100808354040283529160200191611f51565b820191906000526020600020905b815481529060010190602001808311611f3457829003601f168201915b5050505050905090565b600c5481565b60007f0000000000000000000000000000000000000000000000000000000000000000611f8c611035565b10611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc3906153ab565b60405180910390fd5b3460115414612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906153cb565b60405180910390fd5b612018612d5a565b73ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e9061506b565b60405180910390fd5b60006120b1611035565b90506120c46120be612d5a565b82613155565b806120cd612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3601360006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600191505090565b612144612d5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906150eb565b60405180910390fd5b80600560006121bf612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661226c612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122b19190614fce565b60405180910390a35050565b60006122c7612d5a565b73ffffffffffffffffffffffffffffffffffffffff166122e5611c32565b73ffffffffffffffffffffffffffffffffffffffff161461233b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123329061524b565b60405180910390fd5b81600b8190555060019050919050565b60006001600c5414612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906152cb565b60405180910390fd5b34601054146123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd9061530b565b60405180910390fd5b6000601260006123e4612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161245f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124569061542b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000612488611035565b11156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c09061500b565b60405180910390fd5b60006124d3611035565b9050600d546124e0611035565b10156125a1576124f76124f1612d5a565b82613155565b600160126000612505612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254e9190615626565b925050819055508061255e612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a35b600191505090565b6125ba6125b4612d5a565b83612e1b565b6125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f09061536b565b60405180910390fd5b61260584848484613173565b50505050565b606061261682612cee565b612655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264c906152ab565b60405180910390fd5b600061265f6131cf565b9050600081511161267f57604051806020016040528060008152506126aa565b8061268984613261565b60405160200161269a929190614f2e565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006126e0612d5a565b73ffffffffffffffffffffffffffffffffffffffff166126fe611c32565b73ffffffffffffffffffffffffffffffffffffffff1614612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b9061524b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb9061512b565b60405180910390fd5b6127cd8361340e565b6127d682613452565b6001905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600e805461281590615710565b80601f016020809104026020016040519081016040528092919081815260200182805461284190615710565b801561288e5780601f106128635761010080835404028352916020019161288e565b820191906000526020600020905b81548152906001019060200180831161287157829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612936612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612954611c32565b73ffffffffffffffffffffffffffffffffffffffff16146129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a19061524b565b60405180910390fd5b8160108190555060019050919050565b6129c2612d5a565b73ffffffffffffffffffffffffffffffffffffffff166129e0611c32565b73ffffffffffffffffffffffffffffffffffffffff1614612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d9061524b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d9061508b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60126020528060005260406000206000915090505481565b6000612b88612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612ba6611c32565b73ffffffffffffffffffffffffffffffffffffffff1614612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf39061524b565b60405180910390fd5b81600d8190555060019050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cd757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ce75750612ce68261345c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612dd58361175e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e2682612cee565b612e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5c9061514b565b60405180910390fd5b6000612e708361175e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612edf57508373ffffffffffffffffffffffffffffffffffffffff16612ec784610caa565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ef05750612eef8185612898565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f198261175e565b73ffffffffffffffffffffffffffffffffffffffff1614612f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f669061528b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd6906150cb565b60405180910390fd5b612fea8383836134c6565b612ff5600082612d62565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130459190615626565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309c9190615545565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61316f8282604051806020016040528060008152506135da565b5050565b61317e848484612ef9565b61318a84848484613635565b6131c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c09061504b565b60405180910390fd5b50505050565b6060601480546131de90615710565b80601f016020809104026020016040519081016040528092919081815260200182805461320a90615710565b80156132575780601f1061322c57610100808354040283529160200191613257565b820191906000526020600020905b81548152906001019060200180831161323a57829003601f168201915b5050505050905090565b606060008214156132a9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613409565b600082905060005b600082146132db5780806132c490615742565b915050600a826132d4919061559b565b91506132b1565b60008167ffffffffffffffff81111561331d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561334f5781602001600182028036833780820191505090505b5090505b60008514613402576001826133689190615626565b9150600a85613377919061578b565b60306133839190615545565b60f81b8183815181106133bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133fb919061559b565b9450613353565b8093505050505b919050565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8060118190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134d18383836137cc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135145761350f816137d1565b613553565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461355257613551838261381a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135965761359181613987565b6135d5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135d4576135d38282613aca565b5b5b505050565b6135e48383613b49565b6135f16000848484613635565b613630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136279061504b565b60405180910390fd5b505050565b60006136568473ffffffffffffffffffffffffffffffffffffffff16613d17565b156137bf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261367f612d5a565b8786866040518563ffffffff1660e01b81526004016136a19493929190614f82565b602060405180830381600087803b1580156136bb57600080fd5b505af19250505080156136ec57506040513d601f19601f820116820180604052508101906136e99190614165565b60015b61376f573d806000811461371c576040519150601f19603f3d011682016040523d82523d6000602084013e613721565b606091505b50600081511415613767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375e9061504b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137c4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161382784611810565b6138319190615626565b9050600060076000848152602001908152602001600020549050818114613916576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061399b9190615626565b90506000600960008481526020019081526020016000205490506000600883815481106139f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613aae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ad583611810565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb0906151eb565b60405180910390fd5b613bc281612cee565b15613c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf9906150ab565b60405180910390fd5b613c0e600083836134c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c5e9190615545565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613d3690615710565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613db0565b5090565b5b80821115613dc9576000816000905550600101613db1565b5090565b6000613de0613ddb84615497565b615466565b905082815260208101848484011115613df857600080fd5b613e038482856156ce565b509392505050565b6000613e1e613e19846154c7565b615466565b905082815260208101848484011115613e3657600080fd5b613e418482856156ce565b509392505050565b600081359050613e5881615889565b92915050565b60008083601f840112613e7057600080fd5b8235905067ffffffffffffffff811115613e8957600080fd5b602083019150836020820283011115613ea157600080fd5b9250929050565b600081359050613eb7816158a0565b92915050565b600081359050613ecc816158b7565b92915050565b600081519050613ee1816158b7565b92915050565b600082601f830112613ef857600080fd5b8135613f08848260208601613dcd565b91505092915050565b600082601f830112613f2257600080fd5b8135613f32848260208601613e0b565b91505092915050565b600081359050613f4a816158ce565b92915050565b600060208284031215613f6257600080fd5b6000613f7084828501613e49565b91505092915050565b60008060408385031215613f8c57600080fd5b6000613f9a85828601613e49565b9250506020613fab85828601613e49565b9150509250929050565b600080600060608486031215613fca57600080fd5b6000613fd886828701613e49565b9350506020613fe986828701613e49565b9250506040613ffa86828701613f3b565b9150509250925092565b6000806000806080858703121561401a57600080fd5b600061402887828801613e49565b945050602061403987828801613e49565b935050604061404a87828801613f3b565b925050606085013567ffffffffffffffff81111561406757600080fd5b61407387828801613ee7565b91505092959194509250565b6000806040838503121561409257600080fd5b60006140a085828601613e49565b92505060206140b185828601613ea8565b9150509250929050565b600080604083850312156140ce57600080fd5b60006140dc85828601613e49565b92505060206140ed85828601613f3b565b9150509250929050565b6000806020838503121561410a57600080fd5b600083013567ffffffffffffffff81111561412457600080fd5b61413085828601613e5e565b92509250509250929050565b60006020828403121561414e57600080fd5b600061415c84828501613ebd565b91505092915050565b60006020828403121561417757600080fd5b600061418584828501613ed2565b91505092915050565b6000602082840312156141a057600080fd5b600082013567ffffffffffffffff8111156141ba57600080fd5b6141c684828501613f11565b91505092915050565b6000602082840312156141e157600080fd5b60006141ef84828501613f3b565b91505092915050565b6000806040838503121561420b57600080fd5b600061421985828601613f3b565b925050602061422a85828601613e49565b9150509250929050565b61423d8161565a565b82525050565b61424c8161566c565b82525050565b600061425d826154f7565b614267818561550d565b93506142778185602086016156dd565b61428081615878565b840191505092915050565b600061429682615502565b6142a08185615529565b93506142b08185602086016156dd565b6142b981615878565b840191505092915050565b60006142cf82615502565b6142d9818561553a565b93506142e98185602086016156dd565b80840191505092915050565b6000614302602c83615529565b91507f4350503a206372656174696f6e206d757374206e6f7420657863656564206d6160008301527f78696d756d20737570706c7900000000000000000000000000000000000000006020830152604082019050919050565b6000614368602b83615529565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006143ce603283615529565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614434602783615529565b91507f434444503a20627579657220616464726573732073686f756c6420626520444460008301527f2077696e6e6572000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061449a602683615529565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614500601c83615529565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614540602483615529565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a6601983615529565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006145e6602683615529565b91507f43503a2076616c7565206d757374206d6174636820616363756d756c6174656460008301527f20707269636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061464c603683615529565b91507f73657457696e6e6572416e6450726963653a2077696e6e6572206d757374206e60008301527f6f7420626520746865207a65726f2061646472657373000000000000000000006020830152604082019050919050565b60006146b2602c83615529565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614718603883615529565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061477e602a83615529565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e4602983615529565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061484a602483615529565b91507f43616e206e6f74207769746864726177206d6f7265207468616e20617661696c60008301527f61626c65000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b0602083615529565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006148f0602c83615529565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614956601983615529565b91507f43503a2076616c7565203e207a65726f207265717569726564000000000000006000830152602082019050919050565b6000614996602083615529565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149d6601483615529565b91507f4661696c656420746f2073656e642065746865720000000000000000000000006000830152602082019050919050565b6000614a16602983615529565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a7c602f83615529565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ae2601583615529565b91507f4350503a2053616c65206e6f74207374617274656400000000000000000000006000830152602082019050919050565b6000614b22602983615529565b91507f43503a2076616c7565206d757374206e6f74206265206c61726765722074686160008301527f6e20616c6c6f77656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b88601b83615529565b91507f4350503a2076616c7565206d757374206d6174636820707269636500000000006000830152602082019050919050565b6000614bc8602183615529565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2e602b83615529565b91507f43503a206372656174696f6e206d757374206e6f7420657863656564206d617860008301527f696d756d20737570706c790000000000000000000000000000000000000000006020830152604082019050919050565b6000614c9460008361551e565b9150600082019050919050565b6000614cae603183615529565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614d14602c83615529565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614d7a602d83615529565b91507f434444503a206372656174696f6e206d757374206e6f7420657863656564206d60008301527f6178696d756d20737570706c79000000000000000000000000000000000000006020830152604082019050919050565b6000614de0602b83615529565b91507f434444503a2076616c7565206d757374206d6174636820746865206461696c7960008301527f2064726f702070726963650000000000000000000000000000000000000000006020830152604082019050919050565b6000614e46602a83615529565b91507f776974686472617746756e64733a206d75737420686176652066756e6473207460008301527f6f207769746864726177000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eac601483615529565b91507f43503a2053616c65206e6f7420737461727465640000000000000000000000006000830152602082019050919050565b6000614eec601a83615529565b91507f4350503a204e6f7420417574686f726973656420746f206275790000000000006000830152602082019050919050565b614f28816156c4565b82525050565b6000614f3a82856142c4565b9150614f4682846142c4565b91508190509392505050565b6000614f5d82614c87565b9150819050919050565b6000602082019050614f7c6000830184614234565b92915050565b6000608082019050614f976000830187614234565b614fa46020830186614234565b614fb16040830185614f1f565b8181036060830152614fc38184614252565b905095945050505050565b6000602082019050614fe36000830184614243565b92915050565b60006020820190508181036000830152615003818461428b565b905092915050565b60006020820190508181036000830152615024816142f5565b9050919050565b600060208201905081810360008301526150448161435b565b9050919050565b60006020820190508181036000830152615064816143c1565b9050919050565b6000602082019050818103600083015261508481614427565b9050919050565b600060208201905081810360008301526150a48161448d565b9050919050565b600060208201905081810360008301526150c4816144f3565b9050919050565b600060208201905081810360008301526150e481614533565b9050919050565b6000602082019050818103600083015261510481614599565b9050919050565b60006020820190508181036000830152615124816145d9565b9050919050565b600060208201905081810360008301526151448161463f565b9050919050565b60006020820190508181036000830152615164816146a5565b9050919050565b600060208201905081810360008301526151848161470b565b9050919050565b600060208201905081810360008301526151a481614771565b9050919050565b600060208201905081810360008301526151c4816147d7565b9050919050565b600060208201905081810360008301526151e48161483d565b9050919050565b60006020820190508181036000830152615204816148a3565b9050919050565b60006020820190508181036000830152615224816148e3565b9050919050565b6000602082019050818103600083015261524481614949565b9050919050565b6000602082019050818103600083015261526481614989565b9050919050565b60006020820190508181036000830152615284816149c9565b9050919050565b600060208201905081810360008301526152a481614a09565b9050919050565b600060208201905081810360008301526152c481614a6f565b9050919050565b600060208201905081810360008301526152e481614ad5565b9050919050565b6000602082019050818103600083015261530481614b15565b9050919050565b6000602082019050818103600083015261532481614b7b565b9050919050565b6000602082019050818103600083015261534481614bbb565b9050919050565b6000602082019050818103600083015261536481614c21565b9050919050565b6000602082019050818103600083015261538481614ca1565b9050919050565b600060208201905081810360008301526153a481614d07565b9050919050565b600060208201905081810360008301526153c481614d6d565b9050919050565b600060208201905081810360008301526153e481614dd3565b9050919050565b6000602082019050818103600083015261540481614e39565b9050919050565b6000602082019050818103600083015261542481614e9f565b9050919050565b6000602082019050818103600083015261544481614edf565b9050919050565b60006020820190506154606000830184614f1f565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561548d5761548c615849565b5b8060405250919050565b600067ffffffffffffffff8211156154b2576154b1615849565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156154e2576154e1615849565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615550826156c4565b915061555b836156c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155905761558f6157bc565b5b828201905092915050565b60006155a6826156c4565b91506155b1836156c4565b9250826155c1576155c06157eb565b5b828204905092915050565b60006155d7826156c4565b91506155e2836156c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561561b5761561a6157bc565b5b828202905092915050565b6000615631826156c4565b915061563c836156c4565b92508282101561564f5761564e6157bc565b5b828203905092915050565b6000615665826156a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156156fb5780820151818401526020810190506156e0565b8381111561570a576000848401525b50505050565b6000600282049050600182168061572857607f821691505b6020821081141561573c5761573b61581a565b5b50919050565b600061574d826156c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157805761577f6157bc565b5b600182019050919050565b6000615796826156c4565b91506157a1836156c4565b9250826157b1576157b06157eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6158928161565a565b811461589d57600080fd5b50565b6158a98161566c565b81146158b457600080fd5b50565b6158c081615678565b81146158cb57600080fd5b50565b6158d7816156c4565b81146158e257600080fd5b5056fea264697066735822122053a90ae630efa35a9b6ca44c3938eeefb7a0bc0ab070b2c3caa21902b3f18f1b64736f6c6343000800003368747470733a2f2f6d657461646174612e73747265657464617767732e696f2f636f6e74726163742f707570706965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061a80000000000000000000000000000000000000000000000000000000000001388

Deployed Bytecode

0x60806040526004361061027c5760003560e01c8063749bfcbc1161014f578063b74c02e5116100c1578063e8a3d4851161007a578063e8a3d48514610a4a578063e985e9c514610a75578063f059443e14610ab2578063f2fde38b14610aef578063f3fc159a14610b18578063f6ad5bd014610b555761027c565b8063b74c02e514610933578063b88d4fde14610951578063c87b56dd1461097a578063d5abeb01146109b7578063da5783bb146109e2578063dfbf53ae14610a1f5761027c565b8063941d827a11610113578063941d827a1461081c57806395d89b411461085957806398c173a0146108845780639ba5540b146108af578063a22cb465146108cd578063ac038b61146108f65761027c565b8063749bfcbc1461070f5780637e5b1e241461074c5780638c183596146107895780638da5cb5b146107b4578063915c70ef146107df5761027c565b806323b872dd116101f357806356447bea116101ac57806356447bea146105eb5780636352211e1461062857806370a08231146106655780637146bd08146106a2578063715018a6146106cd578063728cce7c146106e45761027c565b806323b872dd146104b25780632647b7da146104db5780632f745c591461050b57806342842e0e146105485780634f6ccce71461057157806355f804b3146105ae5761027c565b8063095ea7b311610245578063095ea7b31461037c5780630af5156c146103a557806313b9d888146103e2578063155dd5ee1461040d57806318160ddd1461044a5780631cc61d6d146104755761027c565b80620e7fa81461028157806301ffc9a7146102ac57806305ef452d146102e957806306fdde0314610314578063081812fc1461033f575b600080fd5b34801561028d57600080fd5b50610296610b92565b6040516102a3919061544b565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce919061413c565b610b98565b6040516102e09190614fce565b60405180910390f35b3480156102f557600080fd5b506102fe610c12565b60405161030b919061544b565b60405180910390f35b34801561032057600080fd5b50610329610c18565b6040516103369190614fe9565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906141cf565b610caa565b6040516103739190614f67565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e91906140bb565b610d2f565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906141cf565b610e47565b6040516103d99190614fce565b60405180910390f35b3480156103ee57600080fd5b506103f7610ed5565b604051610404919061544b565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f91906141cf565b610edb565b6040516104419190614fce565b60405180910390f35b34801561045657600080fd5b5061045f611035565b60405161046c919061544b565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906140bb565b611042565b6040516104a99190614fce565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190613fb5565b61110e565b005b6104f560048036038101906104f091906141cf565b61116e565b6040516105029190614fce565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906140bb565b611410565b60405161053f919061544b565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190613fb5565b6114b5565b005b34801561057d57600080fd5b50610598600480360381019061059391906141cf565b6114d5565b6040516105a5919061544b565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d0919061418e565b61156c565b6040516105e29190614fce565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906140f7565b61160a565b60405161061f9190614fce565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906141cf565b61175e565b60405161065c9190614f67565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613f50565b611810565b604051610699919061544b565b60405180910390f35b3480156106ae57600080fd5b506106b76118c8565b6040516106c4919061544b565b60405180910390f35b3480156106d957600080fd5b506106e26118cd565b005b3480156106f057600080fd5b506106f9611a0a565b604051610706919061544b565b60405180910390f35b34801561071b57600080fd5b50610736600480360381019061073191906141f8565b611a10565b6040516107439190614fce565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061418e565b611b8e565b6040516107809190614fce565b60405180910390f35b34801561079557600080fd5b5061079e611c2c565b6040516107ab919061544b565b60405180910390f35b3480156107c057600080fd5b506107c9611c32565b6040516107d69190614f67565b60405180910390f35b3480156107eb57600080fd5b50610806600480360381019061080191906140f7565b611c5c565b6040516108139190614fce565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906141cf565b611e3b565b6040516108509190614fce565b60405180910390f35b34801561086557600080fd5b5061086e611ec9565b60405161087b9190614fe9565b60405180910390f35b34801561089057600080fd5b50610899611f5b565b6040516108a6919061544b565b60405180910390f35b6108b7611f61565b6040516108c49190614fce565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef919061407f565b61213c565b005b34801561090257600080fd5b5061091d600480360381019061091891906141cf565b6122bd565b60405161092a9190614fce565b60405180910390f35b61093b61234b565b6040516109489190614fce565b60405180910390f35b34801561095d57600080fd5b5061097860048036038101906109739190614004565b6125a9565b005b34801561098657600080fd5b506109a1600480360381019061099c91906141cf565b61260b565b6040516109ae9190614fe9565b60405180910390f35b3480156109c357600080fd5b506109cc6126b2565b6040516109d9919061544b565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a0491906140bb565b6126d6565b604051610a169190614fce565b60405180910390f35b348015610a2b57600080fd5b50610a346127e0565b604051610a419190614f67565b60405180910390f35b348015610a5657600080fd5b50610a5f612806565b604051610a6c9190614fe9565b60405180910390f35b348015610a8157600080fd5b50610a9c6004803603810190610a979190613f79565b612898565b604051610aa99190614fce565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad491906141cf565b61292c565b604051610ae69190614fce565b60405180910390f35b348015610afb57600080fd5b50610b166004803603810190610b119190613f50565b6129ba565b005b348015610b2457600080fd5b50610b3f6004803603810190610b3a9190613f50565b612b66565b604051610b4c919061544b565b60405180910390f35b348015610b6157600080fd5b50610b7c6004803603810190610b7791906141cf565b612b7e565b604051610b899190614fce565b60405180910390f35b60105481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c0b5750610c0a82612c0c565b5b9050919050565b60115481565b606060008054610c2790615710565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5390615710565b8015610ca05780601f10610c7557610100808354040283529160200191610ca0565b820191906000526020600020905b815481529060010190602001808311610c8357829003601f168201915b5050505050905090565b6000610cb582612cee565b610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb9061520b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3a8261175e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da29061532b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dca612d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610df95750610df881610df3612d5a565b612898565b5b610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f9061516b565b60405180910390fd5b610e428383612d62565b505050565b6000610e51612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610e6f611c32565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc9061524b565b60405180910390fd5b81600c8190555060019050919050565b600d5481565b6000610ee5612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610f03611c32565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f509061524b565b60405180910390fd5b600047905060008111610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f98906153eb565b60405180910390fd5b80831115610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb906151cb565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505015801561102a573d6000803e3d6000fd5b506001915050919050565b6000600880549050905090565b600061104c612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661106a611c32565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b79061524b565b60405180910390fd5b81601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b61111f611119612d5a565b82612e1b565b61115e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111559061536b565b60405180910390fd5b611169838383612ef9565b505050565b60006001600b54146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061540b565b60405180910390fd5b600082116111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef9061522b565b60405180910390fd5b600582111561123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906152eb565b60405180910390fd5b600d5482611248611035565b6112529190615545565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061534b565b60405180910390fd5b3482600f546112a291906155cc565b146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d99061510b565b60405180910390fd5b6000805b8381101561138a5760006112f8611035565b9050600d54611305611035565b10156113765761131c611316612d5a565b82613155565b80611325612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3828061137290615742565b9350505b50808061138290615742565b9150506112e6565b508281101561140657600081846113a19190615626565b9050600081600f546113b391906155cc565b90506113bd612d5a565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611402573d6000803e3d6000fd5b5050505b6001915050919050565b600061141b83611810565b821061145c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114539061502b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6114d0838383604051806020016040528060008152506125a9565b505050565b60006114df611035565b8210611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115179061538b565b60405180910390fd5b6008828154811061155a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000611576612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611594611c32565b73ffffffffffffffffffffffffffffffffffffffff16146115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e19061524b565b60405180910390fd5b8160149080519060200190611600929190613d2a565b5060019050919050565b6000611614612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611632611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f9061524b565b60405180910390fd5b600083839050905060005b81811015611752576001601260008787858181106116da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116ef9190613f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117389190615545565b92505081905550808061174a90615742565b915050611693565b50600191505092915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906151ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118789061518b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600581565b6118d5612d5a565b73ffffffffffffffffffffffffffffffffffffffff166118f3611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061524b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6000611a1a612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611a38611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a859061524b565b60405180910390fd5b600047905080841115611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd906151cb565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1685604051611afc90614f52565b60006040518083038185875af1925050503d8060008114611b39576040519150601f19603f3d011682016040523d82523d6000602084013e611b3e565b606091505b5050905080611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b799061526b565b60405180910390fd5b60019250505092915050565b6000611b98612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611bb6611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c039061524b565b60405180910390fd5b81600e9080519060200190611c22929190613d2a565b5060019050919050565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611c66612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611c84611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd19061524b565b60405180910390fd5b60008383905090506000611cec611035565b905060005b82811015611e2e577f00000000000000000000000000000000000000000000000000000000000061a8611d22611035565b1015611e1b57611d7f868683818110611d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d799190613f50565b83613155565b81868683818110611db9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dce9190613f50565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3611e18611035565b91505b8080611e2690615742565b915050611cf1565b5060019250505092915050565b6000611e45612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611e63611c32565b73ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb09061524b565b60405180910390fd5b81600f8190555060019050919050565b606060018054611ed890615710565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0490615710565b8015611f515780601f10611f2657610100808354040283529160200191611f51565b820191906000526020600020905b815481529060010190602001808311611f3457829003601f168201915b5050505050905090565b600c5481565b60007f00000000000000000000000000000000000000000000000000000000000061a8611f8c611035565b10611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc3906153ab565b60405180910390fd5b3460115414612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906153cb565b60405180910390fd5b612018612d5a565b73ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e9061506b565b60405180910390fd5b60006120b1611035565b90506120c46120be612d5a565b82613155565b806120cd612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3601360006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600191505090565b612144612d5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906150eb565b60405180910390fd5b80600560006121bf612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661226c612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122b19190614fce565b60405180910390a35050565b60006122c7612d5a565b73ffffffffffffffffffffffffffffffffffffffff166122e5611c32565b73ffffffffffffffffffffffffffffffffffffffff161461233b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123329061524b565b60405180910390fd5b81600b8190555060019050919050565b60006001600c5414612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906152cb565b60405180910390fd5b34601054146123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd9061530b565b60405180910390fd5b6000601260006123e4612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161245f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124569061542b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000061a8612488611035565b11156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c09061500b565b60405180910390fd5b60006124d3611035565b9050600d546124e0611035565b10156125a1576124f76124f1612d5a565b82613155565b600160126000612505612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254e9190615626565b925050819055508061255e612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a35b600191505090565b6125ba6125b4612d5a565b83612e1b565b6125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f09061536b565b60405180910390fd5b61260584848484613173565b50505050565b606061261682612cee565b612655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264c906152ab565b60405180910390fd5b600061265f6131cf565b9050600081511161267f57604051806020016040528060008152506126aa565b8061268984613261565b60405160200161269a929190614f2e565b6040516020818303038152906040525b915050919050565b7f00000000000000000000000000000000000000000000000000000000000061a881565b60006126e0612d5a565b73ffffffffffffffffffffffffffffffffffffffff166126fe611c32565b73ffffffffffffffffffffffffffffffffffffffff1614612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b9061524b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb9061512b565b60405180910390fd5b6127cd8361340e565b6127d682613452565b6001905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600e805461281590615710565b80601f016020809104026020016040519081016040528092919081815260200182805461284190615710565b801561288e5780601f106128635761010080835404028352916020019161288e565b820191906000526020600020905b81548152906001019060200180831161287157829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612936612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612954611c32565b73ffffffffffffffffffffffffffffffffffffffff16146129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a19061524b565b60405180910390fd5b8160108190555060019050919050565b6129c2612d5a565b73ffffffffffffffffffffffffffffffffffffffff166129e0611c32565b73ffffffffffffffffffffffffffffffffffffffff1614612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d9061524b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d9061508b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60126020528060005260406000206000915090505481565b6000612b88612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612ba6611c32565b73ffffffffffffffffffffffffffffffffffffffff1614612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf39061524b565b60405180910390fd5b81600d8190555060019050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cd757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ce75750612ce68261345c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612dd58361175e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e2682612cee565b612e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5c9061514b565b60405180910390fd5b6000612e708361175e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612edf57508373ffffffffffffffffffffffffffffffffffffffff16612ec784610caa565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ef05750612eef8185612898565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f198261175e565b73ffffffffffffffffffffffffffffffffffffffff1614612f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f669061528b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd6906150cb565b60405180910390fd5b612fea8383836134c6565b612ff5600082612d62565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130459190615626565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309c9190615545565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61316f8282604051806020016040528060008152506135da565b5050565b61317e848484612ef9565b61318a84848484613635565b6131c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c09061504b565b60405180910390fd5b50505050565b6060601480546131de90615710565b80601f016020809104026020016040519081016040528092919081815260200182805461320a90615710565b80156132575780601f1061322c57610100808354040283529160200191613257565b820191906000526020600020905b81548152906001019060200180831161323a57829003601f168201915b5050505050905090565b606060008214156132a9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613409565b600082905060005b600082146132db5780806132c490615742565b915050600a826132d4919061559b565b91506132b1565b60008167ffffffffffffffff81111561331d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561334f5781602001600182028036833780820191505090505b5090505b60008514613402576001826133689190615626565b9150600a85613377919061578b565b60306133839190615545565b60f81b8183815181106133bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133fb919061559b565b9450613353565b8093505050505b919050565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8060118190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134d18383836137cc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135145761350f816137d1565b613553565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461355257613551838261381a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135965761359181613987565b6135d5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135d4576135d38282613aca565b5b5b505050565b6135e48383613b49565b6135f16000848484613635565b613630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136279061504b565b60405180910390fd5b505050565b60006136568473ffffffffffffffffffffffffffffffffffffffff16613d17565b156137bf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261367f612d5a565b8786866040518563ffffffff1660e01b81526004016136a19493929190614f82565b602060405180830381600087803b1580156136bb57600080fd5b505af19250505080156136ec57506040513d601f19601f820116820180604052508101906136e99190614165565b60015b61376f573d806000811461371c576040519150601f19603f3d011682016040523d82523d6000602084013e613721565b606091505b50600081511415613767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375e9061504b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137c4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161382784611810565b6138319190615626565b9050600060076000848152602001908152602001600020549050818114613916576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061399b9190615626565b90506000600960008481526020019081526020016000205490506000600883815481106139f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613aae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ad583611810565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb0906151eb565b60405180910390fd5b613bc281612cee565b15613c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf9906150ab565b60405180910390fd5b613c0e600083836134c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c5e9190615545565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613d3690615710565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613db0565b5090565b5b80821115613dc9576000816000905550600101613db1565b5090565b6000613de0613ddb84615497565b615466565b905082815260208101848484011115613df857600080fd5b613e038482856156ce565b509392505050565b6000613e1e613e19846154c7565b615466565b905082815260208101848484011115613e3657600080fd5b613e418482856156ce565b509392505050565b600081359050613e5881615889565b92915050565b60008083601f840112613e7057600080fd5b8235905067ffffffffffffffff811115613e8957600080fd5b602083019150836020820283011115613ea157600080fd5b9250929050565b600081359050613eb7816158a0565b92915050565b600081359050613ecc816158b7565b92915050565b600081519050613ee1816158b7565b92915050565b600082601f830112613ef857600080fd5b8135613f08848260208601613dcd565b91505092915050565b600082601f830112613f2257600080fd5b8135613f32848260208601613e0b565b91505092915050565b600081359050613f4a816158ce565b92915050565b600060208284031215613f6257600080fd5b6000613f7084828501613e49565b91505092915050565b60008060408385031215613f8c57600080fd5b6000613f9a85828601613e49565b9250506020613fab85828601613e49565b9150509250929050565b600080600060608486031215613fca57600080fd5b6000613fd886828701613e49565b9350506020613fe986828701613e49565b9250506040613ffa86828701613f3b565b9150509250925092565b6000806000806080858703121561401a57600080fd5b600061402887828801613e49565b945050602061403987828801613e49565b935050604061404a87828801613f3b565b925050606085013567ffffffffffffffff81111561406757600080fd5b61407387828801613ee7565b91505092959194509250565b6000806040838503121561409257600080fd5b60006140a085828601613e49565b92505060206140b185828601613ea8565b9150509250929050565b600080604083850312156140ce57600080fd5b60006140dc85828601613e49565b92505060206140ed85828601613f3b565b9150509250929050565b6000806020838503121561410a57600080fd5b600083013567ffffffffffffffff81111561412457600080fd5b61413085828601613e5e565b92509250509250929050565b60006020828403121561414e57600080fd5b600061415c84828501613ebd565b91505092915050565b60006020828403121561417757600080fd5b600061418584828501613ed2565b91505092915050565b6000602082840312156141a057600080fd5b600082013567ffffffffffffffff8111156141ba57600080fd5b6141c684828501613f11565b91505092915050565b6000602082840312156141e157600080fd5b60006141ef84828501613f3b565b91505092915050565b6000806040838503121561420b57600080fd5b600061421985828601613f3b565b925050602061422a85828601613e49565b9150509250929050565b61423d8161565a565b82525050565b61424c8161566c565b82525050565b600061425d826154f7565b614267818561550d565b93506142778185602086016156dd565b61428081615878565b840191505092915050565b600061429682615502565b6142a08185615529565b93506142b08185602086016156dd565b6142b981615878565b840191505092915050565b60006142cf82615502565b6142d9818561553a565b93506142e98185602086016156dd565b80840191505092915050565b6000614302602c83615529565b91507f4350503a206372656174696f6e206d757374206e6f7420657863656564206d6160008301527f78696d756d20737570706c7900000000000000000000000000000000000000006020830152604082019050919050565b6000614368602b83615529565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006143ce603283615529565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614434602783615529565b91507f434444503a20627579657220616464726573732073686f756c6420626520444460008301527f2077696e6e6572000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061449a602683615529565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614500601c83615529565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614540602483615529565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a6601983615529565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006145e6602683615529565b91507f43503a2076616c7565206d757374206d6174636820616363756d756c6174656460008301527f20707269636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061464c603683615529565b91507f73657457696e6e6572416e6450726963653a2077696e6e6572206d757374206e60008301527f6f7420626520746865207a65726f2061646472657373000000000000000000006020830152604082019050919050565b60006146b2602c83615529565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614718603883615529565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061477e602a83615529565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e4602983615529565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061484a602483615529565b91507f43616e206e6f74207769746864726177206d6f7265207468616e20617661696c60008301527f61626c65000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b0602083615529565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006148f0602c83615529565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614956601983615529565b91507f43503a2076616c7565203e207a65726f207265717569726564000000000000006000830152602082019050919050565b6000614996602083615529565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149d6601483615529565b91507f4661696c656420746f2073656e642065746865720000000000000000000000006000830152602082019050919050565b6000614a16602983615529565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a7c602f83615529565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ae2601583615529565b91507f4350503a2053616c65206e6f74207374617274656400000000000000000000006000830152602082019050919050565b6000614b22602983615529565b91507f43503a2076616c7565206d757374206e6f74206265206c61726765722074686160008301527f6e20616c6c6f77656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b88601b83615529565b91507f4350503a2076616c7565206d757374206d6174636820707269636500000000006000830152602082019050919050565b6000614bc8602183615529565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2e602b83615529565b91507f43503a206372656174696f6e206d757374206e6f7420657863656564206d617860008301527f696d756d20737570706c790000000000000000000000000000000000000000006020830152604082019050919050565b6000614c9460008361551e565b9150600082019050919050565b6000614cae603183615529565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614d14602c83615529565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614d7a602d83615529565b91507f434444503a206372656174696f6e206d757374206e6f7420657863656564206d60008301527f6178696d756d20737570706c79000000000000000000000000000000000000006020830152604082019050919050565b6000614de0602b83615529565b91507f434444503a2076616c7565206d757374206d6174636820746865206461696c7960008301527f2064726f702070726963650000000000000000000000000000000000000000006020830152604082019050919050565b6000614e46602a83615529565b91507f776974686472617746756e64733a206d75737420686176652066756e6473207460008301527f6f207769746864726177000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eac601483615529565b91507f43503a2053616c65206e6f7420737461727465640000000000000000000000006000830152602082019050919050565b6000614eec601a83615529565b91507f4350503a204e6f7420417574686f726973656420746f206275790000000000006000830152602082019050919050565b614f28816156c4565b82525050565b6000614f3a82856142c4565b9150614f4682846142c4565b91508190509392505050565b6000614f5d82614c87565b9150819050919050565b6000602082019050614f7c6000830184614234565b92915050565b6000608082019050614f976000830187614234565b614fa46020830186614234565b614fb16040830185614f1f565b8181036060830152614fc38184614252565b905095945050505050565b6000602082019050614fe36000830184614243565b92915050565b60006020820190508181036000830152615003818461428b565b905092915050565b60006020820190508181036000830152615024816142f5565b9050919050565b600060208201905081810360008301526150448161435b565b9050919050565b60006020820190508181036000830152615064816143c1565b9050919050565b6000602082019050818103600083015261508481614427565b9050919050565b600060208201905081810360008301526150a48161448d565b9050919050565b600060208201905081810360008301526150c4816144f3565b9050919050565b600060208201905081810360008301526150e481614533565b9050919050565b6000602082019050818103600083015261510481614599565b9050919050565b60006020820190508181036000830152615124816145d9565b9050919050565b600060208201905081810360008301526151448161463f565b9050919050565b60006020820190508181036000830152615164816146a5565b9050919050565b600060208201905081810360008301526151848161470b565b9050919050565b600060208201905081810360008301526151a481614771565b9050919050565b600060208201905081810360008301526151c4816147d7565b9050919050565b600060208201905081810360008301526151e48161483d565b9050919050565b60006020820190508181036000830152615204816148a3565b9050919050565b60006020820190508181036000830152615224816148e3565b9050919050565b6000602082019050818103600083015261524481614949565b9050919050565b6000602082019050818103600083015261526481614989565b9050919050565b60006020820190508181036000830152615284816149c9565b9050919050565b600060208201905081810360008301526152a481614a09565b9050919050565b600060208201905081810360008301526152c481614a6f565b9050919050565b600060208201905081810360008301526152e481614ad5565b9050919050565b6000602082019050818103600083015261530481614b15565b9050919050565b6000602082019050818103600083015261532481614b7b565b9050919050565b6000602082019050818103600083015261534481614bbb565b9050919050565b6000602082019050818103600083015261536481614c21565b9050919050565b6000602082019050818103600083015261538481614ca1565b9050919050565b600060208201905081810360008301526153a481614d07565b9050919050565b600060208201905081810360008301526153c481614d6d565b9050919050565b600060208201905081810360008301526153e481614dd3565b9050919050565b6000602082019050818103600083015261540481614e39565b9050919050565b6000602082019050818103600083015261542481614e9f565b9050919050565b6000602082019050818103600083015261544481614edf565b9050919050565b60006020820190506154606000830184614f1f565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561548d5761548c615849565b5b8060405250919050565b600067ffffffffffffffff8211156154b2576154b1615849565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156154e2576154e1615849565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615550826156c4565b915061555b836156c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155905761558f6157bc565b5b828201905092915050565b60006155a6826156c4565b91506155b1836156c4565b9250826155c1576155c06157eb565b5b828204905092915050565b60006155d7826156c4565b91506155e2836156c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561561b5761561a6157bc565b5b828202905092915050565b6000615631826156c4565b915061563c836156c4565b92508282101561564f5761564e6157bc565b5b828203905092915050565b6000615665826156a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156156fb5780820151818401526020810190506156e0565b8381111561570a576000848401525b50505050565b6000600282049050600182168061572857607f821691505b6020821081141561573c5761573b61581a565b5b50919050565b600061574d826156c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157805761577f6157bc565b5b600182019050919050565b6000615796826156c4565b91506157a1836156c4565b9250826157b1576157b06157eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6158928161565a565b811461589d57600080fd5b50565b6158a98161566c565b81146158b457600080fd5b50565b6158c081615678565b81146158cb57600080fd5b50565b6158d7816156c4565b81146158e257600080fd5b5056fea264697066735822122053a90ae630efa35a9b6ca44c3938eeefb7a0bc0ab070b2c3caa21902b3f18f1b64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061a80000000000000000000000000000000000000000000000000000000000001388

-----Decoded View---------------
Arg [0] : allowPresales (uint256): 0
Arg [1] : allowGenesis (uint256): 0
Arg [2] : maxPuppies (uint256): 25000
Arg [3] : maxGenesisSupply (uint256): 5000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 00000000000000000000000000000000000000000000000000000000000061a8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001388


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.