ETH Price: $2,388.13 (-1.08%)

Token

TerraVirtuaNFT (TVNFT)
 

Overview

Max Total Supply

1,530 TVNFT

Holders

400

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 TVNFT
0x9f0004e85aB1a65d569cBd9a59A46ef0c84Cf470
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Terra Virtua is an innovative AR and VR platform which allows you to display, share and interact with your digital collectibles.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OpenSeaAsset

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-12-04
*/

/**
 *Submitted for verification at Etherscan.io on 2019-05-15
*/

// File: contracts/Strings.sol

pragma solidity ^0.5.2;

library Strings {
  // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
  function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) {
    bytes memory _ba = bytes(_a);
    bytes memory _bb = bytes(_b);
    bytes memory _bc = bytes(_c);
    bytes memory _bd = bytes(_d);
    bytes memory _be = bytes(_e); 
    string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
    bytes memory babcde = bytes(abcde);
    uint k = 0;
    for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
    for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
    for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
    for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
    for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i];
    return string(babcde);
  }

  function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) {
    return strConcat(_a, _b, _c, _d, "");
  }

  function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
    return strConcat(_a, _b, _c, "", "");
  }

  function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
    return strConcat(_a, _b, "", "", "");
  }

  function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
    if (_i == 0) {
      return "0";
    }
    uint j = _i;
    uint len;
    while (j != 0) {
      len++;
      j /= 10;
    }
    bytes memory bstr = new bytes(len);
    uint k = len - 1;
    while (_i != 0) {
      bstr[k--] = byte(uint8(48 + _i % 10));
      _i /= 10;
    }
    return string(bstr);
  }

  function fromAddress(address addr) internal pure returns(string memory) {
    bytes20 addrBytes = bytes20(addr);
    bytes16 hexAlphabet = "0123456789abcdef";
    bytes memory result = new bytes(42);
    result[0] = '0';
    result[1] = 'x';
    for (uint i = 0; i < 20; i++) {
      result[i * 2 + 2] = hexAlphabet[uint8(addrBytes[i] >> 4)];
      result[i * 2 + 3] = hexAlphabet[uint8(addrBytes[i] & 0x0f)];
    }
    return string(result);
  }
}

// File: openzeppelin-solidity/contracts/introspection/IERC165.sol

pragma solidity ^0.5.2;

/**
 * @title IERC165
 * @dev https://eips.ethereum.org/EIPS/eip-165
 */
interface IERC165 {
    /**
     * @notice Query if a contract implements an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.5.2;


/**
 * @title ERC721 Non-Fungible Token Standard basic interface
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) public view returns (uint256 balance);
    function ownerOf(uint256 tokenId) public view returns (address owner);

    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);

    function transferFrom(address from, address to, uint256 tokenId) public;
    function safeTransferFrom(address from, address to, uint256 tokenId) public;

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.5.2;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a `safeTransfer`. 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 memory data)
    public returns (bytes4);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.2;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/utils/Address.sol

pragma solidity ^0.5.2;

/**
 * Utility library of inline functions on addresses
 */
library Address {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

// File: openzeppelin-solidity/contracts/drafts/Counters.sol

pragma solidity ^0.5.2;


/**
 * @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 {
        counter._value += 1;
    }

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

// File: openzeppelin-solidity/contracts/introspection/ERC165.sol

pragma solidity ^0.5.2;


/**
 * @title ERC165
 * @author Matt Condon (@shrugs)
 * @dev Implements ERC165 using a lookup table.
 */
contract ERC165 is IERC165 {
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
    /*
     * 0x01ffc9a7 ===
     *     bytes4(keccak256('supportsInterface(bytes4)'))
     */

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

    /**
     * @dev A contract implementing SupportsInterfaceWithLookup
     * implement ERC165 itself
     */
    constructor () internal {
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev implement supportsInterface(bytes4) using a lookup table
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev internal method for registering an interface
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff);
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.5.2;







/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is 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 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
    /*
     * 0x80ac58cd ===
     *     bytes4(keccak256('balanceOf(address)')) ^
     *     bytes4(keccak256('ownerOf(uint256)')) ^
     *     bytes4(keccak256('approve(address,uint256)')) ^
     *     bytes4(keccak256('getApproved(uint256)')) ^
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) ^
     *     bytes4(keccak256('isApprovedForAll(address,address)')) ^
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) ^
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) ^
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)'))
     */

    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));
        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));
        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);
        require(msg.sender == owner || isApprovedForAll(owner, msg.sender));

        _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));
        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 {
        require(to != msg.sender);
        _operatorApprovals[msg.sender][to] = approved;
        emit ApprovalForAll(msg.sender, 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 {
        require(_isApprovedOrOwner(msg.sender, tokenId));

        _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 `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 `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) public {
        transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data));
    }

    /**
     * @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) {
        address owner = _tokenOwner[tokenId];
        return owner != 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) {
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @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));
        require(!_exists(tokenId));

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

        _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);
        require(to != address(0));

        _clearApproval(tokenId);

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

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke `onERC721Received` on a target address
     * The call is not executed if the target address is not a contract
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data);
        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: openzeppelin-solidity/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.5.2;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Enumerable.sol

pragma solidity ^0.5.2;




/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is ERC165, 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 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
    /*
     * 0x780e9d63 ===
     *     bytes4(keccak256('totalSupply()')) ^
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) ^
     *     bytes4(keccak256('tokenByIndex(uint256)'))
     */

    /**
     * @dev Constructor function
     */
    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));
        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());
        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 _burn(uint256) 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: openzeppelin-solidity/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.5.2;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Metadata.sol

pragma solidity ^0.5.2;




