ETH Price: $3,099.53 (+1.02%)
Gas: 11 Gwei

Token

DozerDollV2 (Dozer)
 

Overview

Max Total Supply

11,351 Dozer

Holders

4,917

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
crypt0xninja.eth
Balance
3 Dozer
0x6ED7F81208839E31E11840049201201C469a7A56
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Decentralized Gaming with Meta-Blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DozerDollV2

Compiler Version
v0.5.15+commit.6a57276f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-05-14
*/

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

// File: @openzeppelin/contracts/introspection/IERC165.sol

pragma solidity ^0.5.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.5.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
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);

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

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     *
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either {approve} or {setApprovalForAll}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either {approve} or {setApprovalForAll}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    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 safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.5.0;

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

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

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

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.5.5;

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

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

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

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

// File: @openzeppelin/contracts/drafts/Counters.sol

pragma solidity ^0.5.0;


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

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

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

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

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

// File: @openzeppelin/contracts/introspection/ERC165.sol

pragma solidity ^0.5.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.5.0;








/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

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

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

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

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

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

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

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

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

        return _ownedTokensCount[owner].current();
    }

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

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transferFrom(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _clearApproval(tokenId);

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

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

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

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

        _clearApproval(tokenId);

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

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This is an internal detail of the `ERC721` contract and its use is deprecated.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ));
        if (!success) {
            if (returndata.length > 0) {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert("ERC721: transfer to non ERC721Receiver implementer");
            }
        } else {
            bytes4 retval = abi.decode(returndata, (bytes4));
            return (retval == _ERC721_RECEIVED);
        }
    }

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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/contracts/token/ERC721/ERC721Enumerable.sol

pragma solidity ^0.5.0;





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

    /**
     * @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), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

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

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

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

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

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

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

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

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

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

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

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

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

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

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

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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/contracts/token/ERC721/ERC721Metadata.sol

pragma solidity ^0.5.0;





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

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

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

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

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

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

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() 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 the URI for a given token ID. May return an empty string.
     *
     * If the token's URI is non-empty and a base URI was set (via
     * {_setBaseURI}), it will be added to the token ID's URI as a prefix.
     *
     * Reverts if the token ID does not exist.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];

        // Even if there is a base URI, it is only appended to non-empty token-specific URIs
        if (bytes(_tokenURI).length == 0) {
            return "";
        } else {
            // abi.encodePacked is being used to concatenate strings
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
    }

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721Full.sol

pragma solidity ^0.5.0;




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

// File: @openzeppelin/contracts/access/Roles.sol

pragma solidity ^0.5.0;

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

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

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

// File: @openzeppelin/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721Mintable.sol

pragma solidity ^0.5.0;



/**
 * @title ERC721Mintable
 * @dev ERC721 minting logic.
 */
