ETH Price: $3,298.88 (-3.31%)
Gas: 21 Gwei

Token

Fire (FIRE)
 

Overview

Max Total Supply

17,164.64417795053 FIRE

Holders

527

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2 FIRE

Value
$0.00
0xc6cfeDaAA225Bb433E00d762FE898707a3c077aD
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fire

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 11 : Fire.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

contract Fire is ERC20Burnable, Ownable {
    using SafeMath for uint256;

    uint256 public MAX_WALLET_STAKED = 10;
    uint256 public EMISSIONS_RATE = 11574070000000;
    uint256 public CLAIM_END_TIME = 1704067140;

    address nullAddress = 0x0000000000000000000000000000000000000000;

    address public mightyBabyDragonsAddress;

    //Mapping of Dragon to timestamp
    mapping(uint256 => uint256) internal tokenIdToTimeStamp;

    //Mapping of Dragon to staker
    mapping(uint256 => address) internal tokenIdToStaker;

    //Mapping of staker to Dragons
    mapping(address => uint256[]) internal stakerToTokenIds;

    event actionDone(address _to);

    constructor() ERC20("Fire", "FIRE") {}

    function setMightyBabyDragonsAddress(address _mightybabyDragonsAddress)
        public
        onlyOwner
    {
        mightyBabyDragonsAddress = _mightybabyDragonsAddress;
        return;
    }

    function setMaxWalletStaked(uint256 _max) public onlyOwner {
        MAX_WALLET_STAKED = _max;
        return;
    }

    function setEmissionRate(uint256 _rate) public onlyOwner {
        EMISSIONS_RATE = _rate;
        return;
    }

    function setClaimEndTime(uint256 _time) public onlyOwner {
        CLAIM_END_TIME = _time;
        return;
    }

    function getTokensStaked(address staker)
        public
        view
        returns (uint256[] memory)
    {
        return stakerToTokenIds[staker];
    }

    function remove(address staker, uint256 index) internal {
        if (index >= stakerToTokenIds[staker].length) return;

        for (uint256 i = index; i < stakerToTokenIds[staker].length - 1; i++) {
            stakerToTokenIds[staker][i] = stakerToTokenIds[staker][i + 1];
        }
        stakerToTokenIds[staker].pop();
    }

    function removeTokenIdFromStaker(address staker, uint256 tokenId) internal {
        for (uint256 i = 0; i < stakerToTokenIds[staker].length; i++) {
            if (stakerToTokenIds[staker][i] == tokenId) {
                //This is the tokenId to remove;
                remove(staker, i);
            }
        }
    }

    function stakeByIds(uint256[] memory tokenIds) public {
        require(
            stakerToTokenIds[msg.sender].length + tokenIds.length <=
                MAX_WALLET_STAKED,
            "Max 10 Dragons staked"
        );

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                IERC721(mightyBabyDragonsAddress).ownerOf(tokenIds[i]) ==
                    msg.sender &&
                    tokenIdToStaker[tokenIds[i]] == nullAddress,
                "Token must be stakable by you!"
            );

            IERC721(mightyBabyDragonsAddress).transferFrom(
                msg.sender,
                address(this),
                tokenIds[i]
            );

            stakerToTokenIds[msg.sender].push(tokenIds[i]);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
            tokenIdToStaker[tokenIds[i]] = msg.sender;
            emit actionDone(msg.sender);
        }
    }

    function unstakeAll() public {
        require(
            stakerToTokenIds[msg.sender].length > 0,
            "Must have at least one token staked!"
        );
        uint256 totalRewards = 0;

        for (uint256 i = stakerToTokenIds[msg.sender].length; i > 0; i--) {
            uint256 tokenId = stakerToTokenIds[msg.sender][i - 1];

            IERC721(mightyBabyDragonsAddress).transferFrom(
                address(this),
                msg.sender,
                tokenId
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenId]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenId);

            tokenIdToStaker[tokenId] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
    }

    function unstakeByIds(uint256[] memory tokenIds) public {
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Message Sender was not original staker!"
            );

            IERC721(mightyBabyDragonsAddress).transferFrom(
                address(this),
                msg.sender,
                tokenIds[i]
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenIds[i]);

            tokenIdToStaker[tokenIds[i]] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
        emit actionDone(msg.sender);
    }

    function claimByTokenId(uint256 tokenId) public {
        require(
            tokenIdToStaker[tokenId] == msg.sender,
            "Dragon is not claimable by you!"
        );
        require(block.timestamp < CLAIM_END_TIME, "Claim period is over!");

        _mint(
            msg.sender,
            ((block.timestamp - tokenIdToTimeStamp[tokenId]) * EMISSIONS_RATE)
        );

        tokenIdToTimeStamp[tokenId] = block.timestamp;
        emit actionDone(msg.sender);
    }

    function claimAll() public {
        require(block.timestamp < CLAIM_END_TIME, "Claim period is over!");
        uint256[] memory tokenIds = stakerToTokenIds[msg.sender];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Token is not claimable by you!"
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
        }

        _mint(msg.sender, totalRewards);
        emit actionDone(msg.sender);
    }

    function getAllRewards(address staker) public view returns (uint256) {
        uint256[] memory tokenIds = stakerToTokenIds[staker];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);
        }

        return totalRewards;
    }

    function getRewardsByTokenId(uint256 tokenId)
        public
        view
        returns (uint256)
    {
        require(
            tokenIdToStaker[tokenId] != nullAddress,
            "Token is not staked!"
        );

        uint256 secondsStaked = block.timestamp - tokenIdToTimeStamp[tokenId];
        return secondsStaked * EMISSIONS_RATE;
    }

    function getStaker(uint256 tokenId) public view returns (address) {
        return tokenIdToStaker[tokenId];
    }
}