contract ERC721Metadata is ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    /**
     * @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() external view returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns an URI for a given token ID
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId));
        return _tokenURIs[tokenId];
    }

    /**
     * @dev Internal function to set the token URI for a given token
     * Reverts if the token ID does not exist
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId));
        _tokenURIs[tokenId] = uri;
    }

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

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


//=======================================

pragma solidity ^0.5.2;

/*
 * @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: openzeppelin-solidity/contracts/token/ERC721/ERC721Burnable.sol
pragma solidity ^0.5.2;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns a specific ERC721 token.
     * @param tokenId uint256 id of the ERC721 token to be burned.
     */
    function burn(uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

//=====================================================

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Full.sol

pragma solidity ^0.5.2;




/**
 * @title Full ERC721 Token
 * This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata, ERC721Burnable {
    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.2;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice 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 Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/TradeableERC721Token.sol

pragma solidity ^0.5.2;




contract OwnableDelegateProxy { }

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title TradeableERC721Token
 * TradeableERC721Token - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract TradeableERC721Token is ERC721Full, Ownable {
  using Strings for string;

  address proxyRegistryAddress;
  uint256 private _currentTokenId = 0;

  constructor(string memory _name, string memory _symbol, address _proxyRegistryAddress) ERC721Full(_name, _symbol) public {
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  /**
    * @dev Mints a token to an address.
    * @param _to address of the future owner of the token
    */
  function mintTo(address _to) public onlyOwner {
    uint256 newTokenId = _getNextTokenId();
    _mint(_to, newTokenId);
    _incrementTokenId();
  }

   /**
    * @dev Mints a token to an address in batch.
    * @param _to  address of the future owner of the token
    * @param _count number of items to minted
    * @param _startID starting id of the token to be minted
    */

  function mintTokenBatch(address _to, uint256 _count, uint256 _startID) public onlyOwner {
    require(_count > 0,"count can't be zero");
        for (uint256 i = 0; i < _count; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(_to, newTokenId);
            _incrementTokenId();

            string memory _uri = Strings.strConcat(
                baseTokenURI(),
                Strings.uint2str(_startID));
            _setTokenURI(newTokenId, _uri);
            _startID = _startID+1;
        }
  }
    
    /**
    * @dev Mints a token to an address with a tokenURI.
    * @param _to  address of the future owner of the token
    * @param _uri metadata link to be attached with nft
    */
  
  function mintWithTokenURI(address _to, string memory _uri) public onlyOwner {
    uint256 newTokenId = _getNextTokenId();
    _mint(_to, newTokenId);
    _incrementTokenId();
    _setTokenURI(newTokenId, _uri);
  }
  
    /**
     * @dev public function to set the token URI for a given token
     * Reverts if the token ID does not exist
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function setTokenURI(uint256 tokenId, string memory uri) public onlyOwner {
        _setTokenURI(tokenId, uri);
    }
  /**
    * @dev calculates the next token ID based on value of _currentTokenId 
    * @return uint256 for the next token ID
    */
  function _getNextTokenId() private view returns (uint256) {
    return _currentTokenId.add(1);
  }

  /**
    * @dev increments the value of _currentTokenId 
    */
  function _incrementTokenId() private  {
    _currentTokenId++;
  }

  function baseTokenURI() public view returns (string memory) {
    return "";
  }
// customizing tokenURI for TV so if have provided independent metadata of any NFT could be returned first

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
      if(bytes(_tokenURIs[_tokenId]).length != 0){
          return _tokenURIs[_tokenId];
      }else{
          return Strings.strConcat(
        baseTokenURI(),
        Strings.uint2str(_tokenId)
    );
      }
    
  }

  /**
   * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
   */
  function isApprovedForAll(
    address owner,
    address operator
  )
    public
    view
    returns (bool)
  {
    // Whitelist OpenSea proxy contract for easy trading.
    ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(owner)) == operator) {
        return true;
    }

    return super.isApprovedForAll(owner, operator);
  }
}

// File: contracts/OpenSeaAsset.sol

pragma solidity ^0.5.2;



/**
 * @title OpenSea Asset
 * OpenSea Asset - A contract for easily creating custom assets on OpenSea. 
 */
contract OpenSeaAsset is TradeableERC721Token {
  string private _baseTokenURI;

  constructor(
    string memory _name,
    string memory _symbol,
    address _proxyRegistryAddress,
    string memory baseURI
  ) TradeableERC721Token(_name, _symbol, _proxyRegistryAddress) public {
    _baseTokenURI = baseURI;
  }

  function openSeaVersion() public pure returns (string memory) {
    return "1.2.0";
  }

  function baseTokenURI() public view returns (string memory) {
    return _baseTokenURI;
  }

  function setBaseTokenURI(string memory uri) public onlyOwner {
    _baseTokenURI = uri;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"baseURI","type":"string"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","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":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_startID","type":"uint256"}],"name":"mintTokenBatch","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"name":"mintWithTokenURI","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":"openSeaVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","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":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","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"}]

