ETH Price: $3,417.07 (-0.81%)
Gas: 2 Gwei

Token

WCryptokitties (WKITTIES)
 

Overview

Max Total Supply

18 WKITTIES

Holders

7

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Carlini8
Balance
2 WKITTIES
0x0d41f957181e584db82d2e316837b2de1738c477
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:
WrappedKitty

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-08
*/

// File: contracts\gsn\Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN 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.
 */
contract Context {

    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }

}

// File: contracts\access\Ownable.sol

pragma solidity ^0.5.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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 () internal {
        address msgSender = _msgSender();

        _owner = msgSender;

        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 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 onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");

        emit OwnershipTransferred(_owner, newOwner);

        _owner = newOwner;
    }

}

// File: contracts\token\erc721\IERC721Enumerable.sol

pragma solidity ^0.5.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

}

// File: contracts\libs\SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {

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

        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;

        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

        return a / b;
    }

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

        return a % b;
    }

}

// File: contracts\libs\Counters.sol

pragma solidity ^0.5.0;


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {

    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }

}

// File: contracts\libs\Address.sol

pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {

    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;

        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }

        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

}

// File: contracts\token\erc721\IERC721.sol

pragma solidity ^0.5.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 {

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

}

// File: contracts\token\erc721\IERC721Receiver.sol

pragma solidity ^0.5.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {

    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a {IERC721-safeTransferFrom}. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);

}

// File: contracts\token\erc721\IERC165.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

}

// File: contracts\token\erc721\ERC165.sol

pragma solidity ^0.5.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {

    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");

        _supportedInterfaces[interfaceId] = true;
    }

}

// File: contracts\token\erc721\ERC721.sol

pragma solidity ^0.5.0;








/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721 {

    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

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

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

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

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

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // Register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];

        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = 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"
        );

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        address msgSender = _msgSender();

        require(to != msgSender, "ERC721: approve to caller");

        _operatorApprovals[msgSender][to] = approved;

        emit ApprovalForAll(msgSender, to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        // solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the _msgSender() to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _safeTransferFrom(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal {
        _transferFrom(from, to, tokenId);

        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _tokenOwner[tokenId] != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");

        address owner = ownerOf(tokenId);

        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal {
        _mint(to, tokenId);

        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, 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.
     *
     * This is an internal detail of the `ERC721` contract and its use is deprecated.
     * @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) internal returns (bool) {
        if (!to.isContract()) {
            return true;
        }

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ));

        if (!success) {
            if (returndata.length > 0) {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }

            } else {
                revert("ERC721: transfer to non ERC721Receiver implementer");
            }

        } else {
            bytes4 retval = abi.decode(returndata, (bytes4));
            return (retval == _ERC721_RECEIVED);
        }
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }

}

// File: contracts\token\erc721\ERC721Enumerable.sol

pragma solidity ^0.5.0;



/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is ERC721, IERC721Enumerable {

    // Mapping from owner to list of owned token IDs
    mapping(address => 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;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    constructor () public {
        // Register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");

        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {ERC721-_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);

        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }

    /**
     * @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 {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @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 = _ownedTokens[from].length.sub(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
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @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.sub(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
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }

}

// File: contracts\libs\Strings.sol

pragma solidity ^0.5.0;

/**
 * @title Strings
 * @dev String operations.
 */
library Strings {

    /**
     * @dev Converts a `uint256` to a `string`.
     * via OraclizeAPI - MIT licence
     * https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
     */
    function fromUint256(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0";
        }

        uint256 temp = value;
        uint256 digits;

        while (temp != 0) {
            digits++;
            temp /= 10;
        }

        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;

        temp = value;

        while (temp != 0) {
            buffer[index--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }

        return string(buffer);
    }

}

// File: contracts\token\erc721\IERC721Metadata.sol

pragma solidity ^0.5.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata {

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

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

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

}

// File: contracts\token\erc721\ERC721Metadata.sol

pragma solidity ^0.5.0;




contract ERC721Metadata is ERC721, IERC721Metadata {

    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // Register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the URI for a given token ID. May return an empty string.
     *
     * If a base URI is set (via {_setBaseURI}), it is added as a prefix to the
     * token's own URI (via {_setTokenURI}).
     *
     * If there is a base URI but no token URI, the token's ID will be used as
     * its URI when appending it to the base URI. This pattern for autogenerated
     * token URIs can lead to large gas savings.
     *
     * .Examples
     * |===
     * |`_setBaseURI()` |`_setTokenURI()` |`tokenURI()`
     * | ""
     * | ""
     * | ""
     * | ""
     * | "token.uri/123"
     * | "token.uri/123"
     * | "token.uri/"
     * | "123"
     * | "token.uri/123"
     * | "token.uri/"
     * | ""
     * | "token.uri/<tokenId>"
     * |===
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function tokenURI(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).length == 0) {
            return _tokenURI;
        }

        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }

        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, tokenId.fromUint256()));
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     *
     * Reverts if the token ID does not exist.
     *
     * TIP: if all token IDs share a prefix (e.g. if your URIs look like
     * `http://api.myproject.com/token/<id>`), use {_setBaseURI} to store
     * it and save gas.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");

        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI}.
     *
     * _Available since v2.5.0._
     */
    function _setBaseURI(string memory baseURI) internal {
        _baseURI = baseURI;
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a preffix in {tokenURI} to each token's URI, when
     * they are non-empty.
     *
     * _Available since v2.5.0._
     */
    function baseURI() public view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clears metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }

}

// File: contracts\token\erc721\ERC721Full.sol

pragma solidity ^0.5.0;