File 2 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.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 4 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 5 of 11 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

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

File 7 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 11 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 9 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 10 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 11 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"}],"name":"actionDone","type":"event"},{"inputs":[],"name":"CLAIM_END_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSIONS_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_STAKED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimByTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getAllRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRewardsByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStaker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTokensStaked","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mightyBabyDragonsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setClaimEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxWalletStaked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mightybabyDragonsAddress","type":"address"}],"name":"setMightyBabyDragonsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakeByIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstakeAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstakeByIds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600655650a86cc54b9806007556365920044600855600980546001600160a01b03191690553480156200003857600080fd5b50604051806040016040528060048152602001634669726560e01b815250604051806040016040528060048152602001634649524560e01b81525081600390805190602001906200008b9291906200011a565b508051620000a19060049060208401906200011a565b505050620000be620000b8620000c460201b60201c565b620000c8565b620001fd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012890620001c0565b90600052602060002090601f0160209004810192826200014c576000855562000197565b82601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b5b80821115620001a55760008155600101620001aa565b600181811c90821680620001d557607f821691505b60208210811415620001f757634e487b7160e01b600052602260045260246000fd5b50919050565b611ff8806200020d6000396000f3fe608060405234801561001057600080fd5b506004361061018b5760003560e01c806306fdde0314610190578063095ea7b3146101ae57806318160ddd146101d15780632209d38c146101e357806323b872dd146101ec578063313ce567146101ff57806335322f371461020e578063362a3fad14610218578063395093511461022b57806340d107a51461023e57806342966c681461025e57806348aa193614610271578063515ec1051461028457806352eb7796146102975780635e1f1e2a146102b757806370a08231146102ca578063715018a6146102f357806379cc6790146102fb5780638ab8fab31461030e5780638da5cb5b1461031757806395d89b411461031f5780639a3aa76614610327578063a1bdb15e1461033a578063a457c2d71461034d578063a9059cbb14610360578063ba7e766214610373578063d1058e591461037c578063d9ffad4714610384578063dd62ed3e14610397578063e150bb5d146103d0578063e3c998fe146103e3578063f2fde38b1461040c578063f43dbe601461041f575b600080fd5b610198610432565b6040516101a59190611b6f565b60405180910390f35b6101c16101bc366004611bd9565b6104c4565b60405190151581526020016101a5565b6002545b6040519081526020016101a5565b6101d560085481565b6101c16101fa366004611c05565b6104da565b604051601281526020016101a5565b610216610589565b005b6101d5610226366004611c46565b610732565b6101c1610239366004611bd9565b61080e565b600a54610251906001600160a01b031681565b6040516101a59190611c63565b61021661026c366004611c77565b61084a565b61021661027f366004611ca6565b610854565b6101d5610292366004611c77565b610aa8565b6102aa6102a5366004611c46565b610b3e565b6040516101a59190611d63565b6102166102c5366004611c77565b610baa565b6101d56102d8366004611c46565b6001600160a01b031660009081526020819052604090205490565b610216610c9c565b610216610309366004611bd9565b610cd7565b6101d560065481565b610251610d5d565b610198610d6c565b610216610335366004611c77565b610d7b565b610216610348366004611c77565b610daf565b6101c161035b366004611bd9565b610de3565b6101c161036e366004611bd9565b610e7c565b6101d560075481565b610216610e89565b610216610392366004611ca6565b61103b565b6101d56103a5366004611da7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102166103de366004611c46565b611371565b6102516103f1366004611c77565b6000908152600c60205260409020546001600160a01b031690565b61021661041a366004611c46565b6113c0565b61021661042d366004611c77565b61145d565b60606003805461044190611de0565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90611de0565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d1338484611491565b50600192915050565b60006104e78484846115b5565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61057e8533858403611491565b506001949350505050565b336000908152600d60205260409020546105f15760405162461bcd60e51b8152602060048201526024808201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e207374616044820152636b65642160e01b6064820152608401610568565b336000908152600d60205260408120545b801561072457336000908152600d60205260408120610622600184611e31565b8154811061063257610632611e48565b600091825260209091200154600a546040516323b872dd60e01b81529192506001600160a01b0316906323b872dd9061067390309033908690600401611e5e565b600060405180830381600087803b15801561068d57600080fd5b505af11580156106a1573d6000803e3d6000fd5b50506007546000848152600b60205260409020549092506106c3915042611e31565b6106cd9190611e82565b6106d79084611ea1565b92506106e33382611772565b6009546000918252600c602052604090912080546001600160a01b0319166001600160a01b039092169190911790558061071c81611eb9565b915050610602565b5061072f33826117ef565b50565b6001600160a01b0381166000908152600d602090815260408083208054825181850281018501909352808352849383018282801561078f57602002820191906000526020600020905b81548152602001906001019080831161077b575b505050505090506000805b825181101561080657600754600b60008584815181106107bc576107bc611e48565b6020026020010151815260200190815260200160002054426107de9190611e31565b6107e89190611e82565b6107f29083611ea1565b9150806107fe81611ed0565b91505061079a565b509392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104d1918590610845908690611ea1565b611491565b61072f33826118bc565b6000805b8251811015610a7457336001600160a01b0316600c600085848151811061088157610881611e48565b6020908102919091018101518252810191909152604001600020546001600160a01b0316146109025760405162461bcd60e51b815260206004820152602760248201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c206044820152667374616b65722160c81b6064820152608401610568565b600a5483516001600160a01b03909116906323b872dd903090339087908690811061092f5761092f611e48565b60200260200101516040518463ffffffff1660e01b815260040161095593929190611e5e565b600060405180830381600087803b15801561096f57600080fd5b505af1158015610983573d6000803e3d6000fd5b50505050600754600b60008584815181106109a0576109a0611e48565b6020026020010151815260200190815260200160002054426109c29190611e31565b6109cc9190611e82565b6109d69083611ea1565b91506109fb338483815181106109ee576109ee611e48565b6020026020010151611772565b600960009054906101000a90046001600160a01b0316600c6000858481518110610a2757610a27611e48565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610a6c90611ed0565b915050610858565b50610a7f33826117ef565b600080516020611f8383398151915233604051610a9c9190611c63565b60405180910390a15050565b6009546000828152600c602052604081205490916001600160a01b0391821691161415610b0e5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74207374616b65642160601b6044820152606401610568565b6000828152600b6020526040812054610b279042611e31565b905060075481610b379190611e82565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610b9e57602002820191906000526020600020905b815481526020019060010190808311610b8a575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610c105760405162461bcd60e51b815260206004820152601f60248201527f447261676f6e206973206e6f7420636c61696d61626c6520627920796f7521006044820152606401610568565b6008544210610c315760405162461bcd60e51b815260040161056890611eeb565b6007546000828152600b6020526040902054610c62913391610c539042611e31565b610c5d9190611e82565b6117ef565b6000818152600b60205260409081902042905551600080516020611f8383398151915290610c91903390611c63565b60405180910390a150565b33610ca5610d5d565b6001600160a01b031614610ccb5760405162461bcd60e51b815260040161056890611f1a565b610cd560006119f8565b565b6000610ce383336103a5565b905081811015610d415760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610568565b610d4e8333848403611491565b610d5883836118bc565b505050565b6005546001600160a01b031690565b60606004805461044190611de0565b33610d84610d5d565b6001600160a01b031614610daa5760405162461bcd60e51b815260040161056890611f1a565b600855565b33610db8610d5d565b6001600160a01b031614610dde5760405162461bcd60e51b815260040161056890611f1a565b600755565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610568565b610e723385858403611491565b5060019392505050565b60006104d13384846115b5565b6008544210610eaa5760405162461bcd60e51b815260040161056890611eeb565b336000908152600d6020908152604080832080548251818502810185019093528083529192909190830182828015610f0157602002820191906000526020600020905b815481526020019060010190808311610eed575b505050505090506000805b8251811015610a7457336001600160a01b0316600c6000858481518110610f3557610f35611e48565b6020908102919091018101518252810191909152604001600020546001600160a01b031614610fa65760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610568565b600754600b6000858481518110610fbf57610fbf611e48565b602002602001015181526020019081526020016000205442610fe19190611e31565b610feb9190611e82565b610ff59083611ea1565b915042600b600085848151811061100e5761100e611e48565b6020026020010151815260200190815260200160002081905550808061103390611ed0565b915050610f0c565b6006548151336000908152600d602052604090205461105a9190611ea1565b11156110a05760405162461bcd60e51b815260206004820152601560248201527413585e080c4c08111c9859dbdb9cc81cdd185ad959605a1b6044820152606401610568565b60005b815181101561136d57600a54825133916001600160a01b031690636352211e908590859081106110d5576110d5611e48565b60200260200101516040518263ffffffff1660e01b81526004016110fb91815260200190565b602060405180830381865afa158015611118573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113c9190611f4f565b6001600160a01b031614801561119c575060095482516001600160a01b0390911690600c9060009085908590811061117657611176611e48565b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b6111e85760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206d757374206265207374616b61626c6520627920796f752100006044820152606401610568565b600a5482516001600160a01b03909116906323b872dd903390309086908690811061121557611215611e48565b60200260200101516040518463ffffffff1660e01b815260040161123b93929190611e5e565b600060405180830381600087803b15801561125557600080fd5b505af1158015611269573d6000803e3d6000fd5b5050336000908152600d6020526040902084519092508491508390811061129257611292611e48565b602090810291909101810151825460018101845560009384529183209091015582514291600b918590859081106112cb576112cb611e48565b602002602001015181526020019081526020016000208190555033600c60008484815181106112fc576112fc611e48565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600080516020611f83833981519152336040516113539190611c63565b60405180910390a18061136581611ed0565b9150506110a3565b5050565b3361137a610d5d565b6001600160a01b0316146113a05760405162461bcd60e51b815260040161056890611f1a565b600a80546001600160a01b0383166001600160a01b031990911617905550565b336113c9610d5d565b6001600160a01b0316146113ef5760405162461bcd60e51b815260040161056890611f1a565b6001600160a01b0381166114545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610568565b61072f816119f8565b33611466610d5d565b6001600160a01b03161461148c5760405162461bcd60e51b815260040161056890611f1a565b600655565b6001600160a01b0383166114f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610568565b6001600160a01b0382166115545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610568565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116195760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610568565b6001600160a01b03821661167b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610568565b6001600160a01b038316600090815260208190526040902054818110156116f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610568565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061172a908490611ea1565b92505081905550826001600160a01b0316846001600160a01b0316600080516020611fa38339815191528460405161176491815260200190565b60405180910390a350505050565b60005b6001600160a01b0383166000908152600d6020526040902054811015610d58576001600160a01b0383166000908152600d602052604090208054839190839081106117c2576117c2611e48565b906000526020600020015414156117dd576117dd8382611a4a565b806117e781611ed0565b915050611775565b6001600160a01b0382166118455760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610568565b80600260008282546118579190611ea1565b90915550506001600160a01b03821660009081526020819052604081208054839290611884908490611ea1565b90915550506040518181526001600160a01b03831690600090600080516020611fa38339815191529060200160405180910390a35050565b6001600160a01b03821661191c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610568565b6001600160a01b038216600090815260208190526040902054818110156119905760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610568565b6001600160a01b03831660009081526020819052604081208383039055600280548492906119bf908490611e31565b90915550506040518281526000906001600160a01b03851690600080516020611fa38339815191529060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d60205260409020548110611a6d575050565b805b6001600160a01b0383166000908152600d6020526040902054611a9490600190611e31565b811015611b2d576001600160a01b0383166000908152600d60205260409020611abe826001611ea1565b81548110611ace57611ace611e48565b9060005260206000200154600d6000856001600160a01b03166001600160a01b031681526020019081526020016000208281548110611b0f57611b0f611e48565b60009182526020909120015580611b2581611ed0565b915050611a6f565b506001600160a01b0382166000908152600d60205260409020805480611b5557611b55611f6c565b600190038181906000526020600020016000905590555050565b600060208083528351808285015260005b81811015611b9c57858101830151858201604001528201611b80565b81811115611bae576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461072f57600080fd5b60008060408385031215611bec57600080fd5b8235611bf781611bc4565b946020939093013593505050565b600080600060608486031215611c1a57600080fd5b8335611c2581611bc4565b92506020840135611c3581611bc4565b929592945050506040919091013590565b600060208284031215611c5857600080fd5b8135610b3781611bc4565b6001600160a01b0391909116815260200190565b600060208284031215611c8957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611cb957600080fd5b82356001600160401b0380821115611cd057600080fd5b818501915085601f830112611ce457600080fd5b813581811115611cf657611cf6611c90565b8060051b604051601f19603f83011681018181108582111715611d1b57611d1b611c90565b604052918252848201925083810185019188831115611d3957600080fd5b938501935b82851015611d5757843584529385019392850192611d3e565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d9b57835183529284019291840191600101611d7f565b50909695505050505050565b60008060408385031215611dba57600080fd5b8235611dc581611bc4565b91506020830135611dd581611bc4565b809150509250929050565b600181811c90821680611df457607f821691505b60208210811415611e1557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611e4357611e43611e1b565b500390565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000816000190483118215151615611e9c57611e9c611e1b565b500290565b60008219821115611eb457611eb4611e1b565b500190565b600081611ec857611ec8611e1b565b506000190190565b6000600019821415611ee457611ee4611e1b565b5060010190565b602080825260159082015274436c61696d20706572696f64206973206f7665722160581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611f6157600080fd5b8151610b3781611bc4565b634e487b7160e01b600052603160045260246000fdfe7bd1a60376a08625bf75fcef878a07272e2dacc044ca5000c76212c06bbb7e1cddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220448dc254404f360bf6b70b5a16424bee952ac5d47fa17fa14d8a4e75631a3e8664736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018b5760003560e01c806306fdde0314610190578063095ea7b3146101ae57806318160ddd146101d15780632209d38c146101e357806323b872dd146101ec578063313ce567146101ff57806335322f371461020e578063362a3fad14610218578063395093511461022b57806340d107a51461023e57806342966c681461025e57806348aa193614610271578063515ec1051461028457806352eb7796146102975780635e1f1e2a146102b757806370a08231146102ca578063715018a6146102f357806379cc6790146102fb5780638ab8fab31461030e5780638da5cb5b1461031757806395d89b411461031f5780639a3aa76614610327578063a1bdb15e1461033a578063a457c2d71461034d578063a9059cbb14610360578063ba7e766214610373578063d1058e591461037c578063d9ffad4714610384578063dd62ed3e14610397578063e150bb5d146103d0578063e3c998fe146103e3578063f2fde38b1461040c578063f43dbe601461041f575b600080fd5b610198610432565b6040516101a59190611b6f565b60405180910390f35b6101c16101bc366004611bd9565b6104c4565b60405190151581526020016101a5565b6002545b6040519081526020016101a5565b6101d560085481565b6101c16101fa366004611c05565b6104da565b604051601281526020016101a5565b610216610589565b005b6101d5610226366004611c46565b610732565b6101c1610239366004611bd9565b61080e565b600a54610251906001600160a01b031681565b6040516101a59190611c63565b61021661026c366004611c77565b61084a565b61021661027f366004611ca6565b610854565b6101d5610292366004611c77565b610aa8565b6102aa6102a5366004611c46565b610b3e565b6040516101a59190611d63565b6102166102c5366004611c77565b610baa565b6101d56102d8366004611c46565b6001600160a01b031660009081526020819052604090205490565b610216610c9c565b610216610309366004611bd9565b610cd7565b6101d560065481565b610251610d5d565b610198610d6c565b610216610335366004611c77565b610d7b565b610216610348366004611c77565b610daf565b6101c161035b366004611bd9565b610de3565b6101c161036e366004611bd9565b610e7c565b6101d560075481565b610216610e89565b610216610392366004611ca6565b61103b565b6101d56103a5366004611da7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102166103de366004611c46565b611371565b6102516103f1366004611c77565b6000908152600c60205260409020546001600160a01b031690565b61021661041a366004611c46565b6113c0565b61021661042d366004611c77565b61145d565b60606003805461044190611de0565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90611de0565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d1338484611491565b50600192915050565b60006104e78484846115b5565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61057e8533858403611491565b506001949350505050565b336000908152600d60205260409020546105f15760405162461bcd60e51b8152602060048201526024808201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e207374616044820152636b65642160e01b6064820152608401610568565b336000908152600d60205260408120545b801561072457336000908152600d60205260408120610622600184611e31565b8154811061063257610632611e48565b600091825260209091200154600a546040516323b872dd60e01b81529192506001600160a01b0316906323b872dd9061067390309033908690600401611e5e565b600060405180830381600087803b15801561068d57600080fd5b505af11580156106a1573d6000803e3d6000fd5b50506007546000848152600b60205260409020549092506106c3915042611e31565b6106cd9190611e82565b6106d79084611ea1565b92506106e33382611772565b6009546000918252600c602052604090912080546001600160a01b0319166001600160a01b039092169190911790558061071c81611eb9565b915050610602565b5061072f33826117ef565b50565b6001600160a01b0381166000908152600d602090815260408083208054825181850281018501909352808352849383018282801561078f57602002820191906000526020600020905b81548152602001906001019080831161077b575b505050505090506000805b825181101561080657600754600b60008584815181106107bc576107bc611e48565b6020026020010151815260200190815260200160002054426107de9190611e31565b6107e89190611e82565b6107f29083611ea1565b9150806107fe81611ed0565b91505061079a565b509392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104d1918590610845908690611ea1565b611491565b61072f33826118bc565b6000805b8251811015610a7457336001600160a01b0316600c600085848151811061088157610881611e48565b6020908102919091018101518252810191909152604001600020546001600160a01b0316146109025760405162461bcd60e51b815260206004820152602760248201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c206044820152667374616b65722160c81b6064820152608401610568565b600a5483516001600160a01b03909116906323b872dd903090339087908690811061092f5761092f611e48565b60200260200101516040518463ffffffff1660e01b815260040161095593929190611e5e565b600060405180830381600087803b15801561096f57600080fd5b505af1158015610983573d6000803e3d6000fd5b50505050600754600b60008584815181106109a0576109a0611e48565b6020026020010151815260200190815260200160002054426109c29190611e31565b6109cc9190611e82565b6109d69083611ea1565b91506109fb338483815181106109ee576109ee611e48565b6020026020010151611772565b600960009054906101000a90046001600160a01b0316600c6000858481518110610a2757610a27611e48565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610a6c90611ed0565b915050610858565b50610a7f33826117ef565b600080516020611f8383398151915233604051610a9c9190611c63565b60405180910390a15050565b6009546000828152600c602052604081205490916001600160a01b0391821691161415610b0e5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74207374616b65642160601b6044820152606401610568565b6000828152600b6020526040812054610b279042611e31565b905060075481610b379190611e82565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610b9e57602002820191906000526020600020905b815481526020019060010190808311610b8a575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610c105760405162461bcd60e51b815260206004820152601f60248201527f447261676f6e206973206e6f7420636c61696d61626c6520627920796f7521006044820152606401610568565b6008544210610c315760405162461bcd60e51b815260040161056890611eeb565b6007546000828152600b6020526040902054610c62913391610c539042611e31565b610c5d9190611e82565b6117ef565b6000818152600b60205260409081902042905551600080516020611f8383398151915290610c91903390611c63565b60405180910390a150565b33610ca5610d5d565b6001600160a01b031614610ccb5760405162461bcd60e51b815260040161056890611f1a565b610cd560006119f8565b565b6000610ce383336103a5565b905081811015610d415760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610568565b610d4e8333848403611491565b610d5883836118bc565b505050565b6005546001600160a01b031690565b60606004805461044190611de0565b33610d84610d5d565b6001600160a01b031614610daa5760405162461bcd60e51b815260040161056890611f1a565b600855565b33610db8610d5d565b6001600160a01b031614610dde5760405162461bcd60e51b815260040161056890611f1a565b600755565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610568565b610e723385858403611491565b5060019392505050565b60006104d13384846115b5565b6008544210610eaa5760405162461bcd60e51b815260040161056890611eeb565b336000908152600d6020908152604080832080548251818502810185019093528083529192909190830182828015610f0157602002820191906000526020600020905b815481526020019060010190808311610eed575b505050505090506000805b8251811015610a7457336001600160a01b0316600c6000858481518110610f3557610f35611e48565b6020908102919091018101518252810191909152604001600020546001600160a01b031614610fa65760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610568565b600754600b6000858481518110610fbf57610fbf611e48565b602002602001015181526020019081526020016000205442610fe19190611e31565b610feb9190611e82565b610ff59083611ea1565b915042600b600085848151811061100e5761100e611e48565b6020026020010151815260200190815260200160002081905550808061103390611ed0565b915050610f0c565b6006548151336000908152600d602052604090205461105a9190611ea1565b11156110a05760405162461bcd60e51b815260206004820152601560248201527413585e080c4c08111c9859dbdb9cc81cdd185ad959605a1b6044820152606401610568565b60005b815181101561136d57600a54825133916001600160a01b031690636352211e908590859081106110d5576110d5611e48565b60200260200101516040518263ffffffff1660e01b81526004016110fb91815260200190565b602060405180830381865afa158015611118573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113c9190611f4f565b6001600160a01b031614801561119c575060095482516001600160a01b0390911690600c9060009085908590811061117657611176611e48565b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b6111e85760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206d757374206265207374616b61626c6520627920796f752100006044820152606401610568565b600a5482516001600160a01b03909116906323b872dd903390309086908690811061121557611215611e48565b60200260200101516040518463ffffffff1660e01b815260040161123b93929190611e5e565b600060405180830381600087803b15801561125557600080fd5b505af1158015611269573d6000803e3d6000fd5b5050336000908152600d6020526040902084519092508491508390811061129257611292611e48565b602090810291909101810151825460018101845560009384529183209091015582514291600b918590859081106112cb576112cb611e48565b602002602001015181526020019081526020016000208190555033600c60008484815181106112fc576112fc611e48565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600080516020611f83833981519152336040516113539190611c63565b60405180910390a18061136581611ed0565b9150506110a3565b5050565b3361137a610d5d565b6001600160a01b0316146113a05760405162461bcd60e51b815260040161056890611f1a565b600a80546001600160a01b0383166001600160a01b031990911617905550565b336113c9610d5d565b6001600160a01b0316146113ef5760405162461bcd60e51b815260040161056890611f1a565b6001600160a01b0381166114545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610568565b61072f816119f8565b33611466610d5d565b6001600160a01b03161461148c5760405162461bcd60e51b815260040161056890611f1a565b600655565b6001600160a01b0383166114f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610568565b6001600160a01b0382166115545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610568565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116195760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610568565b6001600160a01b03821661167b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610568565b6001600160a01b038316600090815260208190526040902054818110156116f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610568565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061172a908490611ea1565b92505081905550826001600160a01b0316846001600160a01b0316600080516020611fa38339815191528460405161176491815260200190565b60405180910390a350505050565b60005b6001600160a01b0383166000908152600d6020526040902054811015610d58576001600160a01b0383166000908152600d602052604090208054839190839081106117c2576117c2611e48565b906000526020600020015414156117dd576117dd8382611a4a565b806117e781611ed0565b915050611775565b6001600160a01b0382166118455760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610568565b80600260008282546118579190611ea1565b90915550506001600160a01b03821660009081526020819052604081208054839290611884908490611ea1565b90915550506040518181526001600160a01b03831690600090600080516020611fa38339815191529060200160405180910390a35050565b6001600160a01b03821661191c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610568565b6001600160a01b038216600090815260208190526040902054818110156119905760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610568565b6001600160a01b03831660009081526020819052604081208383039055600280548492906119bf908490611e31565b90915550506040518281526000906001600160a01b03851690600080516020611fa38339815191529060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d60205260409020548110611a6d575050565b805b6001600160a01b0383166000908152600d6020526040902054611a9490600190611e31565b811015611b2d576001600160a01b0383166000908152600d60205260409020611abe826001611ea1565b81548110611ace57611ace611e48565b9060005260206000200154600d6000856001600160a01b03166001600160a01b031681526020019081526020016000208281548110611b0f57611b0f611e48565b60009182526020909120015580611b2581611ed0565b915050611a6f565b506001600160a01b0382166000908152600d60205260409020805480611b5557611b55611f6c565b600190038181906000526020600020016000905590555050565b600060208083528351808285015260005b81811015611b9c57858101830151858201604001528201611b80565b81811115611bae576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461072f57600080fd5b60008060408385031215611bec57600080fd5b8235611bf781611bc4565b946020939093013593505050565b600080600060608486031215611c1a57600080fd5b8335611c2581611bc4565b92506020840135611c3581611bc4565b929592945050506040919091013590565b600060208284031215611c5857600080fd5b8135610b3781611bc4565b6001600160a01b0391909116815260200190565b600060208284031215611c8957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611cb957600080fd5b82356001600160401b0380821115611cd057600080fd5b818501915085601f830112611ce457600080fd5b813581811115611cf657611cf6611c90565b8060051b604051601f19603f83011681018181108582111715611d1b57611d1b611c90565b604052918252848201925083810185019188831115611d3957600080fd5b938501935b82851015611d5757843584529385019392850192611d3e565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d9b57835183529284019291840191600101611d7f565b50909695505050505050565b60008060408385031215611dba57600080fd5b8235611dc581611bc4565b91506020830135611dd581611bc4565b809150509250929050565b600181811c90821680611df457607f821691505b60208210811415611e1557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611e4357611e43611e1b565b500390565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000816000190483118215151615611e9c57611e9c611e1b565b500290565b60008219821115611eb457611eb4611e1b565b500190565b600081611ec857611ec8611e1b565b506000190190565b6000600019821415611ee457611ee4611e1b565b5060010190565b602080825260159082015274436c61696d20706572696f64206973206f7665722160581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611f6157600080fd5b8151610b3781611bc4565b634e487b7160e01b600052603160045260246000fdfe7bd1a60376a08625bf75fcef878a07272e2dacc044ca5000c76212c06bbb7e1cddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220448dc254404f360bf6b70b5a16424bee952ac5d47fa17fa14d8a4e75631a3e8664736f6c634300080a0033

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.