contract ERC721Mintable is ERC721, MinterRole {
    /**
     * @dev Function to mint tokens.
     * @param to The address that will receive the minted token.
     * @param tokenId The token id to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 tokenId) public onlyMinter returns (bool) {
        _mint(to, tokenId);
        return true;
    }

    /**
     * @dev Function to safely mint tokens.
     * @param to The address that will receive the minted token.
     * @param tokenId The token id to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function safeMint(address to, uint256 tokenId) public onlyMinter returns (bool) {
        _safeMint(to, tokenId);
        return true;
    }

    /**
     * @dev Function to safely mint tokens.
     * @param to The address that will receive the minted token.
     * @param tokenId The token id to mint.
     * @param _data bytes data to send along with a safe transfer check.
     * @return A boolean that indicates if the operation was successful.
     */
    function safeMint(address to, uint256 tokenId, bytes memory _data) public onlyMinter returns (bool) {
        _safeMint(to, tokenId, _data);
        return true;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721MetadataMintable.sol

pragma solidity ^0.5.0;




/**
 * @title ERC721MetadataMintable
 * @dev ERC721 minting logic with metadata.
 */
contract ERC721MetadataMintable is ERC721, ERC721Metadata, MinterRole {
    /**
     * @dev Function to mint tokens.
     * @param to The address that will receive the minted tokens.
     * @param tokenId The token id to mint.
     * @param tokenURI The token URI of the minted token.
     * @return A boolean that indicates if the operation was successful.
     */
    function mintWithTokenURI(address to, uint256 tokenId, string memory tokenURI) public onlyMinter returns (bool) {
        _mint(to, tokenId);
        _setTokenURI(tokenId, tokenURI);
        return true;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721Burnable.sol

pragma solidity ^0.5.0;



/**
 * @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/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/tokenV2/DozerDollV2.sol

pragma solidity >=0.5.0 <0.6.0;








contract DozerDollV2 is ERC721Full, ERC721Mintable, ERC721MetadataMintable, ERC721Burnable, Ownable {
  using SafeMath for uint256;

  event DollSell(address _to, uint256 tokenId);

  constructor (
    string memory _name,
    string memory _symbol,
    string memory _baseURI
  )
    ERC721Mintable()
    ERC721Full(_name, _symbol) public {
    _setBaseURI(_baseURI);
  }


  function mintUniqueTokenTo (
    address _to,
    uint256 _tokenId
  ) public onlyOwner {
      _mint(_to, _tokenId);
      _setTokenURI(_tokenId, uint2str(_tokenId));
  }


  function mintMulti (
    address[] memory _to,
    uint256[] memory _tokenId
  ) public onlyOwner{
    for (uint256 i = 0 ; i < _tokenId.length; i++) {
      mintUniqueTokenTo(_to[i], _tokenId[i]);
    }
  }


  function dollSell (
    uint256 _tokenId
  ) public {
    burn(_tokenId);

    emit DollSell(msg.sender, _tokenId);
  }

  function dollSellMulti (
    uint256[] memory _tokenId
  ) public {
    for (uint256 i = 0 ; i < _tokenId.length; i++) {
      dollSell(_tokenId[i]);
    }
  }


  // erc-721 transfer
  function transfer (
    address _to,
    uint256 _tokenId
  ) public {
    safeTransferFrom(msg.sender, _to, _tokenId);
  }

  // erc-721 transferAll
  function transferAll (
    address _to,
    uint256[] memory _tokenId
  ) public {
    for (uint i = 0; i < _tokenId.length; i++) {
      safeTransferFrom(msg.sender, _to, _tokenId[i]);
    }
  }


  function setBaseURI (
    string memory _baseURI
  ) public onlyOwner {
    _setBaseURI(_baseURI);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"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":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"DollSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"dollSell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"dollSellMulti","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","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"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"mintMulti","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintUniqueTokenTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintWithTokenURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"transferAll","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":"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"}]

60806040523480156200001157600080fd5b506040516200337238038062003372833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001bc57600080fd5b908301906020820185811115620001d257600080fd5b8251640100000000811182820188101715620001ed57600080fd5b82525081516020918201929091019080838360005b838110156200021c57818101518382015260200162000202565b50505050905090810190601f1680156200024a5780820380516001836020036101000a031916815260200191505b50604052508491508390508181620002726301ffc9a760e01b6001600160e01b036200039616565b6200028d6380ac58cd60e01b6001600160e01b036200039616565b620002a863780e9d6360e01b6001600160e01b036200039616565b8151620002bd90600990602085019062000581565b508051620002d390600a90602084019062000581565b50620002ef635b5e139f60e01b6001600160e01b036200039616565b5050505062000316620003076200041b60201b60201c565b6001600160e01b036200042016565b60006200032b6001600160e01b036200041b16565b600e80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200038d816001600160e01b036200047216565b50505062000623565b6001600160e01b03198082161415620003f6576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b6200043b81600d6200048b60201b6200247d1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b80516200048790600b90602084019062000581565b5050565b620004a082826001600160e01b036200051816565b15620004f3576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620005615760405162461bcd60e51b8152600401808060200182810382526022815260200180620033506022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005c457805160ff1916838001178555620005f4565b82800160010185558215620005f4579182015b82811115620005f4578251825591602001919060010190620005d7565b506200060292915062000606565b5090565b6200041d91905b808211156200060257600081556001016200060d565b612d1d80620006336000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80636c0360eb11610125578063a1448194116100ad578063b6d5e8cd1161007c578063b6d5e8cd14610a45578063b88d4fde14610a71578063c87b56dd14610b35578063e985e9c514610b52578063f2fde38b14610b805761021c565b8063a144819414610999578063a22cb465146109c5578063a9059cbb146109f3578063aa271e1a14610a1f5761021c565b80638da5cb5b116100f45780638da5cb5b146109535780638f32d59b1461095b57806395d89b4114610963578063983b2d561461096b57806398650275146109915761021c565b80636c0360eb1461086457806370a082311461086c578063715018a6146108925780638832e6e31461089a5761021c565b806340c10f19116101a85780634f6ccce7116101775780634f6ccce71461061c57806350bb4e7f1461063957806355f804b3146106f25780636352211e1461079657806367025dcf146107b35761021c565b806340c10f191461047a57806342842e0e146104a657806342966c68146104dc57806346e4959d146104f95761021c565b8063095ea7b3116101ef578063095ea7b31461033157806318160ddd1461035d57806323b872dd146103775780632f745c59146103ad57806337e1e75b146103d95761021c565b806301ffc9a71461022157806306fdde031461025c5780630715a75a146102d9578063081812fc146102f8575b600080fd5b6102486004803603602081101561023757600080fd5b50356001600160e01b031916610ba6565b604080519115158252519081900360200190f35b610264610bc9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029e578181015183820152602001610286565b50505050905090810190601f1680156102cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f6600480360360208110156102ef57600080fd5b5035610c60565b005b6103156004803603602081101561030e57600080fd5b5035610ca7565b604080516001600160a01b039092168252519081900360200190f35b6102f66004803603604081101561034757600080fd5b506001600160a01b038135169060200135610d09565b610365610e31565b60408051918252519081900360200190f35b6102f66004803603606081101561038d57600080fd5b506001600160a01b03813581169160208101359091169060400135610e37565b610365600480360360408110156103c357600080fd5b506001600160a01b038135169060200135610e93565b6102f6600480360360208110156103ef57600080fd5b810190602081018135600160201b81111561040957600080fd5b82018360208201111561041b57600080fd5b803590602001918460208302840111600160201b8311171561043c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610f12945050505050565b6102486004803603604081101561049057600080fd5b506001600160a01b038135169060200135610f46565b6102f6600480360360608110156104bc57600080fd5b506001600160a01b03813581169160208101359091169060400135610fa6565b6102f6600480360360208110156104f257600080fd5b5035610fc1565b6102f66004803603604081101561050f57600080fd5b810190602081018135600160201b81111561052957600080fd5b82018360208201111561053b57600080fd5b803590602001918460208302840111600160201b8311171561055c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105ab57600080fd5b8201836020820111156105bd57600080fd5b803590602001918460208302840111600160201b831117156105de57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611013945050505050565b6103656004803603602081101561063257600080fd5b503561109e565b6102486004803603606081101561064f57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561067e57600080fd5b82018360208201111561069057600080fd5b803590602001918460018302840111600160201b831117156106b157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611104945050505050565b6102f66004803603602081101561070857600080fd5b810190602081018135600160201b81111561072257600080fd5b82018360208201111561073457600080fd5b803590602001918460018302840111600160201b8311171561075557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061116a945050505050565b610315600480360360208110156107ac57600080fd5b50356111ba565b6102f6600480360360408110156107c957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156107f357600080fd5b82018360208201111561080557600080fd5b803590602001918460208302840111600160201b8311171561082657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611214945050505050565b610264611246565b6103656004803603602081101561088257600080fd5b50356001600160a01b03166112a7565b6102f661130f565b610248600480360360608110156108b057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156108df57600080fd5b8201836020820111156108f157600080fd5b803590602001918460018302840111600160201b8311171561091257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113a0945050505050565b6103156113f3565b610248611402565b610264611428565b6102f66004803603602081101561098157600080fd5b50356001600160a01b0316611489565b6102f66114d8565b610248600480360360408110156109af57600080fd5b506001600160a01b0381351690602001356114ea565b6102f6600480360360408110156109db57600080fd5b506001600160a01b038135169060200135151561153c565b6102f660048036036040811015610a0957600080fd5b506001600160a01b038135169060200135611641565b61024860048036036020811015610a3557600080fd5b50356001600160a01b031661164c565b6102f660048036036040811015610a5b57600080fd5b506001600160a01b03813516906020013561165f565b6102f660048036036080811015610a8757600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610ac157600080fd5b820183602082011115610ad357600080fd5b803590602001918460018302840111600160201b83111715610af457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506116c2945050505050565b61026460048036036020811015610b4b57600080fd5b5035611720565b61024860048036036040811015610b6857600080fd5b506001600160a01b03813581169160200135166118ec565b6102f660048036036020811015610b9657600080fd5b50356001600160a01b031661191a565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b505050505090505b90565b610c6981610fc1565b604080513381526020810183905281517fcb14ea7feec7c4e08b22a6c20fda47fca7f758346fe1ad51b311bd5f772e4160929181900390910190a150565b6000610cb28261196a565b610ced5760405162461bcd60e51b815260040180806020018281038252602c815260200180612b24602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610d14826111ba565b9050806001600160a01b0316836001600160a01b03161415610d675760405162461bcd60e51b8152600401808060200182810382526021815260200180612c166021913960400191505060405180910390fd5b806001600160a01b0316610d79611987565b6001600160a01b03161480610d9a5750610d9a81610d95611987565b6118ec565b610dd55760405162461bcd60e51b8152600401808060200182810382526038815260200180612a486038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b610e48610e42611987565b8261198b565b610e835760405162461bcd60e51b8152600401808060200182810382526031815260200180612c376031913960400191505060405180910390fd5b610e8e838383611a2f565b505050565b6000610e9e836112a7565b8210610edb5760405162461bcd60e51b815260040180806020018281038252602b815260200180612975602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610eff57fe5b9060005260206000200154905092915050565b60005b8151811015610f4257610f3a828281518110610f2d57fe5b6020026020010151610c60565b600101610f15565b5050565b6000610f58610f53611987565b61164c565b610f935760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b610f9d8383611a4e565b50600192915050565b610e8e838383604051806020016040528060008152506116c2565b610fcc610e42611987565b6110075760405162461bcd60e51b8152600401808060200182810382526030815260200180612cb96030913960400191505060405180910390fd5b61101081611a6b565b50565b61101b611402565b61105a576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b60005b8151811015610e8e5761109683828151811061107557fe5b602002602001015183838151811061108957fe5b602002602001015161165f565b60010161105d565b60006110a8610e31565b82106110e55760405162461bcd60e51b815260040180806020018281038252602c815260200180612c68602c913960400191505060405180910390fd5b600782815481106110f257fe5b90600052602060002001549050919050565b6000611111610f53611987565b61114c5760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b6111568484611a4e565b6111608383611a7d565b5060019392505050565b611172611402565b6111b1576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b61101081611ae0565b6000818152600160205260408120546001600160a01b03168061120e5760405162461bcd60e51b8152600401808060200182810382526029815260200180612aaa6029913960400191505060405180910390fd5b92915050565b60005b8151811015610e8e5761123e338484848151811061123157fe5b6020026020010151610fa6565b600101611217565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c555780601f10610c2a57610100808354040283529160200191610c55565b60006001600160a01b0382166112ee5760405162461bcd60e51b815260040180806020018281038252602a815260200180612a80602a913960400191505060405180910390fd5b6001600160a01b038216600090815260036020526040902061120e90611af3565b611317611402565b611356576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b600e546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600e80546001600160a01b0319169055565b60006113ad610f53611987565b6113e85760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b611160848484611af7565b600e546001600160a01b031690565b600e546000906001600160a01b0316611419611987565b6001600160a01b031614905090565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c555780601f10610c2a57610100808354040283529160200191610c55565b611494610f53611987565b6114cf5760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b61101081611b49565b6114e86114e3611987565b611b91565b565b60006114f7610f53611987565b6115325760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b610f9d8383611bd9565b611544611987565b6001600160a01b0316826001600160a01b031614156115aa576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006115b7611987565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115fb611987565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b610f42338383610fa6565b600061120e600d8363ffffffff611bf316565b611667611402565b6116a6576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b6116b08282611a4e565b610f42816116bd83611c5a565b611a7d565b6116d36116cd611987565b8361198b565b61170e5760405162461bcd60e51b8152600401808060200182810382526031815260200180612c376031913960400191505060405180910390fd5b61171a84848484611d1b565b50505050565b606061172b8261196a565b6117665760405162461bcd60e51b815260040180806020018281038252602f815260200180612be7602f913960400191505060405180910390fd5b6000828152600c602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156117fb5780601f106117d0576101008083540402835291602001916117fb565b820191906000526020600020905b8154815290600101906020018083116117de57829003601f168201915b50505050509050805160001415611822575050604080516020810190915260008152610bc4565b600b8160405160200180838054600181600116156101000203166002900480156118835780601f10611861576101008083540402835291820191611883565b820191906000526020600020905b81548152906001019060200180831161186f575b5050825160208401908083835b602083106118af5780518252601f199092019160209182019101611890565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610bc4565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611922611402565b611961576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b61101081611d6d565b6000908152600160205260409020546001600160a01b0316151590565b3390565b60006119968261196a565b6119d15760405162461bcd60e51b815260040180806020018281038252602c815260200180612a1c602c913960400191505060405180910390fd5b60006119dc836111ba565b9050806001600160a01b0316846001600160a01b03161480611a175750836001600160a01b0316611a0c84610ca7565b6001600160a01b0316145b80611a275750611a2781856118ec565b949350505050565b611a3a838383611e0e565b611a448382611f52565b610e8e8282612047565b611a588282612085565b611a628282612047565b610f42816121b6565b611010611a77826111ba565b826121fa565b611a868261196a565b611ac15760405162461bcd60e51b815260040180806020018281038252602c815260200180612b50602c913960400191505060405180910390fd5b6000828152600c602090815260409091208251610e8e92840190612878565b8051610f4290600b906020840190612878565b5490565b611b018383611a4e565b611b0e6000848484612242565b610e8e5760405162461bcd60e51b81526004018080602001828103825260328152602001806129a06032913960400191505060405180910390fd5b611b5a600d8263ffffffff61247d16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b611ba2600d8263ffffffff6124fe16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b610f42828260405180602001604052806000815250611af7565b60006001600160a01b038216611c3a5760405162461bcd60e51b8152600401808060200182810382526022815260200180612b9c6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b606081611c7f57506040805180820190915260018152600360fc1b6020820152610bc4565b8160005b8115611c9757600101600a82049150611c83565b6060816040519080825280601f01601f191660200182016040528015611cc4576020820181803883390190505b50905060001982015b8515611d1257600a860660300160f81b82828060019003935081518110611cf057fe5b60200101906001600160f81b031916908160001a905350600a86049550611ccd565b50949350505050565b611d26848484611a2f565b611d3284848484612242565b61171a5760405162461bcd60e51b81526004018080602001828103825260328152602001806129a06032913960400191505060405180910390fd5b6001600160a01b038116611db25760405162461bcd60e51b81526004018080602001828103825260268152602001806129d26026913960400191505060405180910390fd5b600e546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b0316611e21826111ba565b6001600160a01b031614611e665760405162461bcd60e51b8152600401808060200182810382526029815260200180612bbe6029913960400191505060405180910390fd5b6001600160a01b038216611eab5760405162461bcd60e51b81526004018080602001828103825260248152602001806129f86024913960400191505060405180910390fd5b611eb481612565565b6001600160a01b0383166000908152600360205260409020611ed5906125a0565b6001600160a01b0382166000908152600360205260409020611ef6906125b7565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216600090815260056020526040812054611f7c90600163ffffffff6125c016565b600083815260066020526040902054909150808214612017576001600160a01b0384166000908152600560205260408120805484908110611fb957fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110611ff757fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906120409060001983016128f6565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166120e0576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6120e98161196a565b1561213b576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061217a906125b7565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6122048282612609565b6000818152600c60205260409020546002600019610100600184161502019091160415610f42576000818152600c60205260408120610f429161291a565b6000612256846001600160a01b0316612635565b61226257506001611a27565b600060606001600160a01b038616630a85bd0160e11b612280611987565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156122f95781810151838201526020016122e1565b50505050905090810190601f1680156123265780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b6020831061238e5780518252601f19909201916020918201910161236f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146123f0576040519150601f19603f3d011682016040523d82523d6000602084013e6123f5565b606091505b5091509150816124465780511561240f5780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806129a06032913960400191505060405180910390fd5b600081806020019051602081101561245d57600080fd5b50516001600160e01b031916630a85bd0160e11b149350611a2792505050565b6124878282611bf3565b156124d9576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6125088282611bf3565b6125435760405162461bcd60e51b8152600401808060200182810382526021815260200180612b036021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b03161561101057600090815260026020526040902080546001600160a01b0319169055565b80546125b390600163ffffffff6125c016565b9055565b80546001019055565b600061260283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061266e565b9392505050565b6126138282612705565b61261d8282611f52565b600081815260066020526040812055610f42816127dc565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611a27575050151592915050565b600081848411156126fd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126c25781810151838201526020016126aa565b50505050905090810190601f1680156126ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b816001600160a01b0316612718826111ba565b6001600160a01b03161461275d5760405162461bcd60e51b8152600401808060200182810382526025815260200180612c946025913960400191505060405180910390fd5b61276681612565565b6001600160a01b0382166000908152600360205260409020612787906125a0565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6007546000906127f390600163ffffffff6125c016565b6000838152600860205260408120546007805493945090928490811061281557fe5b90600052602060002001549050806007838154811061283057fe5b600091825260208083209091019290925582815260089091526040902082905560078054906128639060001983016128f6565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128b957805160ff19168380011785556128e6565b828001600101855582156128e6579182015b828111156128e65782518255916020019190600101906128cb565b506128f292915061295a565b5090565b815481835581811115610e8e57600083815260209020610e8e91810190830161295a565b50805460018160011615610100020316600290046000825580601f106129405750611010565b601f01602090049060005260206000209081019061101091905b610c5d91905b808211156128f2576000815560010161296056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a7231582034744a6ea0f47f2394dedb981432a3435e357bc750cff42268e01914b720562e64736f6c634300050f0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b446f7a6572446f6c6c56320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005446f7a6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006068747470733a2f2f717473616a346a3962632e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f76342f67616d652f646f7a65722f70322f66616e63792f6d6574612f76322f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80636c0360eb11610125578063a1448194116100ad578063b6d5e8cd1161007c578063b6d5e8cd14610a45578063b88d4fde14610a71578063c87b56dd14610b35578063e985e9c514610b52578063f2fde38b14610b805761021c565b8063a144819414610999578063a22cb465146109c5578063a9059cbb146109f3578063aa271e1a14610a1f5761021c565b80638da5cb5b116100f45780638da5cb5b146109535780638f32d59b1461095b57806395d89b4114610963578063983b2d561461096b57806398650275146109915761021c565b80636c0360eb1461086457806370a082311461086c578063715018a6146108925780638832e6e31461089a5761021c565b806340c10f19116101a85780634f6ccce7116101775780634f6ccce71461061c57806350bb4e7f1461063957806355f804b3146106f25780636352211e1461079657806367025dcf146107b35761021c565b806340c10f191461047a57806342842e0e146104a657806342966c68146104dc57806346e4959d146104f95761021c565b8063095ea7b3116101ef578063095ea7b31461033157806318160ddd1461035d57806323b872dd146103775780632f745c59146103ad57806337e1e75b146103d95761021c565b806301ffc9a71461022157806306fdde031461025c5780630715a75a146102d9578063081812fc146102f8575b600080fd5b6102486004803603602081101561023757600080fd5b50356001600160e01b031916610ba6565b604080519115158252519081900360200190f35b610264610bc9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029e578181015183820152602001610286565b50505050905090810190601f1680156102cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f6600480360360208110156102ef57600080fd5b5035610c60565b005b6103156004803603602081101561030e57600080fd5b5035610ca7565b604080516001600160a01b039092168252519081900360200190f35b6102f66004803603604081101561034757600080fd5b506001600160a01b038135169060200135610d09565b610365610e31565b60408051918252519081900360200190f35b6102f66004803603606081101561038d57600080fd5b506001600160a01b03813581169160208101359091169060400135610e37565b610365600480360360408110156103c357600080fd5b506001600160a01b038135169060200135610e93565b6102f6600480360360208110156103ef57600080fd5b810190602081018135600160201b81111561040957600080fd5b82018360208201111561041b57600080fd5b803590602001918460208302840111600160201b8311171561043c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610f12945050505050565b6102486004803603604081101561049057600080fd5b506001600160a01b038135169060200135610f46565b6102f6600480360360608110156104bc57600080fd5b506001600160a01b03813581169160208101359091169060400135610fa6565b6102f6600480360360208110156104f257600080fd5b5035610fc1565b6102f66004803603604081101561050f57600080fd5b810190602081018135600160201b81111561052957600080fd5b82018360208201111561053b57600080fd5b803590602001918460208302840111600160201b8311171561055c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105ab57600080fd5b8201836020820111156105bd57600080fd5b803590602001918460208302840111600160201b831117156105de57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611013945050505050565b6103656004803603602081101561063257600080fd5b503561109e565b6102486004803603606081101561064f57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561067e57600080fd5b82018360208201111561069057600080fd5b803590602001918460018302840111600160201b831117156106b157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611104945050505050565b6102f66004803603602081101561070857600080fd5b810190602081018135600160201b81111561072257600080fd5b82018360208201111561073457600080fd5b803590602001918460018302840111600160201b8311171561075557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061116a945050505050565b610315600480360360208110156107ac57600080fd5b50356111ba565b6102f6600480360360408110156107c957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156107f357600080fd5b82018360208201111561080557600080fd5b803590602001918460208302840111600160201b8311171561082657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611214945050505050565b610264611246565b6103656004803603602081101561088257600080fd5b50356001600160a01b03166112a7565b6102f661130f565b610248600480360360608110156108b057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156108df57600080fd5b8201836020820111156108f157600080fd5b803590602001918460018302840111600160201b8311171561091257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113a0945050505050565b6103156113f3565b610248611402565b610264611428565b6102f66004803603602081101561098157600080fd5b50356001600160a01b0316611489565b6102f66114d8565b610248600480360360408110156109af57600080fd5b506001600160a01b0381351690602001356114ea565b6102f6600480360360408110156109db57600080fd5b506001600160a01b038135169060200135151561153c565b6102f660048036036040811015610a0957600080fd5b506001600160a01b038135169060200135611641565b61024860048036036020811015610a3557600080fd5b50356001600160a01b031661164c565b6102f660048036036040811015610a5b57600080fd5b506001600160a01b03813516906020013561165f565b6102f660048036036080811015610a8757600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610ac157600080fd5b820183602082011115610ad357600080fd5b803590602001918460018302840111600160201b83111715610af457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506116c2945050505050565b61026460048036036020811015610b4b57600080fd5b5035611720565b61024860048036036040811015610b6857600080fd5b506001600160a01b03813581169160200135166118ec565b6102f660048036036020811015610b9657600080fd5b50356001600160a01b031661191a565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b505050505090505b90565b610c6981610fc1565b604080513381526020810183905281517fcb14ea7feec7c4e08b22a6c20fda47fca7f758346fe1ad51b311bd5f772e4160929181900390910190a150565b6000610cb28261196a565b610ced5760405162461bcd60e51b815260040180806020018281038252602c815260200180612b24602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610d14826111ba565b9050806001600160a01b0316836001600160a01b03161415610d675760405162461bcd60e51b8152600401808060200182810382526021815260200180612c166021913960400191505060405180910390fd5b806001600160a01b0316610d79611987565b6001600160a01b03161480610d9a5750610d9a81610d95611987565b6118ec565b610dd55760405162461bcd60e51b8152600401808060200182810382526038815260200180612a486038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b610e48610e42611987565b8261198b565b610e835760405162461bcd60e51b8152600401808060200182810382526031815260200180612c376031913960400191505060405180910390fd5b610e8e838383611a2f565b505050565b6000610e9e836112a7565b8210610edb5760405162461bcd60e51b815260040180806020018281038252602b815260200180612975602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610eff57fe5b9060005260206000200154905092915050565b60005b8151811015610f4257610f3a828281518110610f2d57fe5b6020026020010151610c60565b600101610f15565b5050565b6000610f58610f53611987565b61164c565b610f935760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b610f9d8383611a4e565b50600192915050565b610e8e838383604051806020016040528060008152506116c2565b610fcc610e42611987565b6110075760405162461bcd60e51b8152600401808060200182810382526030815260200180612cb96030913960400191505060405180910390fd5b61101081611a6b565b50565b61101b611402565b61105a576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b60005b8151811015610e8e5761109683828151811061107557fe5b602002602001015183838151811061108957fe5b602002602001015161165f565b60010161105d565b60006110a8610e31565b82106110e55760405162461bcd60e51b815260040180806020018281038252602c815260200180612c68602c913960400191505060405180910390fd5b600782815481106110f257fe5b90600052602060002001549050919050565b6000611111610f53611987565b61114c5760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b6111568484611a4e565b6111608383611a7d565b5060019392505050565b611172611402565b6111b1576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b61101081611ae0565b6000818152600160205260408120546001600160a01b03168061120e5760405162461bcd60e51b8152600401808060200182810382526029815260200180612aaa6029913960400191505060405180910390fd5b92915050565b60005b8151811015610e8e5761123e338484848151811061123157fe5b6020026020010151610fa6565b600101611217565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c555780601f10610c2a57610100808354040283529160200191610c55565b60006001600160a01b0382166112ee5760405162461bcd60e51b815260040180806020018281038252602a815260200180612a80602a913960400191505060405180910390fd5b6001600160a01b038216600090815260036020526040902061120e90611af3565b611317611402565b611356576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b600e546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600e80546001600160a01b0319169055565b60006113ad610f53611987565b6113e85760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b611160848484611af7565b600e546001600160a01b031690565b600e546000906001600160a01b0316611419611987565b6001600160a01b031614905090565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c555780601f10610c2a57610100808354040283529160200191610c55565b611494610f53611987565b6114cf5760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b61101081611b49565b6114e86114e3611987565b611b91565b565b60006114f7610f53611987565b6115325760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad36030913960400191505060405180910390fd5b610f9d8383611bd9565b611544611987565b6001600160a01b0316826001600160a01b031614156115aa576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006115b7611987565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115fb611987565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b610f42338383610fa6565b600061120e600d8363ffffffff611bf316565b611667611402565b6116a6576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b6116b08282611a4e565b610f42816116bd83611c5a565b611a7d565b6116d36116cd611987565b8361198b565b61170e5760405162461bcd60e51b8152600401808060200182810382526031815260200180612c376031913960400191505060405180910390fd5b61171a84848484611d1b565b50505050565b606061172b8261196a565b6117665760405162461bcd60e51b815260040180806020018281038252602f815260200180612be7602f913960400191505060405180910390fd5b6000828152600c602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156117fb5780601f106117d0576101008083540402835291602001916117fb565b820191906000526020600020905b8154815290600101906020018083116117de57829003601f168201915b50505050509050805160001415611822575050604080516020810190915260008152610bc4565b600b8160405160200180838054600181600116156101000203166002900480156118835780601f10611861576101008083540402835291820191611883565b820191906000526020600020905b81548152906001019060200180831161186f575b5050825160208401908083835b602083106118af5780518252601f199092019160209182019101611890565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610bc4565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611922611402565b611961576040805162461bcd60e51b81526020600482018190526024820152600080516020612b7c833981519152604482015290519081900360640190fd5b61101081611d6d565b6000908152600160205260409020546001600160a01b0316151590565b3390565b60006119968261196a565b6119d15760405162461bcd60e51b815260040180806020018281038252602c815260200180612a1c602c913960400191505060405180910390fd5b60006119dc836111ba565b9050806001600160a01b0316846001600160a01b03161480611a175750836001600160a01b0316611a0c84610ca7565b6001600160a01b0316145b80611a275750611a2781856118ec565b949350505050565b611a3a838383611e0e565b611a448382611f52565b610e8e8282612047565b611a588282612085565b611a628282612047565b610f42816121b6565b611010611a77826111ba565b826121fa565b611a868261196a565b611ac15760405162461bcd60e51b815260040180806020018281038252602c815260200180612b50602c913960400191505060405180910390fd5b6000828152600c602090815260409091208251610e8e92840190612878565b8051610f4290600b906020840190612878565b5490565b611b018383611a4e565b611b0e6000848484612242565b610e8e5760405162461bcd60e51b81526004018080602001828103825260328152602001806129a06032913960400191505060405180910390fd5b611b5a600d8263ffffffff61247d16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b611ba2600d8263ffffffff6124fe16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b610f42828260405180602001604052806000815250611af7565b60006001600160a01b038216611c3a5760405162461bcd60e51b8152600401808060200182810382526022815260200180612b9c6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b606081611c7f57506040805180820190915260018152600360fc1b6020820152610bc4565b8160005b8115611c9757600101600a82049150611c83565b6060816040519080825280601f01601f191660200182016040528015611cc4576020820181803883390190505b50905060001982015b8515611d1257600a860660300160f81b82828060019003935081518110611cf057fe5b60200101906001600160f81b031916908160001a905350600a86049550611ccd565b50949350505050565b611d26848484611a2f565b611d3284848484612242565b61171a5760405162461bcd60e51b81526004018080602001828103825260328152602001806129a06032913960400191505060405180910390fd5b6001600160a01b038116611db25760405162461bcd60e51b81526004018080602001828103825260268152602001806129d26026913960400191505060405180910390fd5b600e546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b0316611e21826111ba565b6001600160a01b031614611e665760405162461bcd60e51b8152600401808060200182810382526029815260200180612bbe6029913960400191505060405180910390fd5b6001600160a01b038216611eab5760405162461bcd60e51b81526004018080602001828103825260248152602001806129f86024913960400191505060405180910390fd5b611eb481612565565b6001600160a01b0383166000908152600360205260409020611ed5906125a0565b6001600160a01b0382166000908152600360205260409020611ef6906125b7565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216600090815260056020526040812054611f7c90600163ffffffff6125c016565b600083815260066020526040902054909150808214612017576001600160a01b0384166000908152600560205260408120805484908110611fb957fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110611ff757fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906120409060001983016128f6565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166120e0576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6120e98161196a565b1561213b576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061217a906125b7565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6122048282612609565b6000818152600c60205260409020546002600019610100600184161502019091160415610f42576000818152600c60205260408120610f429161291a565b6000612256846001600160a01b0316612635565b61226257506001611a27565b600060606001600160a01b038616630a85bd0160e11b612280611987565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156122f95781810151838201526020016122e1565b50505050905090810190601f1680156123265780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b6020831061238e5780518252601f19909201916020918201910161236f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146123f0576040519150601f19603f3d011682016040523d82523d6000602084013e6123f5565b606091505b5091509150816124465780511561240f5780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806129a06032913960400191505060405180910390fd5b600081806020019051602081101561245d57600080fd5b50516001600160e01b031916630a85bd0160e11b149350611a2792505050565b6124878282611bf3565b156124d9576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6125088282611bf3565b6125435760405162461bcd60e51b8152600401808060200182810382526021815260200180612b036021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b03161561101057600090815260026020526040902080546001600160a01b0319169055565b80546125b390600163ffffffff6125c016565b9055565b80546001019055565b600061260283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061266e565b9392505050565b6126138282612705565b61261d8282611f52565b600081815260066020526040812055610f42816127dc565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611a27575050151592915050565b600081848411156126fd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126c25781810151838201526020016126aa565b50505050905090810190601f1680156126ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b816001600160a01b0316612718826111ba565b6001600160a01b03161461275d5760405162461bcd60e51b8152600401808060200182810382526025815260200180612c946025913960400191505060405180910390fd5b61276681612565565b6001600160a01b0382166000908152600360205260409020612787906125a0565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6007546000906127f390600163ffffffff6125c016565b6000838152600860205260408120546007805493945090928490811061281557fe5b90600052602060002001549050806007838154811061283057fe5b600091825260208083209091019290925582815260089091526040902082905560078054906128639060001983016128f6565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128b957805160ff19168380011785556128e6565b828001600101855582156128e6579182015b828111156128e65782518255916020019190600101906128cb565b506128f292915061295a565b5090565b815481835581811115610e8e57600083815260209020610e8e91810190830161295a565b50805460018160011615610100020316600290046000825580601f106129405750611010565b601f01602090049060005260206000209081019061101091905b610c5d91905b808211156128f2576000815560010161296056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a7231582034744a6ea0f47f2394dedb981432a3435e357bc750cff42268e01914b720562e64736f6c634300050f0032

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b446f7a6572446f6c6c56320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005446f7a6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006068747470733a2f2f717473616a346a3962632e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f76342f67616d652f646f7a65722f70322f66616e63792f6d6574612f76322f

-----Decoded View---------------
Arg [0] : _name (string): DozerDollV2
Arg [1] : _symbol (string): Dozer
Arg [2] : _baseURI (string): https://qtsaj4j9bc.execute-api.ap-southeast-1.amazonaws.com/prod/v4/game/dozer/p2/fancy/meta/v2/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 446f7a6572446f6c6c5632000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 446f7a6572000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [8] : 68747470733a2f2f717473616a346a3962632e657865637574652d6170692e61
Arg [9] : 702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f64
Arg [10] : 2f76342f67616d652f646f7a65722f70322f66616e63792f6d6574612f76322f


Deployed Bytecode Sourcemap

55504:2039:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55504:2039:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16488:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16488:135:0;-1:-1:-1;;;;;;16488:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;44285:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;44285:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56304:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56304:125:0;;:::i;:::-;;21450:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21450:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;21450:204:0;;;;;;;;;;;;;;20732:425;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20732:425:0;;;;;;;;:::i;35877:96::-;;;:::i;:::-;;;;;;;;;;;;;;;;23133:292;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23133:292:0;;;;;;;;;;;;;;;;;:::i;35486:232::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35486:232:0;;;;;;;;:::i;56435:165::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56435:165:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56435:165:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56435:165:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;56435:165:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56435:165:0;;-1:-1:-1;56435:165:0;;-1:-1:-1;;;;;56435:165:0:i;50426:135::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50426:135:0;;;;;;;;:::i;24087:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24087:134:0;;;;;;;;;;;;;;;;;:::i;52652:237::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52652:237:0;;:::i;56082:214::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56082:214:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56082:214:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56082:214:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;56082:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56082:214:0;;;;;;;;-1:-1:-1;56082:214:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;56082:214:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56082:214:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;56082:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56082:214:0;;-1:-1:-1;56082:214:0;;-1:-1:-1;;;;;56082:214:0:i;36319:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36319:199:0;;:::i;52043:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;52043:213:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;52043:213:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52043:213:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;52043:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52043:213:0;;-1:-1:-1;52043:213:0;;-1:-1:-1;;;;;52043:213:0:i;57001:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57001:106:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;57001:106:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;57001:106:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;57001:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;57001:106:0;;-1:-1:-1;57001:106:0;;-1:-1:-1;;;;;57001:106:0:i;20073:228::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20073:228:0;;:::i;56791:202::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;56791:202:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56791:202:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56791:202:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;56791:202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56791:202:0;;-1:-1:-1;56791:202:0;;-1:-1:-1;;;;;56791:202:0:i;46538:91::-;;;:::i;19636:211::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19636:211:0;-1:-1:-1;;;;;19636:211:0;;:::i;54663:140::-;;;:::i;51290:170::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;51290:170:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;51290:170:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51290:170:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51290:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;51290:170:0;;-1:-1:-1;51290:170:0;;-1:-1:-1;;;;;51290:170:0:i;53852:79::-;;;:::i;54218:94::-;;;:::i;44485:89::-;;;:::i;49512:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49512:92:0;-1:-1:-1;;;;;49512:92:0;;:::i;49612:79::-;;;:::i;50817:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50817:143:0;;;;;;;;:::i;21955:254::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21955:254:0;;;;;;;;;;:::i;56631:128::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;56631:128:0;;;;;;;;:::i;49395:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49395:109:0;-1:-1:-1;;;;;49395:109:0;;:::i;55897:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;55897:177:0;;;;;;;;:::i;24958:272::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;24958:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;24958:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24958:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;24958:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;24958:272:0;;-1:-1:-1;24958:272:0;;-1:-1:-1;;;;;24958:272:0:i;44887:557::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44887:557:0;;:::i;22539:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22539:147:0;;;;;;;;;;:::i;54958:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54958:109:0;-1:-1:-1;;;;;54958:109:0;;:::i;16488:135::-;-1:-1:-1;;;;;;16582:33:0;;16558:4;16582:33;;;;;;;;;;;;;16488:135;;;;:::o;44285:85::-;44357:5;44350:12;;;;;;;;-1:-1:-1;;44350:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44324:13;;44350:12;;44357:5;;44350:12;;44357:5;44350:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44285:85;;:::o;56304:125::-;56365:14;56370:8;56365:4;:14::i;:::-;56393:30;;;56402:10;56393:30;;;;;;;;;;;;;;;;;;;;;56304:125;:::o;21450:204::-;21509:7;21537:16;21545:7;21537;:16::i;:::-;21529:73;;;;-1:-1:-1;;;21529:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21622:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21622:24:0;;21450:204::o;20732:425::-;20796:13;20812:16;20820:7;20812;:16::i;:::-;20796:32;;20853:5;-1:-1:-1;;;;;20847:11:0;:2;-1:-1:-1;;;;;20847:11:0;;;20839:57;;;;-1:-1:-1;;;20839:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20933:5;-1:-1:-1;;;;;20917:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;20917:21:0;;:62;;;;20942:37;20959:5;20966:12;:10;:12::i;:::-;20942:16;:37::i;:::-;20909:154;;;;-1:-1:-1;;;20909:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21076:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21076:29:0;-1:-1:-1;;;;;21076:29:0;;;;;;;;;21121:28;;21076:24;;21121:28;;;;;;;20732:425;;;:::o;35877:96::-;35948:10;:17;35877:96;:::o;23133:292::-;23277:41;23296:12;:10;:12::i;:::-;23310:7;23277:18;:41::i;:::-;23269:103;;;;-1:-1:-1;;;23269:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23385:32;23399:4;23405:2;23409:7;23385:13;:32::i;:::-;23133:292;;;:::o;35486:232::-;35566:7;35602:16;35612:5;35602:9;:16::i;:::-;35594:5;:24;35586:80;;;;-1:-1:-1;;;35586:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35684:19:0;;;;;;:12;:19;;;;;:26;;35704:5;;35684:26;;;;;;;;;;;;;;35677:33;;35486:232;;;;:::o;56435:165::-;56515:9;56510:85;56535:8;:15;56531:1;:19;56510:85;;;56566:21;56575:8;56584:1;56575:11;;;;;;;;;;;;;;56566:8;:21::i;:::-;56552:3;;56510:85;;;;56435:165;:::o;50426:135::-;50496:4;49292:22;49301:12;:10;:12::i;:::-;49292:8;:22::i;:::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50513:18;50519:2;50523:7;50513:5;:18::i;:::-;-1:-1:-1;50549:4:0;50426:135;;;;:::o;24087:134::-;24174:39;24191:4;24197:2;24201:7;24174:39;;;;;;;;;;;;:16;:39::i;52652:237::-;52762:41;52781:12;:10;:12::i;52762:41::-;52754:102;;;;-1:-1:-1;;;52754:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52867:14;52873:7;52867:5;:14::i;:::-;52652:237;:::o;56082:214::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;56194:9;56189:102;56214:8;:15;56210:1;:19;56189:102;;;56245:38;56263:3;56267:1;56263:6;;;;;;;;;;;;;;56271:8;56280:1;56271:11;;;;;;;;;;;;;;56245:17;:38::i;:::-;56231:3;;56189:102;;36319:199;36377:7;36413:13;:11;:13::i;:::-;36405:5;:21;36397:78;;;;-1:-1:-1;;;36397:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36493:10;36504:5;36493:17;;;;;;;;;;;;;;;;36486:24;;36319:199;;;:::o;52043:213::-;52149:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52166:18;52172:2;52176:7;52166:5;:18::i;:::-;52195:31;52208:7;52217:8;52195:12;:31::i;:::-;-1:-1:-1;52244:4:0;52043:213;;;;;:::o;57001:106::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;57080:21;57092:8;57080:11;:21::i;20073:228::-;20128:7;20164:20;;;:11;:20;;;;;;-1:-1:-1;;;;;20164:20:0;20203:19;20195:73;;;;-1:-1:-1;;;20195:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20288:5;20073:228;-1:-1:-1;;20073:228:0:o;56791:202::-;56887:6;56882:106;56903:8;:15;56899:1;:19;56882:106;;;56934:46;56951:10;56963:3;56968:8;56977:1;56968:11;;;;;;;;;;;;;;56934:16;:46::i;:::-;56920:3;;56882:106;;46538:91;46613:8;46606:15;;;;;;;;-1:-1:-1;;46606:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46580:13;;46606:15;;46613:8;;46606:15;;46613:8;46606:15;;;;;;;;;;;;;;;;;;;;;;;;19636:211;19691:7;-1:-1:-1;;;;;19719:19:0;;19711:74;;;;-1:-1:-1;;;19711:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19805:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;54663:140::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;54746:6;;54725:40;;54762:1;;-1:-1:-1;;;;;54746:6:0;;54725:40;;54762:1;;54725:40;54776:6;:19;;-1:-1:-1;;;;;;54776:19:0;;;54663:140::o;51290:170::-;51384:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51401:29;51411:2;51415:7;51424:5;51401:9;:29::i;53852:79::-;53917:6;;-1:-1:-1;;;;;53917:6:0;53852:79;:::o;54218:94::-;54298:6;;54258:4;;-1:-1:-1;;;;;54298:6:0;54282:12;:10;:12::i;:::-;-1:-1:-1;;;;;54282:22:0;;54275:29;;54218:94;:::o;44485:89::-;44559:7;44552:14;;;;;;;;-1:-1:-1;;44552:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44526:13;;44552:14;;44559:7;;44552:14;;44559:7;44552:14;;;;;;;;;;;;;;;;;;;;;;;;49512:92;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49577:19;49588:7;49577:10;:19::i;49612:79::-;49656:27;49670:12;:10;:12::i;:::-;49656:13;:27::i;:::-;49612:79::o;50817:143::-;50891:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50908:22;50918:2;50922:7;50908:9;:22::i;21955:254::-;22041:12;:10;:12::i;:::-;-1:-1:-1;;;;;22035:18:0;:2;-1:-1:-1;;;;;22035:18:0;;;22027:56;;;;;-1:-1:-1;;;22027:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22135:8;22096:18;:32;22115:12;:10;:12::i;:::-;-1:-1:-1;;;;;22096:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22096:32:0;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;22096:47:0;;;;;;;;;;;22174:12;:10;:12::i;:::-;22159:42;;;;;;;;;;-1:-1:-1;;;;;22159:42:0;;;;;;;;;;;;;;21955:254;;:::o;56631:128::-;56710:43;56727:10;56739:3;56744:8;56710:16;:43::i;49395:109::-;49451:4;49475:21;:8;49488:7;49475:21;:12;:21;:::i;55897:177::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;55997:20;56003:3;56008:8;55997:5;:20::i;:::-;56026:42;56039:8;56049:18;56058:8;56049;:18::i;:::-;56026:12;:42::i;24958:272::-;25073:41;25092:12;:10;:12::i;:::-;25106:7;25073:18;:41::i;:::-;25065:103;;;;-1:-1:-1;;;25065:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25179:43;25197:4;25203:2;25207:7;25216:5;25179:17;:43::i;:::-;24958:272;;;;:::o;44887:557::-;44945:13;44979:16;44987:7;44979;:16::i;:::-;44971:76;;;;-1:-1:-1;;;44971:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45086:19;;;;:10;:19;;;;;;;;;45060:45;;;;;;-1:-1:-1;;45060:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;45086:19;45060:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45222:9;45216:23;45243:1;45216:28;45212:225;;;-1:-1:-1;;45261:9:0;;;;;;;;;-1:-1:-1;45261:9:0;;;;45212:225;45404:8;45414:9;45387:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45387:37:0;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;45387:37:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;45387:37:0;;;45373:52;;;;;22539:147;-1:-1:-1;;;;;22643:25:0;;;22619:4;22643:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22539:147::o;54958:109::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;55031:28;55050:8;55031:18;:28::i;26423:155::-;26480:4;26513:20;;;:11;:20;;;;;;-1:-1:-1;;;;;26513:20:0;26551:19;;;26423:155::o;858:98::-;938:10;858:98;:::o;26948:333::-;27033:4;27058:16;27066:7;27058;:16::i;:::-;27050:73;;;;-1:-1:-1;;;27050:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27134:13;27150:16;27158:7;27150;:16::i;:::-;27134:32;;27196:5;-1:-1:-1;;;;;27185:16:0;:7;-1:-1:-1;;;;;27185:16:0;;:51;;;;27229:7;-1:-1:-1;;;;;27205:31:0;:20;27217:7;27205:11;:20::i;:::-;-1:-1:-1;;;;;27205:31:0;;27185:51;:87;;;;27240:32;27257:5;27264:7;27240:16;:32::i;:::-;27177:96;26948:333;-1:-1:-1;;;;26948:333:0:o;36902:245::-;36988:38;37008:4;37014:2;37018:7;36988:19;:38::i;:::-;37039:47;37072:4;37078:7;37039:32;:47::i;:::-;37099:40;37127:2;37131:7;37099:27;:40::i;37412:202::-;37476:24;37488:2;37492:7;37476:11;:24::i;:::-;37513:40;37541:2;37545:7;37513:27;:40::i;:::-;37566;37598:7;37566:31;:40::i;30166:92::-;30218:32;30224:16;30232:7;30224;:16::i;:::-;30242:7;30218:5;:32::i;45779:207::-;45871:16;45879:7;45871;:16::i;:::-;45863:73;;;;-1:-1:-1;;;45863:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45947:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;46207:90::-;46271:18;;;;:8;;:18;;;;;:::i;15077:114::-;15169:14;;15077:114::o;28538:242::-;28626:18;28632:2;28636:7;28626:5;:18::i;:::-;28663:54;28694:1;28698:2;28702:7;28711:5;28663:22;:54::i;:::-;28655:117;;;;-1:-1:-1;;;28655:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49699:122;49756:21;:8;49769:7;49756:21;:12;:21;:::i;:::-;49793:20;;-1:-1:-1;;;;;49793:20:0;;;;;;;;49699:122;:::o;49829:130::-;49889:24;:8;49905:7;49889:24;:15;:24;:::i;:::-;49929:22;;-1:-1:-1;;;;;49929:22:0;;;;;;;;49829:130;:::o;27822:102::-;27890:26;27900:2;27904:7;27890:26;;;;;;;;;;;;:9;:26::i;48660:203::-;48732:4;-1:-1:-1;;;;;48757:21:0;;48749:68;;;;-1:-1:-1;;;48749:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48835:20:0;:11;:20;;;;;;;;;;;;;;;48660:203::o;57113:427::-;57174:27;57214:7;57210:42;;-1:-1:-1;57234:10:0;;;;;;;;;;;;-1:-1:-1;;;57234:10:0;;;;;;57210:42;57267:2;57258:6;57291:57;57298:6;;57291:57;;57317:5;;57338:2;57333:7;;;;57291:57;;;57354:17;57384:3;57374:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;57374:14:0;87:34:-1;135:17;;-1:-1;57374:14:0;-1:-1:-1;57354:34:0;-1:-1:-1;;;57404:7:0;;57418:91;57425:7;;57418:91;;57478:2;57473;:7;57468:2;:12;57457:25;;57445:4;57450:3;;;;;;;57445:9;;;;;;;;;;;:37;-1:-1:-1;;;;;57445:37:0;;;;;;;;-1:-1:-1;57499:2:0;57493:8;;;;57418:91;;;-1:-1:-1;57529:4:0;57113:427;-1:-1:-1;;;;57113:427:0:o;25949:272::-;26059:32;26073:4;26079:2;26083:7;26059:13;:32::i;:::-;26110:48;26133:4;26139:2;26143:7;26152:5;26110:22;:48::i;:::-;26102:111;;;;-1:-1:-1;;;26102:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55173:229;-1:-1:-1;;;;;55247:22:0;;55239:73;;;;-1:-1:-1;;;55239:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55349:6;;55328:38;;-1:-1:-1;;;;;55328:38:0;;;;55349:6;;55328:38;;55349:6;;55328:38;55377:6;:17;;-1:-1:-1;;;;;;55377:17:0;-1:-1:-1;;;;;55377:17:0;;;;;;;;;;55173:229::o;30644:459::-;30758:4;-1:-1:-1;;;;;30738:24:0;:16;30746:7;30738;:16::i;:::-;-1:-1:-1;;;;;30738:24:0;;30730:78;;;;-1:-1:-1;;;30730:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30827:16:0;;30819:65;;;;-1:-1:-1;;;30819:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30897:23;30912:7;30897:14;:23::i;:::-;-1:-1:-1;;;;;30933:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;30979:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;31025:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;31025:25:0;-1:-1:-1;;;;;31025:25:0;;;;;;;;;31068:27;;31025:20;;31068:27;;;;;;;30644:459;;;:::o;40087:1148::-;-1:-1:-1;;;;;40378:18:0;;40353:22;40378:18;;;:12;:18;;;;;:25;:32;;40408:1;40378:32;:29;:32;:::i;:::-;40421:18;40442:26;;;:17;:26;;;;;;40353:57;;-1:-1:-1;40575:28:0;;;40571:328;;-1:-1:-1;;;;;40642:18:0;;40620:19;40642:18;;;:12;:18;;;;;:34;;40661:14;;40642:34;;;;;;;;;;;;;;40620:56;;40726:11;40693:12;:18;40706:4;-1:-1:-1;;;;;40693:18:0;-1:-1:-1;;;;;40693:18:0;;;;;;;;;;;;40712:10;40693:30;;;;;;;;;;;;;;;;;;;:44;;;;40810:30;;;:17;:30;;;;;:43;;;40571:328;-1:-1:-1;;;;;40988:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;40988:27:0;;;:::i;:::-;;40087:1148;;;;:::o;38909:186::-;-1:-1:-1;;;;;39023:16:0;;;;;;;:12;:16;;;;;;;;:23;;38994:26;;;:17;:26;;;;;:52;;;39057:16;;;39:1:-1;23:18;;45:23;;39057:30:0;;;;;;;;38909:186::o;29033:335::-;-1:-1:-1;;;;;29105:16:0;;29097:61;;;;;-1:-1:-1;;;29097:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29178:16;29186:7;29178;:16::i;:::-;29177:17;29169:58;;;;;-1:-1:-1;;;29169:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29240:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;29240:25:0;-1:-1:-1;;;;;29240:25:0;;;;;;;;29276:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;29327;;29352:7;;-1:-1:-1;;;;;29327:33:0;;;29344:1;;29327:33;;29344:1;;29327:33;29033:335;;:::o;39296:164::-;39400:10;:17;;39373:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;39428:24:0;;;;;;;39296:164::o;46931:247::-;46998:27;47010:5;47017:7;46998:11;:27::i;:::-;47084:19;;;;:10;:19;;;;;47078:33;;-1:-1:-1;;47078:33:0;;;;;;;;;;;:38;47074:97;;47140:19;;;;:10;:19;;;;;47133:26;;;:::i;31755:1079::-;31877:4;31904:15;:2;-1:-1:-1;;;;;31904:13:0;;:15::i;:::-;31899:60;;-1:-1:-1;31943:4:0;31936:11;;31899:60;32030:12;32044:23;-1:-1:-1;;;;;32071:7:0;;-1:-1:-1;;;32176:12:0;:10;:12::i;:::-;32203:4;32222:7;32244:5;32079:181;;;;;;-1:-1:-1;;;;;32079:181:0;-1:-1:-1;;;;;32079:181:0;;;;;;-1:-1:-1;;;;;32079:181:0;-1:-1:-1;;;;;32079:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32079:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32079:181:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;32079:181:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;32079:181:0;;;179:29:-1;;;;160:49;;32071:190:0;;;32079:181;;32071:190;;-1:-1:-1;32071:190:0;;-1:-1:-1;25:18;-1:-1;32071:190:0;-1:-1:-1;32071:190:0;;-1:-1:-1;32071:190:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32071:190:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;32029:232:0;;;;32277:7;32272:555;;32305:17;;:21;32301:384;;32473:10;32467:17;32534:15;32521:10;32517:2;32513:19;32506:44;32421:148;32609:60;;-1:-1:-1;;;32609:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32272:555;32717:13;32744:10;32733:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32733:32:0;-1:-1:-1;;;;;;32788:26:0;-1:-1:-1;;;32788:26:0;;-1:-1:-1;32780:35:0;;-1:-1:-1;;;32780:35:0;48124:178;48202:18;48206:4;48212:7;48202:3;:18::i;:::-;48201:19;48193:63;;;;;-1:-1:-1;;;48193:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48267:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;48267:27:0;48290:4;48267:27;;;48124:178::o;48382:183::-;48462:18;48466:4;48472:7;48462:3;:18::i;:::-;48454:64;;;;-1:-1:-1;;;48454:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48529:20:0;48552:5;48529:20;;;;;;;;;;;:28;;-1:-1:-1;;48529:28:0;;;48382:183::o;33002:175::-;33102:1;33066:24;;;:15;:24;;;;;;-1:-1:-1;;;;;33066:24:0;:38;33062:108;;33156:1;33121:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;33121:37:0;;;33002:175::o;15388:110::-;15469:14;;:21;;15488:1;15469:21;:18;:21;:::i;:::-;15452:38;;15388:110::o;15199:181::-;15353:19;;15371:1;15353:19;;;15199:181::o;6741:136::-;6799:7;6826:43;6830:1;6833;6826:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6819:50;6741:136;-1:-1:-1;;;6741:136:0:o;37898:372::-;37965:27;37977:5;37984:7;37965:11;:27::i;:::-;38005:48;38038:5;38045:7;38005:32;:48::i;:::-;38203:1;38174:26;;;:17;:26;;;;;:30;38217:45;38192:7;38217:36;:45::i;11645:619::-;11705:4;12173:20;;12016:66;12213:23;;;;;;:42;;-1:-1:-1;;12240:15:0;;;12205:51;-1:-1:-1;;11645:619:0:o;7214:192::-;7300:7;7336:12;7328:6;;;;7320:29;;;;-1:-1:-1;;;7320:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7320:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7372:5:0;;;7214:192::o;29645:333::-;29740:5;-1:-1:-1;;;;;29720:25:0;:16;29728:7;29720;:16::i;:::-;-1:-1:-1;;;;;29720:25:0;;29712:75;;;;-1:-1:-1;;;29712:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29800:23;29815:7;29800:14;:23::i;:::-;-1:-1:-1;;;;;29836:24:0;;;;;;:17;:24;;;;;:36;;:34;:36::i;:::-;29914:1;29883:20;;;:11;:20;;;;;;:33;;-1:-1:-1;;;;;;29883:33:0;;;29934:36;29895:7;;29914:1;-1:-1:-1;;;;;29934:36:0;;;;;29914:1;;29934:36;29645:333;;:::o;41530:1082::-;41808:10;:17;41783:22;;41808:24;;41830:1;41808:24;:21;:24;:::i;:::-;41843:18;41864:24;;;:15;:24;;;;;;42237:10;:26;;41783:49;;-1:-1:-1;41864:24:0;;41783:49;;42237:26;;;;;;;;;;;;;;42215:48;;42301:11;42276:10;42287;42276:22;;;;;;;;;;;;;;;;;;;:36;;;;42381:28;;;:15;:28;;;;;;:41;;;42546:10;:19;;;;;-1:-1:-1;;42546:19:0;;;:::i;:::-;-1:-1:-1;;;42603:1:0;42576:24;;;-1:-1:-1;42576:15:0;:24;;;;;:28;41530:1082::o;55504:2039::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55504:2039:0;;;-1:-1:-1;55504:2039:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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