60806040526000600e553480156200001657600080fd5b506040516200353b3803806200353b833981810160405260808110156200003c57600080fd5b81019080805160405193929190846401000000008211156200005d57600080fd5b838201915060208201858111156200007457600080fd5b82518660018202830111640100000000821117156200009257600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c8578082015181840152602081019050620000ab565b50505050905090810190601f168015620000f65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011a57600080fd5b838201915060208201858111156200013157600080fd5b82518660018202830111640100000000821117156200014f57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018557808201518184015260208101905062000168565b50505050905090810190601f168015620001b35780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080516040519392919084640100000000821115620001e157600080fd5b83820191506020820185811115620001f857600080fd5b82518660018202830111640100000000821117156200021657600080fd5b8083526020830192505050908051906020019080838360005b838110156200024c5780820151818401526020810190506200022f565b50505050905090810190601f1680156200027a5780820380516001836020036101000a031916815260200191505b5060405250505083838382828181620002a06301ffc9a760e01b6200044360201b60201c565b620002b86380ac58cd60e01b6200044360201b60201c565b620002d063780e9d6360e01b6200044360201b60201c565b8160099080519060200190620002e8929190620004e3565b5080600a908051906020019062000301929190620004e3565b506200031a635b5e139f60e01b6200044360201b60201c565b5050505033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505080600f908051906020019062000438929190620004e3565b505050505062000592565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200047757600080fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052657805160ff191683800117855562000557565b8280016001018555821562000557579182015b828111156200055657825182559160200191906001019062000539565b5b5090506200056691906200056a565b5090565b6200058f91905b808211156200058b57600081600090555060010162000571565b5090565b90565b612f9980620005a26000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80634f6ccce7116100f957806395d89b4111610097578063c87b56dd11610071578063c87b56dd14610bc7578063d547cfb714610c6e578063e985e9c514610cf1578063f2fde38b14610d6d576101c4565b806395d89b41146109ef578063a22cb46514610a72578063b88d4fde14610ac2576101c4565b8063715018a6116100d3578063715018a614610935578063755edd171461093f5780638da5cb5b146109835780638f32d59b146109cd576101c4565b80634f6ccce71461082d5780636352211e1461086f57806370a08231146108dd576101c4565b806323b872dd116101665780634060b25e116101405780634060b25e1461063357806342842e0e146106b657806342966c681461072457806345c1778214610752576101c4565b806323b872dd146104a85780632f745c591461051657806330176e1314610578576101c4565b8063095ea7b3116101a2578063095ea7b31461031f578063162094c41461036d57806317a66d941461043257806318160ddd1461048a576101c4565b806301ffc9a7146101c957806306fdde031461022e578063081812fc146102b1575b600080fd5b610214600480360360208110156101df57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610db1565b604051808215151515815260200191505060405180910390f35b610236610e18565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027657808201518184015260208101905061025b565b50505050905090810190601f1680156102a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102dd600480360360208110156102c757600080fd5b8101908080359060200190929190505050610eba565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61036b6004803603604081101561033557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f09565b005b6104306004803603604081101561038357600080fd5b8101908080359060200190929190803590602001906401000000008111156103aa57600080fd5b8201836020820111156103bc57600080fd5b803590602001918460018302840111640100000000831117156103de57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061104a565b005b6104886004803603606081101561044857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611069565b005b61049261115e565b6040518082815260200191505060405180910390f35b610514600480360360608110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116b565b005b6105626004803603604081101561052c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061118e565b6040518082815260200191505060405180910390f35b6106316004803603602081101561058e57600080fd5b81019080803590602001906401000000008111156105ab57600080fd5b8201836020820111156105bd57600080fd5b803590602001918460018302840111640100000000831117156105df57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611201565b005b61063b61122c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561067b578082015181840152602081019050610660565b50505050905090810190601f1680156106a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610722600480360360608110156106cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611269565b005b6107506004803603602081101561073a57600080fd5b8101908080359060200190929190505050611289565b005b61082b6004803603604081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156107a557600080fd5b8201836020820111156107b757600080fd5b803590602001918460018302840111640100000000831117156107d957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506112fb565b005b6108596004803603602081101561084357600080fd5b8101908080359060200190929190505050611339565b6040518082815260200191505060405180910390f35b61089b6004803603602081101561088557600080fd5b810190808035906020019092919050505061136d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61091f600480360360208110156108f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b6040518082815260200191505060405180910390f35b61093d611472565b005b6109816004803603602081101561095557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611544565b005b61098b611577565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109d56115a1565b604051808215151515815260200191505060405180910390f35b6109f76115f9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a37578082015181840152602081019050610a1c565b50505050905090810190601f168015610a645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ac060048036036040811015610a8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061169b565b005b610bc560048036036080811015610ad857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b3f57600080fd5b820183602082011115610b5157600080fd5b80359060200191846001830284011164010000000083111715610b7357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506117d5565b005b610bf360048036036020811015610bdd57600080fd5b81019080803590602001909291905050506117fb565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c33578082015181840152602081019050610c18565b50505050905090810190601f168015610c605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c76611900565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cb6578082015181840152602081019050610c9b565b50505050905090810190601f168015610ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d5360048036036040811015610d0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119a2565b604051808215151515815260200191505060405180910390f35b610daf60048036036020811015610d8357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ad3565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b5050505050905090565b6000610ec582611af0565b610ece57600080fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f148261136d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f4f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f8f5750610f8e81336119a2565b5b610f9857600080fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6110526115a1565b61105b57600080fd5b6110658282611b62565b5050565b6110716115a1565b61107a57600080fd5b600082116110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f636f756e742063616e2774206265207a65726f0000000000000000000000000081525060200191505060405180910390fd5b60008090505b82811015611158576000611108611ba0565b90506111148582611bbd565b61111c611bde565b6060611137611129611900565b61113286611bf2565b611d1f565b90506111438282611b62565b600184019350505080806001019150506110f6565b50505050565b6000600780549050905090565b6111753382611d63565b61117e57600080fd5b611189838383611df8565b505050565b6000611199836113e9565b82106111a457600080fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106111ee57fe5b9060005260206000200154905092915050565b6112096115a1565b61121257600080fd5b80600f9080519060200190611228929190612e1b565b5050565b60606040518060400160405280600581526020017f312e322e30000000000000000000000000000000000000000000000000000000815250905090565b611284838383604051806020016040528060008152506117d5565b505050565b61129a611294611e1c565b82611d63565b6112ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612f356030913960400191505060405180910390fd5b6112f881611e24565b50565b6113036115a1565b61130c57600080fd5b6000611316611ba0565b90506113228382611bbd565b61132a611bde565b6113348183611b62565b505050565b600061134361115e565b821061134e57600080fd5b6007828154811061135b57fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e057600080fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142457600080fd5b61146b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e39565b9050919050565b61147a6115a1565b61148357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61154c6115a1565b61155557600080fd5b600061155f611ba0565b905061156b8282611bbd565b611573611bde565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116915780601f1061166657610100808354040283529160200191611691565b820191906000526020600020905b81548152906001019060200180831161167457829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d457600080fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6117e084848461116b565b6117ec84848484611e47565b6117f557600080fd5b50505050565b60606000600b6000848152602001908152602001600020805460018160011615610100020316600290049050146118df57600b60008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b505050505090506118fb565b6118f86118ea611900565b6118f384611bf2565b611d1f565b90505b919050565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119985780601f1061196d57610100808354040283529160200191611998565b820191906000526020600020905b81548152906001019060200180831161197b57829003601f168201915b5050505050905090565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a5e57600080fd5b505afa158015611a72573d6000803e3d6000fd5b505050506040513d6020811015611a8857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415611abf576001915050611acd565b611ac98484612030565b9150505b92915050565b611adb6115a1565b611ae457600080fd5b611aed816120c4565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b611b6b82611af0565b611b7457600080fd5b80600b60008481526020019081526020016000209080519060200190611b9b929190612e1b565b505050565b6000611bb86001600e546121be90919063ffffffff16565b905090565b611bc782826121dd565b611bd18282612323565b611bda816123ea565b5050565b600e60008154809291906001019190505550565b60606000821415611c3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d1a565b600082905060005b60008214611c64578080600101915050600a8281611c5c57fe5b049150611c42565b6060816040519080825280601f01601f191660200182016040528015611c995781602001600182028038833980820191505090505b50905060006001830390505b60008614611d1257600a8681611cb757fe5b0660300160f81b82828060019003935081518110611cd157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681611d0a57fe5b049550611ca5565b819450505050505b919050565b6060611d5b8383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250612436565b905092915050565b600080611d6f8361136d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dde57508373ffffffffffffffffffffffffffffffffffffffff16611dc684610eba565b73ffffffffffffffffffffffffffffffffffffffff16145b80611def5750611dee81856119a2565b5b91505092915050565b611e038383836126fc565b611e0d83826128bf565b611e178282612323565b505050565b600033905090565b611e36611e308261136d565b82612a5d565b50565b600081600001549050919050565b6000611e688473ffffffffffffffffffffffffffffffffffffffff16612aba565b611e755760019050612028565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611f50578082015181840152602081019050611f35565b50505050905090810190601f168015611f7d5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611f9f57600080fd5b505af1158015611fb3573d6000803e3d6000fd5b505050506040513d6020811015611fc957600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120fe57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156121d357600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561221757600080fd5b61222081611af0565b1561222a57600080fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506122c3600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612acd565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156124925781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015612513578881815181106124ba57fe5b602001015160f81c60f81b8383806001019450815181106124d757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506124a5565b5060008090505b87518110156125885787818151811061252f57fe5b602001015160f81c60f81b83838060010194508151811061254c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061251a565b5060008090505b86518110156125fd578681815181106125a457fe5b602001015160f81c60f81b8383806001019450815181106125c157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061258f565b5060008090505b85518110156126725785818151811061261957fe5b602001015160f81c60f81b83838060010194508151811061263657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050612604565b5060008090505b84518110156126e75784818151811061268e57fe5b602001015160f81c60f81b8383806001019450815181106126ab57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050612679565b50819850505050505050505095945050505050565b8273ffffffffffffffffffffffffffffffffffffffff1661271c8261136d565b73ffffffffffffffffffffffffffffffffffffffff161461273c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277657600080fd5b61277f81612ae3565b6127c6600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba1565b61280d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612acd565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006129176001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612bc490919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114612a04576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838154811061298457fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106129dc57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612a569190612e9b565b5050505050565b612a678282612be4565b6000600b600083815260200190815260200160002080546001816001161561010002031660029004905014612ab657600b60008281526020019081526020016000206000612ab59190612ec7565b5b5050565b600080823b905060008111915050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9e5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b612bb960018260000154612bc490919063ffffffff16565b816000018190555050565b600082821115612bd357600080fd5b600082840390508091505092915050565b612bee8282612c1e565b612bf882826128bf565b60006006600083815260200190815260200160002081905550612c1a81612d61565b5050565b8173ffffffffffffffffffffffffffffffffffffffff16612c3e8261136d565b73ffffffffffffffffffffffffffffffffffffffff1614612c5e57600080fd5b612c6781612ae3565b612cae600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba1565b60006001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612d7c6001600780549050612bc490919063ffffffff16565b9050600060086000848152602001908152602001600020549050600060078381548110612da557fe5b906000526020600020015490508060078381548110612dc057fe5b90600052602060002001819055508160086000838152602001908152602001600020819055506007805480919060019003612dfb9190612e9b565b506000600860008681526020019081526020016000208190555050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612e5c57805160ff1916838001178555612e8a565b82800160010185558215612e8a579182015b82811115612e89578251825591602001919060010190612e6e565b5b509050612e979190612f0f565b5090565b815481835581811115612ec257818360005260206000209182019101612ec19190612f0f565b5b505050565b50805460018160011615610100020316600290046000825580601f10612eed5750612f0c565b601f016020900490600052602060002090810190612f0b9190612f0f565b5b50565b612f3191905b80821115612f2d576000816000905550600101612f15565b5090565b9056fe4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820f500b070ac440676b87b6187c0a36e8421c4b0dec71f46e7dbf6bf61ce21917d64736f6c634300050c0032000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000e54657272615669727475614e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000554564e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f74726164656170692e74657272617669727475612e696f2f6974656d2f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80634f6ccce7116100f957806395d89b4111610097578063c87b56dd11610071578063c87b56dd14610bc7578063d547cfb714610c6e578063e985e9c514610cf1578063f2fde38b14610d6d576101c4565b806395d89b41146109ef578063a22cb46514610a72578063b88d4fde14610ac2576101c4565b8063715018a6116100d3578063715018a614610935578063755edd171461093f5780638da5cb5b146109835780638f32d59b146109cd576101c4565b80634f6ccce71461082d5780636352211e1461086f57806370a08231146108dd576101c4565b806323b872dd116101665780634060b25e116101405780634060b25e1461063357806342842e0e146106b657806342966c681461072457806345c1778214610752576101c4565b806323b872dd146104a85780632f745c591461051657806330176e1314610578576101c4565b8063095ea7b3116101a2578063095ea7b31461031f578063162094c41461036d57806317a66d941461043257806318160ddd1461048a576101c4565b806301ffc9a7146101c957806306fdde031461022e578063081812fc146102b1575b600080fd5b610214600480360360208110156101df57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610db1565b604051808215151515815260200191505060405180910390f35b610236610e18565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027657808201518184015260208101905061025b565b50505050905090810190601f1680156102a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102dd600480360360208110156102c757600080fd5b8101908080359060200190929190505050610eba565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61036b6004803603604081101561033557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f09565b005b6104306004803603604081101561038357600080fd5b8101908080359060200190929190803590602001906401000000008111156103aa57600080fd5b8201836020820111156103bc57600080fd5b803590602001918460018302840111640100000000831117156103de57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061104a565b005b6104886004803603606081101561044857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611069565b005b61049261115e565b6040518082815260200191505060405180910390f35b610514600480360360608110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116b565b005b6105626004803603604081101561052c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061118e565b6040518082815260200191505060405180910390f35b6106316004803603602081101561058e57600080fd5b81019080803590602001906401000000008111156105ab57600080fd5b8201836020820111156105bd57600080fd5b803590602001918460018302840111640100000000831117156105df57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611201565b005b61063b61122c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561067b578082015181840152602081019050610660565b50505050905090810190601f1680156106a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610722600480360360608110156106cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611269565b005b6107506004803603602081101561073a57600080fd5b8101908080359060200190929190505050611289565b005b61082b6004803603604081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156107a557600080fd5b8201836020820111156107b757600080fd5b803590602001918460018302840111640100000000831117156107d957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506112fb565b005b6108596004803603602081101561084357600080fd5b8101908080359060200190929190505050611339565b6040518082815260200191505060405180910390f35b61089b6004803603602081101561088557600080fd5b810190808035906020019092919050505061136d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61091f600480360360208110156108f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b6040518082815260200191505060405180910390f35b61093d611472565b005b6109816004803603602081101561095557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611544565b005b61098b611577565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109d56115a1565b604051808215151515815260200191505060405180910390f35b6109f76115f9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a37578082015181840152602081019050610a1c565b50505050905090810190601f168015610a645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ac060048036036040811015610a8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061169b565b005b610bc560048036036080811015610ad857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b3f57600080fd5b820183602082011115610b5157600080fd5b80359060200191846001830284011164010000000083111715610b7357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506117d5565b005b610bf360048036036020811015610bdd57600080fd5b81019080803590602001909291905050506117fb565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c33578082015181840152602081019050610c18565b50505050905090810190601f168015610c605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c76611900565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cb6578082015181840152602081019050610c9b565b50505050905090810190601f168015610ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d5360048036036040811015610d0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119a2565b604051808215151515815260200191505060405180910390f35b610daf60048036036020811015610d8357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ad3565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b5050505050905090565b6000610ec582611af0565b610ece57600080fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f148261136d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f4f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f8f5750610f8e81336119a2565b5b610f9857600080fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6110526115a1565b61105b57600080fd5b6110658282611b62565b5050565b6110716115a1565b61107a57600080fd5b600082116110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f636f756e742063616e2774206265207a65726f0000000000000000000000000081525060200191505060405180910390fd5b60008090505b82811015611158576000611108611ba0565b90506111148582611bbd565b61111c611bde565b6060611137611129611900565b61113286611bf2565b611d1f565b90506111438282611b62565b600184019350505080806001019150506110f6565b50505050565b6000600780549050905090565b6111753382611d63565b61117e57600080fd5b611189838383611df8565b505050565b6000611199836113e9565b82106111a457600080fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106111ee57fe5b9060005260206000200154905092915050565b6112096115a1565b61121257600080fd5b80600f9080519060200190611228929190612e1b565b5050565b60606040518060400160405280600581526020017f312e322e30000000000000000000000000000000000000000000000000000000815250905090565b611284838383604051806020016040528060008152506117d5565b505050565b61129a611294611e1c565b82611d63565b6112ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612f356030913960400191505060405180910390fd5b6112f881611e24565b50565b6113036115a1565b61130c57600080fd5b6000611316611ba0565b90506113228382611bbd565b61132a611bde565b6113348183611b62565b505050565b600061134361115e565b821061134e57600080fd5b6007828154811061135b57fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e057600080fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142457600080fd5b61146b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e39565b9050919050565b61147a6115a1565b61148357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61154c6115a1565b61155557600080fd5b600061155f611ba0565b905061156b8282611bbd565b611573611bde565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116915780601f1061166657610100808354040283529160200191611691565b820191906000526020600020905b81548152906001019060200180831161167457829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d457600080fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6117e084848461116b565b6117ec84848484611e47565b6117f557600080fd5b50505050565b60606000600b6000848152602001908152602001600020805460018160011615610100020316600290049050146118df57600b60008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b505050505090506118fb565b6118f86118ea611900565b6118f384611bf2565b611d1f565b90505b919050565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119985780601f1061196d57610100808354040283529160200191611998565b820191906000526020600020905b81548152906001019060200180831161197b57829003601f168201915b5050505050905090565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a5e57600080fd5b505afa158015611a72573d6000803e3d6000fd5b505050506040513d6020811015611a8857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415611abf576001915050611acd565b611ac98484612030565b9150505b92915050565b611adb6115a1565b611ae457600080fd5b611aed816120c4565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b611b6b82611af0565b611b7457600080fd5b80600b60008481526020019081526020016000209080519060200190611b9b929190612e1b565b505050565b6000611bb86001600e546121be90919063ffffffff16565b905090565b611bc782826121dd565b611bd18282612323565b611bda816123ea565b5050565b600e60008154809291906001019190505550565b60606000821415611c3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d1a565b600082905060005b60008214611c64578080600101915050600a8281611c5c57fe5b049150611c42565b6060816040519080825280601f01601f191660200182016040528015611c995781602001600182028038833980820191505090505b50905060006001830390505b60008614611d1257600a8681611cb757fe5b0660300160f81b82828060019003935081518110611cd157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681611d0a57fe5b049550611ca5565b819450505050505b919050565b6060611d5b8383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250612436565b905092915050565b600080611d6f8361136d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dde57508373ffffffffffffffffffffffffffffffffffffffff16611dc684610eba565b73ffffffffffffffffffffffffffffffffffffffff16145b80611def5750611dee81856119a2565b5b91505092915050565b611e038383836126fc565b611e0d83826128bf565b611e178282612323565b505050565b600033905090565b611e36611e308261136d565b82612a5d565b50565b600081600001549050919050565b6000611e688473ffffffffffffffffffffffffffffffffffffffff16612aba565b611e755760019050612028565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611f50578082015181840152602081019050611f35565b50505050905090810190601f168015611f7d5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611f9f57600080fd5b505af1158015611fb3573d6000803e3d6000fd5b505050506040513d6020811015611fc957600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120fe57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156121d357600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561221757600080fd5b61222081611af0565b1561222a57600080fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506122c3600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612acd565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156124925781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015612513578881815181106124ba57fe5b602001015160f81c60f81b8383806001019450815181106124d757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506124a5565b5060008090505b87518110156125885787818151811061252f57fe5b602001015160f81c60f81b83838060010194508151811061254c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061251a565b5060008090505b86518110156125fd578681815181106125a457fe5b602001015160f81c60f81b8383806001019450815181106125c157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061258f565b5060008090505b85518110156126725785818151811061261957fe5b602001015160f81c60f81b83838060010194508151811061263657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050612604565b5060008090505b84518110156126e75784818151811061268e57fe5b602001015160f81c60f81b8383806001019450815181106126ab57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050612679565b50819850505050505050505095945050505050565b8273ffffffffffffffffffffffffffffffffffffffff1661271c8261136d565b73ffffffffffffffffffffffffffffffffffffffff161461273c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277657600080fd5b61277f81612ae3565b6127c6600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba1565b61280d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612acd565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006129176001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612bc490919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114612a04576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838154811061298457fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106129dc57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612a569190612e9b565b5050505050565b612a678282612be4565b6000600b600083815260200190815260200160002080546001816001161561010002031660029004905014612ab657600b60008281526020019081526020016000206000612ab59190612ec7565b5b5050565b600080823b905060008111915050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9e5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b612bb960018260000154612bc490919063ffffffff16565b816000018190555050565b600082821115612bd357600080fd5b600082840390508091505092915050565b612bee8282612c1e565b612bf882826128bf565b60006006600083815260200190815260200160002081905550612c1a81612d61565b5050565b8173ffffffffffffffffffffffffffffffffffffffff16612c3e8261136d565b73ffffffffffffffffffffffffffffffffffffffff1614612c5e57600080fd5b612c6781612ae3565b612cae600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba1565b60006001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612d7c6001600780549050612bc490919063ffffffff16565b9050600060086000848152602001908152602001600020549050600060078381548110612da557fe5b906000526020600020015490508060078381548110612dc057fe5b90600052602060002001819055508160086000838152602001908152602001600020819055506007805480919060019003612dfb9190612e9b565b506000600860008681526020019081526020016000208190555050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612e5c57805160ff1916838001178555612e8a565b82800160010185558215612e8a579182015b82811115612e89578251825591602001919060010190612e6e565b5b509050612e979190612f0f565b5090565b815481835581811115612ec257818360005260206000209182019101612ec19190612f0f565b5b505050565b50805460018160011615610100020316600290046000825580601f10612eed5750612f0c565b601f016020900490600052602060002090810190612f0b9190612f0f565b5b50565b612f3191905b80821115612f2d576000816000905550600101612f15565b5090565b9056fe4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820f500b070ac440676b87b6187c0a36e8421c4b0dec71f46e7dbf6bf61ce21917d64736f6c634300050c0032

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000e54657272615669727475614e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000554564e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f74726164656170692e74657272617669727475612e696f2f6974656d2f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TerraVirtuaNFT
Arg [1] : _symbol (string): TVNFT
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [3] : baseURI (string): https://tradeapi.terravirtua.io/item/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 54657272615669727475614e4654000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 54564e4654000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [9] : 68747470733a2f2f74726164656170692e74657272617669727475612e696f2f
Arg [10] : 6974656d2f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44357:620:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44357:620:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11043:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11043:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33782:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;33782:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15171:154;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15171:154:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14579:299;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14579:299:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42631:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42631:119:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;42631:119:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42631:119: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;42631:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;42631:119:0;;;;;;;;;;;;;;;:::i;:::-;;41422:540;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41422:540:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25564:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16762:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16762:184:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25221:185;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25221:185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44881:93;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44881:93:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;44881:93:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44881:93: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;44881:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44881:93:0;;;;;;;;;;;;;;;:::i;:::-;;44687:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44687:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17592:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17592:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36961:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36961:237:0;;;;;;;;;;;;;;;;;:::i;:::-;;42167:219;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42167:219:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;42167:219:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42167:219: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;42167:219:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;42167:219:0;;;;;;;;;;;;;;;:::i;:::-;;26005:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26005:151:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13967:181;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13967:181:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13579:163;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13579:163:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39434:140;;;:::i;:::-;;41028:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41028:152:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;38644:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38979:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33981:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;33981:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15625:217;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15625:217:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18445:214;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;18445:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;18445:214:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;18445:214: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;18445:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;18445:214:0;;;;;;;;;;;;;;;:::i;:::-;;43334:307;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43334:307:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43334:307:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44782:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44782:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43765:402;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43765:402:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39751:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39751:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11043:135;11113:4;11137:20;:33;11158:11;11137:33;;;;;;;;;;;;;;;;;;;;;;;;;;;11130:40;;11043:135;;;:::o;33782:85::-;33821:13;33854:5;33847:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33782:85;:::o;15171:154::-;15230:7;15258:16;15266:7;15258;:16::i;:::-;15250:25;;;;;;15293:15;:24;15309:7;15293:24;;;;;;;;;;;;;;;;;;;;;15286:31;;15171:154;;;:::o;14579:299::-;14643:13;14659:16;14667:7;14659;:16::i;:::-;14643:32;;14700:5;14694:11;;:2;:11;;;;14686:20;;;;;;14739:5;14725:19;;:10;:19;;;:58;;;;14748:35;14765:5;14772:10;14748:16;:35::i;:::-;14725:58;14717:67;;;;;;14824:2;14797:15;:24;14813:7;14797:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;14862:7;14858:2;14842:28;;14851:5;14842:28;;;;;;;;;;;;14579:299;;;:::o;42631:119::-;38856:9;:7;:9::i;:::-;38848:18;;;;;;42716:26;42729:7;42738:3;42716:12;:26::i;:::-;42631:119;;:::o;41422:540::-;38856:9;:7;:9::i;:::-;38848:18;;;;;;41534:1;41525:6;:10;41517:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41574:9;41586:1;41574:13;;41569:388;41593:6;41589:1;:10;41569:388;;;41621:18;41642:17;:15;:17::i;:::-;41621:38;;41674:22;41680:3;41685:10;41674:5;:22::i;:::-;41711:19;:17;:19::i;:::-;41747:18;41768:96;41804:14;:12;:14::i;:::-;41837:26;41854:8;41837:16;:26::i;:::-;41768:17;:96::i;:::-;41747:117;;41879:30;41892:10;41904:4;41879:12;:30::i;:::-;41944:1;41935:8;:10;41924:21;;41569:388;;41601:3;;;;;;;41569:388;;;;41422:540;;;:::o;25564:96::-;25608:7;25635:10;:17;;;;25628:24;;25564:96;:::o;16762:184::-;16853:39;16872:10;16884:7;16853:18;:39::i;:::-;16845:48;;;;;;16906:32;16920:4;16926:2;16930:7;16906:13;:32::i;:::-;16762:184;;;:::o;25221:185::-;25301:7;25337:16;25347:5;25337:9;:16::i;:::-;25329:5;:24;25321:33;;;;;;25372:12;:19;25385:5;25372:19;;;;;;;;;;;;;;;25392:5;25372:26;;;;;;;;;;;;;;;;25365:33;;25221:185;;;;:::o;44881:93::-;38856:9;:7;:9::i;:::-;38848:18;;;;;;44965:3;44949:13;:19;;;;;;;;;;;;:::i;:::-;;44881:93;:::o;44687:89::-;44734:13;44756:14;;;;;;;;;;;;;;;;;;;44687:89;:::o;17592:134::-;17679:39;17696:4;17702:2;17706:7;17679:39;;;;;;;;;;;;:16;:39::i;:::-;17592:134;;;:::o;36961:237::-;37071:41;37090:12;:10;:12::i;:::-;37104:7;37071:18;:41::i;:::-;37063:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37176:14;37182:7;37176:5;:14::i;:::-;36961:237;:::o;42167:219::-;38856:9;:7;:9::i;:::-;38848:18;;;;;;42250;42271:17;:15;:17::i;:::-;42250:38;;42295:22;42301:3;42306:10;42295:5;:22::i;:::-;42324:19;:17;:19::i;:::-;42350:30;42363:10;42375:4;42350:12;:30::i;:::-;38877:1;42167:219;;:::o;26005:151::-;26063:7;26099:13;:11;:13::i;:::-;26091:5;:21;26083:30;;;;;;26131:10;26142:5;26131:17;;;;;;;;;;;;;;;;26124:24;;26005:151;;;:::o;13967:181::-;14022:7;14042:13;14058:11;:20;14070:7;14058:20;;;;;;;;;;;;;;;;;;;;;14042:36;;14114:1;14097:19;;:5;:19;;;;14089:28;;;;;;14135:5;14128:12;;;13967:181;;;:::o;13579:163::-;13634:7;13679:1;13662:19;;:5;:19;;;;13654:28;;;;;;13700:34;:17;:24;13718:5;13700:24;;;;;;;;;;;;;;;:32;:34::i;:::-;13693:41;;13579:163;;;:::o;39434:140::-;38856:9;:7;:9::i;:::-;38848:18;;;;;;39533:1;39496:40;;39517:6;;;;;;;;;;;39496:40;;;;;;;;;;;;39564:1;39547:6;;:19;;;;;;;;;;;;;;;;;;39434:140::o;41028:152::-;38856:9;:7;:9::i;:::-;38848:18;;;;;;41081;41102:17;:15;:17::i;:::-;41081:38;;41126:22;41132:3;41137:10;41126:5;:22::i;:::-;41155:19;:17;:19::i;:::-;38877:1;41028:152;:::o;38644:79::-;38682:7;38709:6;;;;;;;;;;;38702:13;;38644:79;:::o;38979:92::-;39019:4;39057:6;;;;;;;;;;;39043:20;;:10;:20;;;39036:27;;38979:92;:::o;33981:89::-;34022:13;34055:7;34048:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33981:89;:::o;15625:217::-;15711:10;15705:16;;:2;:16;;;;15697:25;;;;;;15770:8;15733:18;:30;15752:10;15733:30;;;;;;;;;;;;;;;:34;15764:2;15733:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;15821:2;15794:40;;15809:10;15794:40;;;15825:8;15794:40;;;;;;;;;;;;;;;;;;;;;;15625:217;;:::o;18445:214::-;18552:31;18565:4;18571:2;18575:7;18552:12;:31::i;:::-;18602:48;18625:4;18631:2;18635:7;18644:5;18602:22;:48::i;:::-;18594:57;;;;;;18445:214;;;;:::o;43334:307::-;43393:13;43458:1;43426:10;:20;43437:8;43426:20;;;;;;;;;;;43420:34;;;;;;;;;;;;;;;;:39;43417:213;;43480:10;:20;43491:8;43480:20;;;;;;;;;;;43473:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43417:213;43534:86;43562:14;:12;:14::i;:::-;43587:26;43604:8;43587:16;:26::i;:::-;43534:17;:86::i;:::-;43527:93;;43334:307;;;;:::o;44782:93::-;44827:13;44856;44849:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44782:93;:::o;43765:402::-;43875:4;43950:27;43994:20;;;;;;;;;;;43950:65;;44067:8;44026:49;;44034:13;:21;;;44056:5;44034:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44034:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44034:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44034:28:0;;;;;;;;;;;;;;;;44026:49;;;44022:85;;;44095:4;44088:11;;;;;44022:85;44122:39;44145:5;44152:8;44122:22;:39::i;:::-;44115:46;;;43765:402;;;;;:::o;39751:109::-;38856:9;:7;:9::i;:::-;38848:18;;;;;;39824:28;39843:8;39824:18;:28::i;:::-;39751:109;:::o;18860:155::-;18917:4;18934:13;18950:11;:20;18962:7;18950:20;;;;;;;;;;;;;;;;;;;;;18934:36;;19005:1;18988:19;;:5;:19;;;;18981:26;;;18860:155;;;:::o;34675:147::-;34761:16;34769:7;34761;:16::i;:::-;34753:25;;;;;;34811:3;34789:10;:19;34800:7;34789:19;;;;;;;;;;;:25;;;;;;;;;;;;:::i;:::-;;34675:147;;:::o;42890:100::-;42939:7;42962:22;42982:1;42962:15;;:19;;:22;;;;:::i;:::-;42955:29;;42890:100;:::o;27048:202::-;27112:24;27124:2;27128:7;27112:11;:24::i;:::-;27149:40;27177:2;27181:7;27149:27;:40::i;:::-;27202;27234:7;27202:31;:40::i;:::-;27048:202;;:::o;43064:68::-;43109:15;;:17;;;;;;;;;;;;;43064:68::o;1583:406::-;1633:27;1679:1;1673:2;:7;1669:40;;;1691:10;;;;;;;;;;;;;;;;;;;;;1669:40;1715:6;1724:2;1715:11;;1733:8;1748:53;1760:1;1755;:6;1748:53;;1772:5;;;;;;;1791:2;1786:7;;;;;;;;;1748:53;;;1807:17;1837:3;1827:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;1827:14:0;;;;1807:34;;1848:6;1863:1;1857:3;:7;1848:16;;1871:87;1884:1;1878:2;:7;1871:87;;1929:2;1924;:7;;;;;;1919:2;:12;1908:25;;1896:4;1901:3;;;;;;;1896:9;;;;;;;;;;;:37;;;;;;;;;;;1948:2;1942:8;;;;;;;;;1871:87;;;1978:4;1964:19;;;;;;1583:406;;;;:::o;1435:142::-;1513:13;1542:29;1552:2;1556;1542:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;1535:36;;1435:142;;;;:::o;19384:249::-;19469:4;19486:13;19502:16;19510:7;19502;:16::i;:::-;19486:32;;19548:5;19537:16;;:7;:16;;;:51;;;;19581:7;19557:31;;:20;19569:7;19557:11;:20::i;:::-;:31;;;19537:51;:87;;;;19592:32;19609:5;19616:7;19592:16;:32::i;:::-;19537:87;19529:96;;;19384:249;;;;:::o;26540:245::-;26626:38;26646:4;26652:2;26656:7;26626:19;:38::i;:::-;26677:47;26710:4;26716:7;26677:32;:47::i;:::-;26737:40;26765:2;26769:7;26737:27;:40::i;:::-;26540:245;;;:::o;36228:98::-;36273:15;36308:10;36301:17;;36228:98;:::o;20911:92::-;20963:32;20969:16;20977:7;20969;:16::i;:::-;20987:7;20963:5;:32::i;:::-;20911:92;:::o;9852:114::-;9917:7;9944;:14;;;9937:21;;9852:114;;;:::o;22300:356::-;22422:4;22449:15;:2;:13;;;:15::i;:::-;22444:60;;22488:4;22481:11;;;;22444:60;22516:13;22548:2;22532:36;;;22569:10;22581:4;22587:7;22596:5;22532:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;22532:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22532:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22532:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22532:70:0;;;;;;;;;;;;;;;;22516:86;;12034:10;22631:16;;22621:26;;;:6;:26;;;;22613:35;;;22300:356;;;;;;;:::o;16171:147::-;16251:4;16275:18;:25;16294:5;16275:25;;;;;;;;;;;;;;;:35;16301:8;16275:35;;;;;;;;;;;;;;;;;;;;;;;;;16268:42;;16171:147;;;;:::o;40010:187::-;40104:1;40084:22;;:8;:22;;;;40076:31;;;;;;40152:8;40123:38;;40144:6;;;;;;;;;;;40123:38;;;;;;;;;;;;40181:8;40172:6;;:17;;;;;;;;;;;;;;;;;;40010:187;:::o;7119:150::-;7177:7;7197:9;7213:1;7209;:5;7197:17;;7238:1;7233;:6;;7225:15;;;;;;7260:1;7253:8;;;7119:150;;;;:::o;19884:267::-;19970:1;19956:16;;:2;:16;;;;19948:25;;;;;;19993:16;20001:7;19993;:16::i;:::-;19992:17;19984:26;;;;;;20046:2;20023:11;:20;20035:7;20023:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;20059:33;:17;:21;20077:2;20059:21;;;;;;;;;;;;;;;:31;:33::i;:::-;20135:7;20131:2;20110:33;;20127:1;20110:33;;;;;;;;;;;;19884:267;;:::o;28541:186::-;28655:12;:16;28668:2;28655:16;;;;;;;;;;;;;;;:23;;;;28626:17;:26;28644:7;28626:26;;;;;;;;;;;:52;;;;28689:12;:16;28702:2;28689:16;;;;;;;;;;;;;;;28711:7;28689:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;28689:30:0;;;;;;;;;;;;;;;;;;;;;;28541:186;;:::o;28928:164::-;29032:10;:17;;;;29005:15;:24;29021:7;29005:24;;;;;;;;;;;:44;;;;29060:10;29076:7;29060:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;29060:24:0;;;;;;;;;;;;;;;;;;;;;;28928:164;:::o;236:843::-;368:13;390:16;415:2;390:28;;425:16;450:2;425:28;;460:16;485:2;460:28;;495:16;520:2;495:28;;530:16;555:2;530:28;;566:19;651:3;:10;638:3;:10;625:3;:10;612:3;:10;599:3;:10;:23;:36;:49;:62;588:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;588:74:0;;;;566:96;;669:19;697:5;669:34;;710:6;719:1;710:10;;732:6;741:1;732:10;;727:58;748:3;:10;744:1;:14;727:58;;;779:3;783:1;779:6;;;;;;;;;;;;;;;;765;772:3;;;;;;765:11;;;;;;;;;;;:20;;;;;;;;;;;760:3;;;;;;;727:58;;;;797:6;806:1;797:10;;792:58;813:3;:10;809:1;:14;792:58;;;844:3;848:1;844:6;;;;;;;;;;;;;;;;830;837:3;;;;;;830:11;;;;;;;;;;;:20;;;;;;;;;;;825:3;;;;;;;792:58;;;;862:6;871:1;862:10;;857:58;878:3;:10;874:1;:14;857:58;;;909:3;913:1;909:6;;;;;;;;;;;;;;;;895;902:3;;;;;;895:11;;;;;;;;;;;:20;;;;;;;;;;;890:3;;;;;;;857:58;;;;927:6;936:1;927:10;;922:58;943:3;:10;939:1;:14;922:58;;;974:3;978:1;974:6;;;;;;;;;;;;;;;;960;967:3;;;;;;960:11;;;;;;;;;;;:20;;;;;;;;;;;955:3;;;;;;;922:58;;;;992:6;1001:1;992:10;;987:58;1008:3;:10;1004:1;:14;987:58;;;1039:3;1043:1;1039:6;;;;;;;;;;;;;;;;1025;1032:3;;;;;;1025:11;;;;;;;;;;;:20;;;;;;;;;;;1020:3;;;;;;;987:58;;;;1066:6;1052:21;;;;;;;;;;236:843;;;;;;;:::o;21387:374::-;21501:4;21481:24;;:16;21489:7;21481;:16::i;:::-;:24;;;21473:33;;;;;;21539:1;21525:16;;:2;:16;;;;21517:25;;;;;;21555:23;21570:7;21555:14;:23::i;:::-;21591:35;:17;:23;21609:4;21591:23;;;;;;;;;;;;;;;:33;:35::i;:::-;21637:33;:17;:21;21655:2;21637:21;;;;;;;;;;;;;;;:31;:33::i;:::-;21706:2;21683:11;:20;21695:7;21683:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;21745:7;21741:2;21726:27;;21735:4;21726:27;;;;;;;;;;;;21387:374;;;:::o;29717:1148::-;29983:22;30008:32;30038:1;30008:12;:18;30021:4;30008:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;29983:57;;30051:18;30072:17;:26;30090:7;30072:26;;;;;;;;;;;;30051:47;;30219:14;30205:10;:28;30201:328;;30250:19;30272:12;:18;30285:4;30272:18;;;;;;;;;;;;;;;30291:14;30272:34;;;;;;;;;;;;;;;;30250:56;;30356:11;30323:12;:18;30336:4;30323:18;;;;;;;;;;;;;;;30342:10;30323:30;;;;;;;;;;;;;;;:44;;;;30473:10;30440:17;:30;30458:11;30440:30;;;;;;;;;;;:43;;;;30201:328;;30618:12;:18;30631:4;30618:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;29717:1148;;;;:::o;35121:247::-;35188:27;35200:5;35207:7;35188:11;:27::i;:::-;35305:1;35274:10;:19;35285:7;35274:19;;;;;;;;;;;35268:33;;;;;;;;;;;;;;;;:38;35264:97;;35330:10;:19;35341:7;35330:19;;;;;;;;;;;;35323:26;;;;:::i;:::-;35264:97;35121:247;;:::o;8099:627::-;8159:4;8176:12;8683:7;8671:20;8663:28;;8717:1;8710:4;:8;8703:15;;;8099:627;;;:::o;9974:91::-;10056:1;10038:7;:14;;;:19;;;;;;;;;;;9974:91;:::o;22823:175::-;22923:1;22887:38;;:15;:24;22903:7;22887:24;;;;;;;;;;;;;;;;;;;;;:38;;;22883:108;;22977:1;22942:15;:24;22958:7;22942:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;22883:108;22823:175;:::o;10073:110::-;10154:21;10173:1;10154:7;:14;;;:18;;:21;;;;:::i;:::-;10137:7;:14;;:38;;;;10073:110;:::o;6881:150::-;6939:7;6972:1;6967;:6;;6959:15;;;;;;6985:9;7001:1;6997;:5;6985:17;;7022:1;7015:8;;;6881:150;;;;:::o;27531:372::-;27598:27;27610:5;27617:7;27598:11;:27::i;:::-;27638:48;27671:5;27678:7;27638:32;:48::i;:::-;27836:1;27807:17;:26;27825:7;27807:26;;;;;;;;;;;:30;;;;27850:45;27887:7;27850:36;:45::i;:::-;27531:372;;:::o;20433:292::-;20528:5;20508:25;;:16;20516:7;20508;:16::i;:::-;:25;;;20500:34;;;;;;20547:23;20562:7;20547:14;:23::i;:::-;20583:36;:17;:24;20601:5;20583:24;;;;;;;;;;;;;;;:34;:36::i;:::-;20661:1;20630:11;:20;20642:7;20630:20;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;20709:7;20705:1;20681:36;;20690:5;20681:36;;;;;;;;;;;;20433:292;;:::o;31160:1082::-;31413:22;31438:24;31460:1;31438:10;:17;;;;:21;;:24;;;;:::i;:::-;31413:49;;31473:18;31494:15;:24;31510:7;31494:24;;;;;;;;;;;;31473:45;;31845:19;31867:10;31878:14;31867:26;;;;;;;;;;;;;;;;31845:48;;31931:11;31906:10;31917;31906:22;;;;;;;;;;;;;;;:36;;;;32042:10;32011:15;:28;32027:11;32011:28;;;;;;;;;;;:41;;;;32176:10;:19;;;;;;;;;;;;:::i;:::-;;32233:1;32206:15;:24;32222:7;32206:24;;;;;;;;;;;:28;;;;31160:1082;;;;:::o;44357:620::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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