/**
 * @title Full ERC721 Token
 * @dev This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology.
 *
 * See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721Enumerable, ERC721Metadata {

    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }

}

// File: contracts\crypto-kitty\ICryptoKitty.sol

pragma solidity ^0.5.0;

interface ICryptoKitty {

    function getKitty(uint256 kittyId) external view returns (
        bool isGestating,
        bool isReady,
        uint256 cooldownIndex,
        uint256 nextActionAt,
        uint256 siringWithId,
        uint256 birthTime,
        uint256 matronId,
        uint256 sireId,
        uint256 generation,
        uint256 genes
    );

    function transfer(address to, uint256 kittyId) external;
    function transferFrom(address from, address to, uint256 kittyId) external;

}

// File: contracts\crypto-kitty\WrappedKitty.sol

pragma solidity ^0.5.0;




contract WrappedKitty is Ownable, ERC721Full {

    // Instance of cryptokitty smart contract
    ICryptoKitty private _kittyContract;

    /**
     * @dev Initializes the contract settings
     */
    constructor(address kittyContract)
        public
        ERC721Full("WCryptokitties", "WKITTIES")
    {
        _kittyContract = ICryptoKitty(kittyContract);
    }

    /**
     * @dev Gets address of cryptokitty smart contract
     */
    function kittyContract()
        public
        view
        returns (address)
    {
        return address(_kittyContract);
    }

    /**
     * @dev Sets the base URI for all token
     */
    function setBaseURI(string memory baseUri)
        public
        onlyOwner
    {
        _setBaseURI(baseUri);
    }

    /**
     * @dev Mints a wrapped kitty
     */
    function mint(uint256 kittyId)
        public
    {
        address sender = _msgSender();

        _kittyContract.transferFrom(sender, address(this), kittyId);

        _mint(sender, kittyId);
    }

    /**
     * @dev Burns a specific wrapped kitty
     */
    function burn(uint256 kittyId)
        public
    {
        address sender = _msgSender();

        require(_isApprovedOrOwner(sender, kittyId), "WrappedKitty: caller is not owner nor approved");

        _burn(kittyId);

        // Transfers ownership of kitty on original cryptokitty smart contract to caller
        _kittyContract.transfer(sender, kittyId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"kittyContract","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"kittyId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"kittyContract","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"kittyId","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620024e8380380620024e8833981810160405260208110156200003757600080fd5b5051604080518082018252600e81526d5743727970746f6b69747469657360901b60208281019190915282518084019093526008835267574b49545449455360c01b908301529081816000620000956001600160e01b03620001a316565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000fa6301ffc9a760e01b6001600160e01b03620001a816565b620001156380ac58cd60e01b6001600160e01b03620001a816565b6200013063780e9d6360e01b6001600160e01b03620001a816565b81516200014590600a90602085019062000230565b5080516200015b90600b90602084019062000230565b5062000177635b5e139f60e01b6001600160e01b03620001a816565b5050600e80546001600160a01b0319166001600160a01b03949094169390931790925550620002d29050565b335b90565b6001600160e01b0319808216141562000208576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200027357805160ff1916838001178555620002a3565b82800160010185558215620002a3579182015b82811115620002a357825182559160200191906001019062000286565b50620002b1929150620002b5565b5090565b620001a591905b80821115620002b15760008155600101620002bc565b61220680620002e26000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063a0712d681161007c578063a0712d6814610479578063a22cb46514610496578063b88d4fde146104c4578063c87b56dd1461058a578063e985e9c5146105a7578063f2fde38b146105d557610158565b80636352211e146104165780636c0360eb1461043357806370a082311461043b578063715018a6146104615780638da5cb5b1461046957806395d89b411461047157610158565b80632f745c59116101155780632f745c59146102cc57806342842e0e146102f857806342966c681461032e5780634f6ccce71461034b57806355f804b3146103685780635f9da25c1461040e57610158565b806301ffc9a71461015d57806306fdde0314610198578063081812fc14610215578063095ea7b31461024e57806318160ddd1461027c57806323b872dd14610296575b600080fd5b6101846004803603602081101561017357600080fd5b50356001600160e01b0319166105fb565b604080519115158252519081900360200190f35b6101a061061e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102326004803603602081101561022b57600080fd5b50356106b5565b604080516001600160a01b039092168252519081900360200190f35b61027a6004803603604081101561026457600080fd5b506001600160a01b038135169060200135610717565b005b61028461083f565b60408051918252519081900360200190f35b61027a600480360360608110156102ac57600080fd5b506001600160a01b03813581169160208101359091169060400135610845565b610284600480360360408110156102e257600080fd5b506001600160a01b0381351690602001356108a1565b61027a6004803603606081101561030e57600080fd5b506001600160a01b03813581169160208101359091169060400135610920565b61027a6004803603602081101561034457600080fd5b503561093b565b6102846004803603602081101561036157600080fd5b5035610a06565b61027a6004803603602081101561037e57600080fd5b81019060208101813564010000000081111561039957600080fd5b8201836020820111156103ab57600080fd5b803590602001918460018302840111640100000000831117156103cd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a6c945050505050565b610232610ae2565b6102326004803603602081101561042c57600080fd5b5035610af1565b6101a0610b4b565b6102846004803603602081101561045157600080fd5b50356001600160a01b0316610bac565b61027a610c14565b610232610cc8565b6101a0610cd7565b61027a6004803603602081101561048f57600080fd5b5035610d38565b61027a600480360360408110156104ac57600080fd5b506001600160a01b0381351690602001351515610dc5565b61027a600480360360808110156104da57600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561051557600080fd5b82018360208201111561052757600080fd5b8035906020019184600183028401116401000000008311171561054957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ea6945050505050565b6101a0600480360360208110156105a057600080fd5b5035610f04565b610184600480360360408110156105bd57600080fd5b506001600160a01b03813581169160200135166111ab565b61027a600480360360208110156105eb57600080fd5b50356001600160a01b03166111d9565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b505050505090505b90565b60006106c0826112e3565b6106fb5760405162461bcd60e51b815260040180806020018281038252602c8152602001806120ab602c913960400191505060405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061072282610af1565b9050806001600160a01b0316836001600160a01b031614156107755760405162461bcd60e51b815260040180806020018281038252602181526020018061212f6021913960400191505060405180910390fd5b806001600160a01b0316610787611300565b6001600160a01b031614806107a857506107a8816107a3611300565b6111ab565b6107e35760405162461bcd60e51b81526004018080602001828103825260388152602001806120206038913960400191505060405180910390fd5b60008281526003602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085490565b610856610850611300565b82611304565b6108915760405162461bcd60e51b81526004018080602001828103825260318152602001806121506031913960400191505060405180910390fd5b61089c8383836113a8565b505050565b60006108ac83610bac565b82106108e95760405162461bcd60e51b815260040180806020018281038252602b815260200180611f1f602b913960400191505060405180910390fd5b6001600160a01b038316600090815260066020526040902080548390811061090d57fe5b9060005260206000200154905092915050565b61089c83838360405180602001604052806000815250610ea6565b6000610945611300565b90506109518183611304565b61098c5760405162461bcd60e51b815260040180806020018281038252602e815260200180611fc6602e913960400191505060405180910390fd5b610995826113c7565b600e546040805163a9059cbb60e01b81526001600160a01b038481166004830152602482018690529151919092169163a9059cbb91604480830192600092919082900301818387803b1580156109ea57600080fd5b505af11580156109fe573d6000803e3d6000fd5b505050505050565b6000610a1061083f565b8210610a4d5760405162461bcd60e51b815260040180806020018281038252602c815260200180612181602c913960400191505060405180910390fd5b60088281548110610a5a57fe5b90600052602060002001549050919050565b610a74611300565b6000546001600160a01b03908116911614610ad6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610adf816113d9565b50565b600e546001600160a01b031690565b6000818152600260205260408120546001600160a01b031680610b455760405162461bcd60e51b81526004018080602001828103825260298152602001806120826029913960400191505060405180910390fd5b92915050565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106aa5780601f1061067f576101008083540402835291602001916106aa565b60006001600160a01b038216610bf35760405162461bcd60e51b815260040180806020018281038252602a815260200180612058602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600460205260409020610b45906113ec565b610c1c611300565b6000546001600160a01b03908116911614610c7e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106aa5780601f1061067f576101008083540402835291602001916106aa565b6000610d42611300565b600e54604080516323b872dd60e01b81526001600160a01b0380851660048301523060248301526044820187905291519394509116916323b872dd9160648082019260009290919082900301818387803b158015610d9f57600080fd5b505af1158015610db3573d6000803e3d6000fd5b50505050610dc181836113f0565b5050565b6000610dcf611300565b9050806001600160a01b0316836001600160a01b03161415610e38576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b6001600160a01b03818116600081815260056020908152604080832094881680845294825291829020805460ff1916871515908117909155825190815291517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319281900390910190a3505050565b610eb7610eb1611300565b83611304565b610ef25760405162461bcd60e51b81526004018080602001828103825260318152602001806121506031913960400191505060405180910390fd5b610efe8484848461140d565b50505050565b6060610f0f826112e3565b610f4a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612100602f913960400191505060405180910390fd5b6000828152600d602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b5050600c5493945050505060026000196101006001841615020190911604611008579050610619565b8051156110d957600c8160405160200180838054600181600116156101000203166002900480156110705780601f1061104e576101008083540402835291820191611070565b820191906000526020600020905b81548152906001019060200180831161105c575b5050825160208401908083835b6020831061109c5780518252601f19909201916020918201910161107d565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610619565b600c6110e48461145f565b60405160200180838054600181600116156101000203166002900480156111425780601f10611120576101008083540402835291820191611142565b820191906000526020600020905b81548152906001019060200180831161112e575b5050825160208401908083835b6020831061116e5780518252601f19909201916020918201910161114f565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111e1611300565b6000546001600160a01b03908116911614611243576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166112885760405162461bcd60e51b8152600401808060200182810382526026815260200180611f7c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600061130f826112e3565b61134a5760405162461bcd60e51b815260040180806020018281038252602c815260200180611ff4602c913960400191505060405180910390fd5b600061135583610af1565b9050806001600160a01b0316846001600160a01b031614806113905750836001600160a01b0316611385846106b5565b6001600160a01b0316145b806113a057506113a081856111ab565b949350505050565b6113b3838383611523565b6113bd8382611667565b61089c828261175c565b610adf6113d382610af1565b8261179a565b8051610dc190600c906020840190611e22565b5490565b6113fa82826117e2565b611404828261175c565b610dc181611913565b6114188484846113a8565b61142484848484611957565b610efe5760405162461bcd60e51b8152600401808060200182810382526032815260200180611f4a6032913960400191505060405180910390fd5b60608161148457506040805180820190915260018152600360fc1b6020820152610619565b8160005b811561149c57600101600a82049150611488565b6060816040519080825280601f01601f1916602001820160405280156114c9576020820181803883390190505b50859350905060001982015b831561151a57600a840660300160f81b828280600190039350815181106114f857fe5b60200101906001600160f81b031916908160001a905350600a840493506114d5565b50949350505050565b826001600160a01b031661153682610af1565b6001600160a01b03161461157b5760405162461bcd60e51b81526004018080602001828103825260298152602001806120d76029913960400191505060405180910390fd5b6001600160a01b0382166115c05760405162461bcd60e51b8152600401808060200182810382526024815260200180611fa26024913960400191505060405180910390fd5b6115c981611b92565b6001600160a01b03831660009081526004602052604090206115ea90611bcd565b6001600160a01b038216600090815260046020526040902061160b90611be4565b60008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526006602052604081205461169190600163ffffffff611bed16565b60008381526007602052604090205490915080821461172c576001600160a01b03841660009081526006602052604081208054849081106116ce57fe5b906000526020600020015490508060066000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061170c57fe5b600091825260208083209091019290925591825260079052604090208190555b6001600160a01b0384166000908152600660205260409020805490611755906000198301611ea0565b5050505050565b6001600160a01b0390911660009081526006602081815260408084208054868652600784529185208290559282526001810183559183529091200155565b6117a48282611c4a565b6000818152600d60205260409020546002600019610100600184161502019091160415610dc1576000818152600d60205260408120610dc191611ec4565b6001600160a01b03821661183d576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611846816112e3565b15611898576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260026020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600490915290206118d790611be4565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600061196b846001600160a01b0316611c76565b611977575060016113a0565b600060606001600160a01b038616630a85bd0160e11b611995611300565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611a0e5781810151838201526020016119f6565b50505050905090810190601f168015611a3b5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611aa35780518252601f199092019160209182019101611a84565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611b05576040519150601f19603f3d011682016040523d82523d6000602084013e611b0a565b606091505b509150915081611b5b57805115611b245780518082602001fd5b60405162461bcd60e51b8152600401808060200182810382526032815260200180611f4a6032913960400191505060405180910390fd5b6000818060200190516020811015611b7257600080fd5b50516001600160e01b031916630a85bd0160e11b1493506113a092505050565b6000818152600360205260409020546001600160a01b031615610adf57600090815260036020526040902080546001600160a01b0319169055565b8054611be090600163ffffffff611bed16565b9055565b80546001019055565b600082821115611c44576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b611c548282611caf565b611c5e8282611667565b600081815260076020526040812055610dc181611d86565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906113a0575050151592915050565b816001600160a01b0316611cc282610af1565b6001600160a01b031614611d075760405162461bcd60e51b81526004018080602001828103825260258152602001806121ad6025913960400191505060405180910390fd5b611d1081611b92565b6001600160a01b0382166000908152600460205260409020611d3190611bcd565b60008181526002602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600854600090611d9d90600163ffffffff611bed16565b60008381526009602052604081205460088054939450909284908110611dbf57fe5b906000526020600020015490508060088381548110611dda57fe5b60009182526020808320909101929092558281526009909152604090208290556008805490611e0d906000198301611ea0565b50505060009182525060096020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611e6357805160ff1916838001178555611e90565b82800160010185558215611e90579182015b82811115611e90578251825591602001919060010190611e75565b50611e9c929150611f04565b5090565b81548183558181111561089c5760008381526020902061089c918101908301611f04565b50805460018160011615610100020316600290046000825580601f10611eea5750610adf565b601f016020900490600052602060002090810190610adf91905b6106b291905b80821115611e9c5760008155600101611f0a56fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373577261707065644b697474793a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776ea265627a7a723158208c982ad81cc91b2c745426ad43383a37f7e9053b665cbb2b0e7f1eaa62a7209d64736f6c6343000511003200000000000000000000000006012c8cf97bead5deae237070f9587f8e7a266d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063a0712d681161007c578063a0712d6814610479578063a22cb46514610496578063b88d4fde146104c4578063c87b56dd1461058a578063e985e9c5146105a7578063f2fde38b146105d557610158565b80636352211e146104165780636c0360eb1461043357806370a082311461043b578063715018a6146104615780638da5cb5b1461046957806395d89b411461047157610158565b80632f745c59116101155780632f745c59146102cc57806342842e0e146102f857806342966c681461032e5780634f6ccce71461034b57806355f804b3146103685780635f9da25c1461040e57610158565b806301ffc9a71461015d57806306fdde0314610198578063081812fc14610215578063095ea7b31461024e57806318160ddd1461027c57806323b872dd14610296575b600080fd5b6101846004803603602081101561017357600080fd5b50356001600160e01b0319166105fb565b604080519115158252519081900360200190f35b6101a061061e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102326004803603602081101561022b57600080fd5b50356106b5565b604080516001600160a01b039092168252519081900360200190f35b61027a6004803603604081101561026457600080fd5b506001600160a01b038135169060200135610717565b005b61028461083f565b60408051918252519081900360200190f35b61027a600480360360608110156102ac57600080fd5b506001600160a01b03813581169160208101359091169060400135610845565b610284600480360360408110156102e257600080fd5b506001600160a01b0381351690602001356108a1565b61027a6004803603606081101561030e57600080fd5b506001600160a01b03813581169160208101359091169060400135610920565b61027a6004803603602081101561034457600080fd5b503561093b565b6102846004803603602081101561036157600080fd5b5035610a06565b61027a6004803603602081101561037e57600080fd5b81019060208101813564010000000081111561039957600080fd5b8201836020820111156103ab57600080fd5b803590602001918460018302840111640100000000831117156103cd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a6c945050505050565b610232610ae2565b6102326004803603602081101561042c57600080fd5b5035610af1565b6101a0610b4b565b6102846004803603602081101561045157600080fd5b50356001600160a01b0316610bac565b61027a610c14565b610232610cc8565b6101a0610cd7565b61027a6004803603602081101561048f57600080fd5b5035610d38565b61027a600480360360408110156104ac57600080fd5b506001600160a01b0381351690602001351515610dc5565b61027a600480360360808110156104da57600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561051557600080fd5b82018360208201111561052757600080fd5b8035906020019184600183028401116401000000008311171561054957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ea6945050505050565b6101a0600480360360208110156105a057600080fd5b5035610f04565b610184600480360360408110156105bd57600080fd5b506001600160a01b03813581169160200135166111ab565b61027a600480360360208110156105eb57600080fd5b50356001600160a01b03166111d9565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b505050505090505b90565b60006106c0826112e3565b6106fb5760405162461bcd60e51b815260040180806020018281038252602c8152602001806120ab602c913960400191505060405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061072282610af1565b9050806001600160a01b0316836001600160a01b031614156107755760405162461bcd60e51b815260040180806020018281038252602181526020018061212f6021913960400191505060405180910390fd5b806001600160a01b0316610787611300565b6001600160a01b031614806107a857506107a8816107a3611300565b6111ab565b6107e35760405162461bcd60e51b81526004018080602001828103825260388152602001806120206038913960400191505060405180910390fd5b60008281526003602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085490565b610856610850611300565b82611304565b6108915760405162461bcd60e51b81526004018080602001828103825260318152602001806121506031913960400191505060405180910390fd5b61089c8383836113a8565b505050565b60006108ac83610bac565b82106108e95760405162461bcd60e51b815260040180806020018281038252602b815260200180611f1f602b913960400191505060405180910390fd5b6001600160a01b038316600090815260066020526040902080548390811061090d57fe5b9060005260206000200154905092915050565b61089c83838360405180602001604052806000815250610ea6565b6000610945611300565b90506109518183611304565b61098c5760405162461bcd60e51b815260040180806020018281038252602e815260200180611fc6602e913960400191505060405180910390fd5b610995826113c7565b600e546040805163a9059cbb60e01b81526001600160a01b038481166004830152602482018690529151919092169163a9059cbb91604480830192600092919082900301818387803b1580156109ea57600080fd5b505af11580156109fe573d6000803e3d6000fd5b505050505050565b6000610a1061083f565b8210610a4d5760405162461bcd60e51b815260040180806020018281038252602c815260200180612181602c913960400191505060405180910390fd5b60088281548110610a5a57fe5b90600052602060002001549050919050565b610a74611300565b6000546001600160a01b03908116911614610ad6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610adf816113d9565b50565b600e546001600160a01b031690565b6000818152600260205260408120546001600160a01b031680610b455760405162461bcd60e51b81526004018080602001828103825260298152602001806120826029913960400191505060405180910390fd5b92915050565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106aa5780601f1061067f576101008083540402835291602001916106aa565b60006001600160a01b038216610bf35760405162461bcd60e51b815260040180806020018281038252602a815260200180612058602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600460205260409020610b45906113ec565b610c1c611300565b6000546001600160a01b03908116911614610c7e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106aa5780601f1061067f576101008083540402835291602001916106aa565b6000610d42611300565b600e54604080516323b872dd60e01b81526001600160a01b0380851660048301523060248301526044820187905291519394509116916323b872dd9160648082019260009290919082900301818387803b158015610d9f57600080fd5b505af1158015610db3573d6000803e3d6000fd5b50505050610dc181836113f0565b5050565b6000610dcf611300565b9050806001600160a01b0316836001600160a01b03161415610e38576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b6001600160a01b03818116600081815260056020908152604080832094881680845294825291829020805460ff1916871515908117909155825190815291517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319281900390910190a3505050565b610eb7610eb1611300565b83611304565b610ef25760405162461bcd60e51b81526004018080602001828103825260318152602001806121506031913960400191505060405180910390fd5b610efe8484848461140d565b50505050565b6060610f0f826112e3565b610f4a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612100602f913960400191505060405180910390fd5b6000828152600d602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b5050600c5493945050505060026000196101006001841615020190911604611008579050610619565b8051156110d957600c8160405160200180838054600181600116156101000203166002900480156110705780601f1061104e576101008083540402835291820191611070565b820191906000526020600020905b81548152906001019060200180831161105c575b5050825160208401908083835b6020831061109c5780518252601f19909201916020918201910161107d565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610619565b600c6110e48461145f565b60405160200180838054600181600116156101000203166002900480156111425780601f10611120576101008083540402835291820191611142565b820191906000526020600020905b81548152906001019060200180831161112e575b5050825160208401908083835b6020831061116e5780518252601f19909201916020918201910161114f565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111e1611300565b6000546001600160a01b03908116911614611243576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166112885760405162461bcd60e51b8152600401808060200182810382526026815260200180611f7c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600061130f826112e3565b61134a5760405162461bcd60e51b815260040180806020018281038252602c815260200180611ff4602c913960400191505060405180910390fd5b600061135583610af1565b9050806001600160a01b0316846001600160a01b031614806113905750836001600160a01b0316611385846106b5565b6001600160a01b0316145b806113a057506113a081856111ab565b949350505050565b6113b3838383611523565b6113bd8382611667565b61089c828261175c565b610adf6113d382610af1565b8261179a565b8051610dc190600c906020840190611e22565b5490565b6113fa82826117e2565b611404828261175c565b610dc181611913565b6114188484846113a8565b61142484848484611957565b610efe5760405162461bcd60e51b8152600401808060200182810382526032815260200180611f4a6032913960400191505060405180910390fd5b60608161148457506040805180820190915260018152600360fc1b6020820152610619565b8160005b811561149c57600101600a82049150611488565b6060816040519080825280601f01601f1916602001820160405280156114c9576020820181803883390190505b50859350905060001982015b831561151a57600a840660300160f81b828280600190039350815181106114f857fe5b60200101906001600160f81b031916908160001a905350600a840493506114d5565b50949350505050565b826001600160a01b031661153682610af1565b6001600160a01b03161461157b5760405162461bcd60e51b81526004018080602001828103825260298152602001806120d76029913960400191505060405180910390fd5b6001600160a01b0382166115c05760405162461bcd60e51b8152600401808060200182810382526024815260200180611fa26024913960400191505060405180910390fd5b6115c981611b92565b6001600160a01b03831660009081526004602052604090206115ea90611bcd565b6001600160a01b038216600090815260046020526040902061160b90611be4565b60008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526006602052604081205461169190600163ffffffff611bed16565b60008381526007602052604090205490915080821461172c576001600160a01b03841660009081526006602052604081208054849081106116ce57fe5b906000526020600020015490508060066000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061170c57fe5b600091825260208083209091019290925591825260079052604090208190555b6001600160a01b0384166000908152600660205260409020805490611755906000198301611ea0565b5050505050565b6001600160a01b0390911660009081526006602081815260408084208054868652600784529185208290559282526001810183559183529091200155565b6117a48282611c4a565b6000818152600d60205260409020546002600019610100600184161502019091160415610dc1576000818152600d60205260408120610dc191611ec4565b6001600160a01b03821661183d576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611846816112e3565b15611898576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260026020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600490915290206118d790611be4565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600061196b846001600160a01b0316611c76565b611977575060016113a0565b600060606001600160a01b038616630a85bd0160e11b611995611300565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611a0e5781810151838201526020016119f6565b50505050905090810190601f168015611a3b5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611aa35780518252601f199092019160209182019101611a84565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611b05576040519150601f19603f3d011682016040523d82523d6000602084013e611b0a565b606091505b509150915081611b5b57805115611b245780518082602001fd5b60405162461bcd60e51b8152600401808060200182810382526032815260200180611f4a6032913960400191505060405180910390fd5b6000818060200190516020811015611b7257600080fd5b50516001600160e01b031916630a85bd0160e11b1493506113a092505050565b6000818152600360205260409020546001600160a01b031615610adf57600090815260036020526040902080546001600160a01b0319169055565b8054611be090600163ffffffff611bed16565b9055565b80546001019055565b600082821115611c44576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b611c548282611caf565b611c5e8282611667565b600081815260076020526040812055610dc181611d86565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906113a0575050151592915050565b816001600160a01b0316611cc282610af1565b6001600160a01b031614611d075760405162461bcd60e51b81526004018080602001828103825260258152602001806121ad6025913960400191505060405180910390fd5b611d1081611b92565b6001600160a01b0382166000908152600460205260409020611d3190611bcd565b60008181526002602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600854600090611d9d90600163ffffffff611bed16565b60008381526009602052604081205460088054939450909284908110611dbf57fe5b906000526020600020015490508060088381548110611dda57fe5b60009182526020808320909101929092558281526009909152604090208290556008805490611e0d906000198301611ea0565b50505060009182525060096020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611e6357805160ff1916838001178555611e90565b82800160010185558215611e90579182015b82811115611e90578251825591602001919060010190611e75565b50611e9c929150611f04565b5090565b81548183558181111561089c5760008381526020902061089c918101908301611f04565b50805460018160011615610100020316600290046000825580601f10611eea5750610adf565b601f016020900490600052602060002090810190610adf91905b6106b291905b80821115611e9c5760008155600101611f0a56fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373577261707065644b697474793a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776ea265627a7a723158208c982ad81cc91b2c745426ad43383a37f7e9053b665cbb2b0e7f1eaa62a7209d64736f6c63430005110032

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

00000000000000000000000006012c8cf97bead5deae237070f9587f8e7a266d

-----Decoded View---------------
Arg [0] : kittyContract (address): 0x06012c8cf97BEaD5deAe237070F9587f8E7A266d

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000006012c8cf97bead5deae237070f9587f8e7a266d


Deployed Bytecode Sourcemap

52081:1510:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52081:1510:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18765:133;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18765:133:0;-1:-1:-1;;;;;;18765:133:0;;:::i;:::-;;;;;;;;;;;;;;;;;;47134:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;47134:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23723:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23723:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;23723:204:0;;;;;;;;;;;;;;23001:429;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23001:429:0;;;;;;;;:::i;:::-;;37555:96;;;:::i;:::-;;;;;;;;;;;;;;;;25444:293;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25444:293:0;;;;;;;;;;;;;;;;;:::i;37162:234::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37162:234:0;;;;;;;;:::i;26399:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26399:134:0;;;;;;;;;;;;;;;;;:::i;53209:377::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53209:377:0;;:::i;37997:201::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37997:201:0;;:::i;52749:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52749:122:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;52749:122:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52749:122:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;52749:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52749:122:0;;-1:-1:-1;52749:122:0;;-1:-1:-1;;;;;52749:122:0:i;52542:136::-;;;:::i;22340:230::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22340:230:0;;:::i;50150:89::-;;;:::i;21903:211::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21903:211:0;-1:-1:-1;;;;;21903:211:0;;:::i;2912:142::-;;;:::i;2270:79::-;;;:::i;47332:87::-;;;:::i;52932:207::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52932:207:0;;:::i;24228:292::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24228:292:0;;;;;;;;;;:::i;27270:274::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;27270:274:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;27270:274:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27270:274:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;27270:274:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27270:274:0;;-1:-1:-1;27270:274:0;;-1:-1:-1;;;;;27270:274:0:i;48295:753::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48295:753:0;;:::i;24850:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24850:147:0;;;;;;;;;;:::i;3209:240::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3209:240:0;-1:-1:-1;;;;;3209:240:0;;:::i;18765:133::-;-1:-1:-1;;;;;;18857:33:0;;18833:4;18857:33;;;:20;:33;;;;;;;;18765:133;;;;:::o;47134:83::-;47204:5;47197:12;;;;;;;;-1:-1:-1;;47197:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47171:13;;47197:12;;47204:5;;47197:12;;47204:5;47197:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47134:83;;:::o;23723:204::-;23782:7;23810:16;23818:7;23810;:16::i;:::-;23802:73;;;;-1:-1:-1;;;23802:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23895:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23895:24:0;;23723:204::o;23001:429::-;23065:13;23081:16;23089:7;23081;:16::i;:::-;23065:32;;23124:5;-1:-1:-1;;;;;23118:11:0;:2;-1:-1:-1;;;;;23118:11:0;;;23110:57;;;;-1:-1:-1;;;23110:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23204:5;-1:-1:-1;;;;;23188:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23188:21:0;;:62;;;;23213:37;23230:5;23237:12;:10;:12::i;:::-;23213:16;:37::i;:::-;23180:154;;;;-1:-1:-1;;;23180:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23347:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23347:29:0;-1:-1:-1;;;;;23347:29:0;;;;;;;;;23394:28;;23347:24;;23394:28;;;;;;;23001:429;;;:::o;37555:96::-;37626:10;:17;37555:96;:::o;25444:293::-;25589:41;25608:12;:10;:12::i;:::-;25622:7;25589:18;:41::i;:::-;25581:103;;;;-1:-1:-1;;;25581:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25697:32;25711:4;25717:2;25721:7;25697:13;:32::i;:::-;25444:293;;;:::o;37162:234::-;37242:7;37278:16;37288:5;37278:9;:16::i;:::-;37270:5;:24;37262:80;;;;-1:-1:-1;;;37262:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37362:19:0;;;;;;:12;:19;;;;;:26;;37382:5;;37362:26;;;;;;;;;;;;;;37355:33;;37162:234;;;;:::o;26399:134::-;26486:39;26503:4;26509:2;26513:7;26486:39;;;;;;;;;;;;:16;:39::i;53209:377::-;53272:14;53289:12;:10;:12::i;:::-;53272:29;;53322:35;53341:6;53349:7;53322:18;:35::i;:::-;53314:94;;;;-1:-1:-1;;;53314:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53421:14;53427:7;53421:5;:14::i;:::-;53538;;:40;;;-1:-1:-1;;;53538:40:0;;-1:-1:-1;;;;;53538:40:0;;;;;;;;;;;;;;;:14;;;;;:23;;:40;;;;;:14;;:40;;;;;;;:14;;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;53538:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53538:40:0;;;;53209:377;;:::o;37997:201::-;38055:7;38091:13;:11;:13::i;:::-;38083:5;:21;38075:78;;;;-1:-1:-1;;;38075:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38173:10;38184:5;38173:17;;;;;;;;;;;;;;;;38166:24;;37997:201;;;:::o;52749:122::-;2492:12;:10;:12::i;:::-;2482:6;;-1:-1:-1;;;;;2482:6:0;;;:22;;;2474:67;;;;;-1:-1:-1;;;2474:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52843:20;52855:7;52843:11;:20::i;:::-;52749:122;:::o;52542:136::-;52655:14;;-1:-1:-1;;;;;52655:14:0;52542:136;:::o;22340:230::-;22395:7;22431:20;;;:11;:20;;;;;;-1:-1:-1;;;;;22431:20:0;22472:19;22464:73;;;;-1:-1:-1;;;22464:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22557:5;22340:230;-1:-1:-1;;22340:230:0:o;50150:89::-;50223:8;50216:15;;;;;;;;-1:-1:-1;;50216:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50190:13;;50216:15;;50223:8;;50216:15;;50223:8;50216:15;;;;;;;;;;;;;;;;;;;;;;;;21903:211;21958:7;-1:-1:-1;;;;;21986:19:0;;21978:74;;;;-1:-1:-1;;;21978:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22072:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;2912:142::-;2492:12;:10;:12::i;:::-;2482:6;;-1:-1:-1;;;;;2482:6:0;;;:22;;;2474:67;;;;;-1:-1:-1;;;2474:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3011:1;2995:6;;2974:40;;-1:-1:-1;;;;;2995:6:0;;;;2974:40;;3011:1;;2974:40;3044:1;3027:19;;-1:-1:-1;;;;;;3027:19:0;;;2912:142::o;2270:79::-;2308:7;2335:6;-1:-1:-1;;;;;2335:6:0;2270:79;:::o;47332:87::-;47404:7;47397:14;;;;;;;;-1:-1:-1;;47397:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47371:13;;47397:14;;47404:7;;47397:14;;47404:7;47397:14;;;;;;;;;;;;;;;;;;;;;;;;52932:207;52995:14;53012:12;:10;:12::i;:::-;53037:14;;:59;;;-1:-1:-1;;;53037:59:0;;-1:-1:-1;;;;;53037:59:0;;;;;;;53081:4;53037:59;;;;;;;;;;;;52995:29;;-1:-1:-1;53037:14:0;;;:27;;:59;;;;;:14;;:59;;;;;;;;:14;;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;53037:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53037:59:0;;;;53109:22;53115:6;53123:7;53109:5;:22::i;:::-;52932:207;;:::o;24228:292::-;24300:17;24320:12;:10;:12::i;:::-;24300:32;;24359:9;-1:-1:-1;;;;;24353:15:0;:2;-1:-1:-1;;;;;24353:15:0;;;24345:53;;;;;-1:-1:-1;;;24345:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24411:29:0;;;;;;;:18;:29;;;;;;;;:33;;;;;;;;;;;;;:44;;-1:-1:-1;;24411:44:0;;;;;;;;;;24473:39;;;;;;;;;;;;;;;;;24228:292;;;:::o;27270:274::-;27385:41;27404:12;:10;:12::i;:::-;27418:7;27385:18;:41::i;:::-;27377:103;;;;-1:-1:-1;;;27377:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27493:43;27511:4;27517:2;27521:7;27530:5;27493:17;:43::i;:::-;27270:274;;;;:::o;48295:753::-;48351:13;48385:16;48393:7;48385;:16::i;:::-;48377:76;;;;-1:-1:-1;;;48377:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48492:19;;;;:10;:19;;;;;;;;;48466:45;;;;;;-1:-1:-1;;48466:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;48492:19;48466:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48593:8:0;48587:22;48466:45;;-1:-1:-1;;;;48587:22:0;-1:-1:-1;;48587:22:0;;;;;;;;;;;48583:76;;48638:9;-1:-1:-1;48631:16:0;;48583:76;48765:23;;:27;48761:112;;48840:8;48850:9;48823:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48823:37:0;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;48823:37:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;48823:37:0;;;48809:52;;;;;48761:112;49007:8;49017:21;:7;:19;:21::i;:::-;48990:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48990:49:0;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;48990:49:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;48990::0;;;48976:64;;;48295:753;;;:::o;24850:147::-;-1:-1:-1;;;;;24954:25:0;;;24930:4;24954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24850:147::o;3209:240::-;2492:12;:10;:12::i;:::-;2482:6;;-1:-1:-1;;;;;2482:6:0;;;:22;;;2474:67;;;;;-1:-1:-1;;;2474:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3290:22:0;;3282:73;;;;-1:-1:-1;;;3282:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3394:6;;;3373:38;;-1:-1:-1;;;;;3373:38:0;;;;3394:6;;;3373:38;;;3424:6;:17;;-1:-1:-1;;;;;;3424:17:0;-1:-1:-1;;;;;3424:17:0;;;;;;;;;;3209:240::o;28739:123::-;28796:4;28820:20;;;:11;:20;;;;;;-1:-1:-1;;;;;28820:20:0;:34;;;28739:123::o;846:98::-;926:10;846:98;:::o;29232:337::-;29317:4;29342:16;29350:7;29342;:16::i;:::-;29334:73;;;;-1:-1:-1;;;29334:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29420:13;29436:16;29444:7;29436;:16::i;:::-;29420:32;;29484:5;-1:-1:-1;;;;;29473:16:0;:7;-1:-1:-1;;;;;29473:16:0;;:51;;;;29517:7;-1:-1:-1;;;;;29493:31:0;:20;29505:7;29493:11;:20::i;:::-;-1:-1:-1;;;;;29493:31:0;;29473:51;:87;;;;29528:32;29545:5;29552:7;29528:16;:32::i;:::-;29465:96;29232:337;-1:-1:-1;;;;29232:337:0:o;38582:245::-;38668:38;38688:4;38694:2;38698:7;38668:19;:38::i;:::-;38719:47;38752:4;38758:7;38719:32;:47::i;:::-;38779:40;38807:2;38811:7;38779:27;:40::i;32456:92::-;32508:32;32514:16;32522:7;32514;:16::i;:::-;32532:7;32508:5;:32::i;49813:90::-;49877:18;;;;:8;;:18;;;;;:::i;8996:114::-;9088:14;;8996:114::o;39092:202::-;39156:24;39168:2;39172:7;39156:11;:24::i;:::-;39193:40;39221:2;39225:7;39193:27;:40::i;:::-;39246;39278:7;39246:31;:40::i;28263:274::-;28373:32;28387:4;28393:2;28397:7;28373:13;:32::i;:::-;28426:48;28449:4;28455:2;28459:7;28468:5;28426:22;:48::i;:::-;28418:111;;;;-1:-1:-1;;;28418:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44674:568;44733:13;44763:10;44759:53;;-1:-1:-1;44790:10:0;;;;;;;;;;;;-1:-1:-1;;;44790:10:0;;;;;;44759:53;44839:5;44824:12;44882:78;44889:9;;44882:78;;44915:8;;44946:2;44938:10;;;;44882:78;;;44972:19;45004:6;44994:17;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;44994:17:0;87:34:-1;135:17;;-1:-1;44994:17:0;-1:-1:-1;45068:5:0;;-1:-1:-1;44972:39:0;-1:-1:-1;;;45038:10:0;;45086:115;45093:9;;45086:115;;45160:2;45153:4;:9;45148:2;:14;45137:27;;45119:6;45126:7;;;;;;;45119:15;;;;;;;;;;;:45;-1:-1:-1;;;;;45119:45:0;;;;;;;;-1:-1:-1;45187:2:0;45179:10;;;;45086:115;;;-1:-1:-1;45227:6:0;44674:568;-1:-1:-1;;;;44674:568:0:o;32934:459::-;33048:4;-1:-1:-1;;;;;33028:24:0;:16;33036:7;33028;:16::i;:::-;-1:-1:-1;;;;;33028:24:0;;33020:78;;;;-1:-1:-1;;;33020:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33117:16:0;;33109:65;;;;-1:-1:-1;;;33109:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33187:23;33202:7;33187:14;:23::i;:::-;-1:-1:-1;;;;;33223:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;33269:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;33315:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;33315:25:0;-1:-1:-1;;;;;33315:25:0;;;;;;;;;33358:27;;33315:20;;33358:27;;;;;;;32934:459;;;:::o;41769:1148::-;-1:-1:-1;;;;;42060:18:0;;42035:22;42060:18;;;:12;:18;;;;;:25;:32;;42090:1;42060:32;:29;:32;:::i;:::-;42103:18;42124:26;;;:17;:26;;;;;;42035:57;;-1:-1:-1;42257:28:0;;;42253:328;;-1:-1:-1;;;;;42324:18:0;;42302:19;42324:18;;;:12;:18;;;;;:34;;42343:14;;42324:34;;;;;;;;;;;;;;42302:56;;42408:11;42375:12;:18;42388:4;-1:-1:-1;;;;;42375:18:0;-1:-1:-1;;;;;42375:18:0;;;;;;;;;;;;42394:10;42375:30;;;;;;;;;;;;;;;;;;;:44;;;;42492:30;;;:17;:30;;;;;:43;;;42253:328;-1:-1:-1;;;;;42670:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;42670:27:0;;;:::i;:::-;;41769:1148;;;;:::o;40591:186::-;-1:-1:-1;;;;;40705:16:0;;;;;;;:12;:16;;;;;;;;:23;;40676:26;;;:17;:26;;;;;:52;;;40739:16;;;39:1:-1;23:18;;45:23;;40739:30:0;;;;;;;;40591:186::o;50541:248::-;50608:27;50620:5;50627:7;50608:11;:27::i;:::-;50695:19;;;;:10;:19;;;;;50689:33;;-1:-1:-1;;50689:33:0;;;;;;;;;;;:38;50685:97;;50751:19;;;;:10;:19;;;;;50744:26;;;:::i;31323:335::-;-1:-1:-1;;;;;31395:16:0;;31387:61;;;;;-1:-1:-1;;;31387:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31468:16;31476:7;31468;:16::i;:::-;31467:17;31459:58;;;;;-1:-1:-1;;;31459:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31530:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;31530:25:0;-1:-1:-1;;;;;31530:25:0;;;;;;;;31566:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;31617;;31642:7;;-1:-1:-1;;;;;31617:33:0;;;31634:1;;31617:33;;31634:1;;31617:33;31323:335;;:::o;40978:164::-;41082:10;:17;;41055:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;41110:24:0;;;;;;;40978:164::o;34045:1073::-;34158:4;34180:15;:2;-1:-1:-1;;;;;34180:13:0;;:15::i;:::-;34175:60;;-1:-1:-1;34219:4:0;34212:11;;34175:60;34308:12;34322:23;-1:-1:-1;;;;;34349:7:0;;-1:-1:-1;;;34454:12:0;:10;:12::i;:::-;34481:4;34500:7;34522:5;34357:181;;;;;;-1:-1:-1;;;;;34357:181:0;-1:-1:-1;;;;;34357:181:0;;;;;;-1:-1:-1;;;;;34357:181:0;-1:-1:-1;;;;;34357:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34357:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34357:181:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;34357:181:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;34357:181:0;;;179:29:-1;;;;160:49;;34349:190:0;;;34357:181;;34349:190;;-1:-1:-1;34349:190:0;;-1:-1:-1;25:18;-1:-1;34349:190:0;-1:-1:-1;34349:190:0;;-1:-1:-1;34349:190:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;34349:190:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;34307:232:0;;;;34557:7;34552:559;;34585:17;;:21;34581:386;;34753:10;34747:17;34814:15;34801:10;34797:2;34793:19;34786:44;34701:148;34891:60;;-1:-1:-1;;;34891:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34552:559;35001:13;35028:10;35017:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35017:32:0;-1:-1:-1;;;;;;35072:26:0;-1:-1:-1;;;35072:26:0;;-1:-1:-1;35064:35:0;;-1:-1:-1;;;35064:35:0;35286:175;35386:1;35350:24;;;:15;:24;;;;;;-1:-1:-1;;;;;35350:24:0;:38;35346:108;;35440:1;35405:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;35405:37:0;;;35286:175::o;9307:110::-;9388:14;;:21;;9407:1;9388:21;:18;:21;:::i;:::-;9371:38;;9307:110::o;9118:181::-;9272:19;;9290:1;9272:19;;;9118:181::o;5770:160::-;5828:7;5861:1;5856;:6;;5848:49;;;;;-1:-1:-1;;;5848:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5917:5:0;;;5770:160::o;39578:374::-;39645:27;39657:5;39664:7;39645:11;:27::i;:::-;39685:48;39718:5;39725:7;39685:32;:48::i;:::-;39885:1;39856:26;;;:17;:26;;;;;:30;39899:45;39874:7;39899:36;:45::i;10175:623::-;10235:4;10705:20;;10546:66;10747:23;;;;;;:42;;-1:-1:-1;;10774:15:0;;;10739:51;-1:-1:-1;;10175:623:0:o;31935:333::-;32030:5;-1:-1:-1;;;;;32010:25:0;:16;32018:7;32010;:16::i;:::-;-1:-1:-1;;;;;32010:25:0;;32002:75;;;;-1:-1:-1;;;32002:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32090:23;32105:7;32090:14;:23::i;:::-;-1:-1:-1;;;;;32126:24:0;;;;;;:17;:24;;;;;:36;;:34;:36::i;:::-;32204:1;32173:20;;;:11;:20;;;;;;:33;;-1:-1:-1;;;;;;32173:33:0;;;32224:36;32185:7;;32204:1;-1:-1:-1;;;;;32224:36:0;;;;;32204:1;;32224:36;31935:333;;:::o;43212:1082::-;43490:10;:17;43465:22;;43490:24;;43512:1;43490:24;:21;:24;:::i;:::-;43525:18;43546:24;;;:15;:24;;;;;;43919:10;:26;;43465:49;;-1:-1:-1;43546:24:0;;43465:49;;43919:26;;;;;;;;;;;;;;43897:48;;43983:11;43958:10;43969;43958:22;;;;;;;;;;;;;;;;;;;:36;;;;44063:28;;;:15;:28;;;;;;:41;;;44228:10;:19;;;;;-1:-1:-1;;44228:19:0;;;:::i;:::-;-1:-1:-1;;;44285:1:0;44258:24;;;-1:-1:-1;44258:15:0;:24;;;;;:28;43212:1082::o;52081:1510::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52081:1510:0;;;-1:-1:-1;52081:1510:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://8c982ad81cc91b2c745426ad43383a37f7e9053b665cbb2b0e7f1eaa62a7209d
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.