ETH Price: $3,362.09 (-0.64%)
Gas: 1 Gwei

Token

Bamboo Shoots (SHOOTS)
 

Overview

Max Total Supply

5,094,869.516999498 SHOOTS

Holders

886

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
chumwithnodick.eth
Balance
3.992005542 SHOOTS

Value
$0.00
0xB2Aadf6BFc0a5213acb9c279394B46F50aEa65a3
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:
Shoots

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 11 : Bamboo.sol
// contracts/Shoots.sol
// SPDX-License-Identifier: MIT
// ~Forked from Cheeth~ 
pragma solidity ^0.8.0;

import "./ERC20Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./IERC721Enumerable.sol";

contract Shoots is ERC20Burnable, Ownable {


    using SafeMath for uint256;

    uint256 public MAX_WALLET_STAKED = 10;
    uint256 public EMISSIONS_RATE = 1157407000000000;
   

    uint256 public CLAIM_END_TIME = 1641013200;

    address nullAddress = 0x0000000000000000000000000000000000000000;

    address public pandaAddress;

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

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

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

    constructor() ERC20("Bamboo Shoots", "SHOOTS") {}

    function setPandaAddress(address _pandaAddress) public onlyOwner {
        pandaAddress = _pandaAddress;
        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,
            "Must have less than 10 pandas staked!"
        );

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

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

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

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
            tokenIdToStaker[tokenIds[i]] = 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(pandaAddress).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(pandaAddress).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);
    }

    function claimByTokenId(uint256 tokenId) public {
        require(
            tokenIdToStaker[tokenId] == msg.sender,
            "Token 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;
    }

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

    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 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./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 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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);
    }
}

File 4 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 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 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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 7 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 8 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 9 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 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 11 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);
}

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

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"},{"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":"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":"pandaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pandaAddress","type":"address"}],"name":"setPandaAddress","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"}]

6080604052600a60065566041ca7d11876006007556361cfdfd0600855600980546001600160a01b03191690553480156200003957600080fd5b50604080518082018252600d81526c42616d626f6f2053686f6f747360981b60208083019182528351808501909452600684526553484f4f545360d01b9084015281519192916200008d916003916200011c565b508051620000a39060049060208401906200011c565b505050620000c0620000ba620000c660201b60201c565b620000ca565b620001ff565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012a90620001c2565b90600052602060002090601f0160209004810192826200014e576000855562000199565b82601f106200016957805160ff191683800117855562000199565b8280016001018555821562000199579182015b82811115620001995782518255916020019190600101906200017c565b50620001a7929150620001ab565b5090565b5b80821115620001a75760008155600101620001ac565b600281046001821680620001d757607f821691505b60208210811415620001f957634e487b7160e01b600052602260045260246000fd5b50919050565b612365806200020f6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103a2578063e29989cb146103b5578063e3c998fe146103c8578063f2fde38b146103db576101da565b8063a9059cbb1461036c578063ba7e76621461037f578063d1058e5914610387578063d9ffad471461038f576101da565b80638da5cb5b116100de5780638da5cb5b146103345780638fe8b5d31461034957806395d89b4114610351578063a457c2d714610359576101da565b8063715018a61461031157806379cc6790146103195780638ab8fab31461032c576101da565b8063362a3fad1161017c578063515ec1051161014b578063515ec105146102b857806352eb7796146102cb5780635e1f1e2a146102eb57806370a08231146102fe576101da565b8063362a3fad1461026c578063395093511461027f57806342966c681461029257806348aa1936146102a5576101da565b80632209d38c116101b85780632209d38c1461023257806323b872dd1461023a578063313ce5671461024d57806335322f3714610262576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461021d575b600080fd5b6101e76103ee565b6040516101f49190611b4d565b60405180910390f35b61021061020b3660046119c9565b610480565b6040516101f49190611b42565b61022561049d565b6040516101f4919061221c565b6102256104a3565b610210610248366004611989565b6104a9565b610255610542565b6040516101f49190612225565b61026a610547565b005b61022561027a366004611919565b6106e8565b61021061028d3660046119c9565b6107d2565b61026a6102a0366004611aae565b610826565b61026a6102b33660046119f4565b610837565b6102256102c6366004611aae565b610a6c565b6102de6102d9366004611919565b610adb565b6040516101f49190611afe565b61026a6102f9366004611aae565b610b47565b61022561030c366004611919565b610be2565b61026a610bfd565b61026a6103273660046119c9565b610c48565b610225610c9b565b61033c610ca1565b6040516101f49190611ac6565b61033c610cb0565b6101e7610cbf565b6102106103673660046119c9565b610cce565b61021061037a3660046119c9565b610d47565b610225610d5b565b61026a610d61565b61026a61039d3660046119f4565b610f0d565b6102256103b0366004611951565b611224565b61026a6103c3366004611919565b61124f565b61033c6103d6366004611aae565b6112bb565b61026a6103e9366004611919565b6112d6565b6060600380546103fd90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461042990612298565b80156104765780601f1061044b57610100808354040283529160200191610476565b820191906000526020600020905b81548152906001019060200180831161045957829003601f168201915b5050505050905090565b600061049461048d611344565b8484611348565b50600192915050565b60025490565b60085481565b60006104b68484846113fc565b6001600160a01b0384166000908152600160205260408120816104d7611344565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105235760405162461bcd60e51b815260040161051a90611eee565b60405180910390fd5b6105378561052f611344565b858403611348565b506001949350505050565b601290565b336000908152600d60205260409020546105735760405162461bcd60e51b815260040161051a90611e91565b336000908152600d60205260408120545b80156106da57336000908152600d602052604081206105a460018461226a565b815481106105c257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a546040517f23b872dd0000000000000000000000000000000000000000000000000000000081529192506001600160a01b0316906323b872dd9061061c90309033908690600401611ada565b600060405180830381600087803b15801561063657600080fd5b505af115801561064a573d6000803e3d6000fd5b50506007546000848152600b602052604090205490925061066c91504261226a565b610676919061224b565b6106809084612233565b925061068c3382611526565b6009546000918252600c6020526040909120805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055806106d281612281565b915050610584565b506106e533826115b1565b50565b6001600160a01b0381166000908152600d602090815260408083208054825181850281018501909352808352849383018282801561074557602002820191906000526020600020905b815481526020019060010190808311610731575b505050505090506000805b82518110156107ca57600754600b600085848151811061078057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002054426107a2919061226a565b6107ac919061224b565b6107b69083612233565b9150806107c2816122d3565b915050610750565b509392505050565b60006104946107df611344565b8484600160006107ed611344565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546108219190612233565b611348565b6106e5610831611344565b82611679565b6000805b8251811015610a5d57336001600160a01b0316600c600085848151811061087257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316146108b35760405162461bcd60e51b815260040161051a90611fdd565b600a5483516001600160a01b03909116906323b872dd90309033908790869081106108ee57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b815260040161091493929190611ada565b600060405180830381600087803b15801561092e57600080fd5b505af1158015610942573d6000803e3d6000fd5b50505050600754600b600085848151811061096d57634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020544261098f919061226a565b610999919061224b565b6109a39083612233565b91506109d6338483815181106109c957634e487b7160e01b600052603260045260246000fd5b6020026020010151611526565b600960009054906101000a90046001600160a01b0316600c6000858481518110610a1057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610a55906122d3565b91505061083b565b50610a6833826115b1565b5050565b6009546000828152600c602052604081205490916001600160a01b0391821691161415610aab5760405162461bcd60e51b815260040161051a90612151565b6000828152600b6020526040812054610ac4904261226a565b905060075481610ad4919061224b565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610b3b57602002820191906000526020600020905b815481526020019060010190808311610b27575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610b7d5760405162461bcd60e51b815260040161051a90611dfd565b6008544210610b9e5760405162461bcd60e51b815260040161051a90611c78565b6007546000828152600b6020526040902054610bcf913391610bc0904261226a565b610bca919061224b565b6115b1565b6000908152600b60205260409020429055565b6001600160a01b031660009081526020819052604090205490565b610c05611344565b6001600160a01b0316610c16610ca1565b6001600160a01b031614610c3c5760405162461bcd60e51b815260040161051a90611f4b565b610c46600061176a565b565b6000610c56836103b0611344565b905081811015610c785760405162461bcd60e51b815260040161051a90611f80565b610c8c83610c84611344565b848403611348565b610c968383611679565b505050565b60065481565b6005546001600160a01b031690565b600a546001600160a01b031681565b6060600480546103fd90612298565b60008060016000610cdd611344565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610d295760405162461bcd60e51b815260040161051a90612188565b610d3d610d34611344565b85858403611348565b5060019392505050565b6000610494610d54611344565b84846113fc565b60075481565b6008544210610d825760405162461bcd60e51b815260040161051a90611c78565b336000908152600d6020908152604080832080548251818502810185019093528083529192909190830182828015610dd957602002820191906000526020600020905b815481526020019060010190808311610dc5575b505050505090506000805b8251811015610a5d57336001600160a01b0316600c6000858481518110610e1b57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b031614610e5c5760405162461bcd60e51b815260040161051a90611dfd565b600754600b6000858481518110610e8357634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000205442610ea5919061226a565b610eaf919061224b565b610eb99083612233565b915042600b6000858481518110610ee057634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020819055508080610f05906122d3565b915050610de4565b6006548151336000908152600d6020526040902054610f2c9190612233565b1115610f4a5760405162461bcd60e51b815260040161051a90611e34565b60005b8151811015610a6857600a54825133916001600160a01b031690636352211e90859085908110610f8d57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401610fb1919061221c565b60206040518083038186803b158015610fc957600080fd5b505afa158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190611935565b6001600160a01b031614801561106f575060095482516001600160a01b0390911690600c9060009085908590811061104957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b61108b5760405162461bcd60e51b815260040161051a90611dc6565b600a5482516001600160a01b03909116906323b872dd90339030908690869081106110c657634e487b7160e01b600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b81526004016110ec93929190611ada565b600060405180830381600087803b15801561110657600080fd5b505af115801561111a573d6000803e3d6000fd5b5050336000908152600d6020526040902084519092508491508390811061115157634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018101845560009384529183209091015582514291600b9185908590811061119857634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555033600c60008484815181106111d757634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061121c906122d3565b915050610f4d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611257611344565b6001600160a01b0316611268610ca1565b6001600160a01b03161461128e5760405162461bcd60e51b815260040161051a90611f4b565b600a80546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b6000908152600c60205260409020546001600160a01b031690565b6112de611344565b6001600160a01b03166112ef610ca1565b6001600160a01b0316146113155760405162461bcd60e51b815260040161051a90611f4b565b6001600160a01b03811661133b5760405162461bcd60e51b815260040161051a90611caf565b6106e58161176a565b3390565b6001600160a01b03831661136e5760405162461bcd60e51b815260040161051a906120f4565b6001600160a01b0382166113945760405162461bcd60e51b815260040161051a90611d0c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113ef90859061221c565b60405180910390a3505050565b6001600160a01b0383166114225760405162461bcd60e51b815260040161051a90612097565b6001600160a01b0382166114485760405162461bcd60e51b815260040161051a90611bbe565b611453838383610c96565b6001600160a01b0383166000908152602081905260409020548181101561148c5760405162461bcd60e51b815260040161051a90611d69565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114c3908490612233565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150d919061221c565b60405180910390a3611520848484610c96565b50505050565b60005b6001600160a01b0383166000908152600d6020526040902054811015610c96576001600160a01b0383166000908152600d6020526040902080548391908390811061158457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154141561159f5761159f83826117c9565b806115a9816122d3565b915050611529565b6001600160a01b0382166115d75760405162461bcd60e51b815260040161051a906121e5565b6115e360008383610c96565b80600260008282546115f59190612233565b90915550506001600160a01b03821660009081526020819052604081208054839290611622908490612233565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061166590859061221c565b60405180910390a3610a6860008383610c96565b6001600160a01b03821661169f5760405162461bcd60e51b815260040161051a9061203a565b6116ab82600083610c96565b6001600160a01b038216600090815260208190526040902054818110156116e45760405162461bcd60e51b815260040161051a90611c1b565b6001600160a01b038316600090815260208190526040812083830390556002805484929061171390849061226a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061175690869061221c565b60405180910390a3610c9683600084610c96565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d602052604090205481106117ed57610a68565b805b6001600160a01b0383166000908152600d60205260409020546118149060019061226a565b8110156118c9576001600160a01b0383166000908152600d6020526040902061183e826001612233565b8154811061185c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154600d6000856001600160a01b03166001600160a01b0316815260200190815260200160002082815481106118ab57634e487b7160e01b600052603260045260246000fd5b600091825260209091200155806118c1816122d3565b9150506117ef565b506001600160a01b0382166000908152600d602052604090208054806118ff57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590555050565b60006020828403121561192a578081fd5b8135610ad48161231a565b600060208284031215611946578081fd5b8151610ad48161231a565b60008060408385031215611963578081fd5b823561196e8161231a565b9150602083013561197e8161231a565b809150509250929050565b60008060006060848603121561199d578081fd5b83356119a88161231a565b925060208401356119b88161231a565b929592945050506040919091013590565b600080604083850312156119db578182fd5b82356119e68161231a565b946020939093013593505050565b60006020808385031215611a06578182fd5b823567ffffffffffffffff80821115611a1d578384fd5b818501915085601f830112611a30578384fd5b813581811115611a4257611a42612304565b83810260405185828201018181108582111715611a6157611a61612304565b604052828152858101935084860182860187018a1015611a7f578788fd5b8795505b83861015611aa1578035855260019590950194938601938601611a83565b5098975050505050505050565b600060208284031215611abf578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6020808252825182820181905260009190848201906040850190845b81811015611b3657835183529284019291840191600101611b1a565b50909695505050505050565b901515815260200190565b6000602080835283518082850152825b81811015611b7957858101830151858201604001528201611b5d565b81811115611b8a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526015908201527f436c61696d20706572696f64206973206f766572210000000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f546f6b656e206d757374206265207374616b61626c6520627920796f75210000604082015260600190565b6020808252601e908201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f75210000604082015260600190565b60208082526025908201527f4d7573742068617665206c657373207468616e2031302070616e64617320737460408201527f616b656421000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e2073746160408201527f6b65642100000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c2060408201527f7374616b65722100000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f546f6b656e206973206e6f74207374616b656421000000000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115612246576122466122ee565b500190565b6000816000190483118215151615612265576122656122ee565b500290565b60008282101561227c5761227c6122ee565b500390565b600081612290576122906122ee565b506000190190565b6002810460018216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122e7576122e76122ee565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146106e557600080fdfea26469706673582212202e691b6025e5f2fcfd30c5b25c114be93a0ed09ff892d2fd1c4aa133722c9c2a64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103a2578063e29989cb146103b5578063e3c998fe146103c8578063f2fde38b146103db576101da565b8063a9059cbb1461036c578063ba7e76621461037f578063d1058e5914610387578063d9ffad471461038f576101da565b80638da5cb5b116100de5780638da5cb5b146103345780638fe8b5d31461034957806395d89b4114610351578063a457c2d714610359576101da565b8063715018a61461031157806379cc6790146103195780638ab8fab31461032c576101da565b8063362a3fad1161017c578063515ec1051161014b578063515ec105146102b857806352eb7796146102cb5780635e1f1e2a146102eb57806370a08231146102fe576101da565b8063362a3fad1461026c578063395093511461027f57806342966c681461029257806348aa1936146102a5576101da565b80632209d38c116101b85780632209d38c1461023257806323b872dd1461023a578063313ce5671461024d57806335322f3714610262576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461021d575b600080fd5b6101e76103ee565b6040516101f49190611b4d565b60405180910390f35b61021061020b3660046119c9565b610480565b6040516101f49190611b42565b61022561049d565b6040516101f4919061221c565b6102256104a3565b610210610248366004611989565b6104a9565b610255610542565b6040516101f49190612225565b61026a610547565b005b61022561027a366004611919565b6106e8565b61021061028d3660046119c9565b6107d2565b61026a6102a0366004611aae565b610826565b61026a6102b33660046119f4565b610837565b6102256102c6366004611aae565b610a6c565b6102de6102d9366004611919565b610adb565b6040516101f49190611afe565b61026a6102f9366004611aae565b610b47565b61022561030c366004611919565b610be2565b61026a610bfd565b61026a6103273660046119c9565b610c48565b610225610c9b565b61033c610ca1565b6040516101f49190611ac6565b61033c610cb0565b6101e7610cbf565b6102106103673660046119c9565b610cce565b61021061037a3660046119c9565b610d47565b610225610d5b565b61026a610d61565b61026a61039d3660046119f4565b610f0d565b6102256103b0366004611951565b611224565b61026a6103c3366004611919565b61124f565b61033c6103d6366004611aae565b6112bb565b61026a6103e9366004611919565b6112d6565b6060600380546103fd90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461042990612298565b80156104765780601f1061044b57610100808354040283529160200191610476565b820191906000526020600020905b81548152906001019060200180831161045957829003601f168201915b5050505050905090565b600061049461048d611344565b8484611348565b50600192915050565b60025490565b60085481565b60006104b68484846113fc565b6001600160a01b0384166000908152600160205260408120816104d7611344565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105235760405162461bcd60e51b815260040161051a90611eee565b60405180910390fd5b6105378561052f611344565b858403611348565b506001949350505050565b601290565b336000908152600d60205260409020546105735760405162461bcd60e51b815260040161051a90611e91565b336000908152600d60205260408120545b80156106da57336000908152600d602052604081206105a460018461226a565b815481106105c257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a546040517f23b872dd0000000000000000000000000000000000000000000000000000000081529192506001600160a01b0316906323b872dd9061061c90309033908690600401611ada565b600060405180830381600087803b15801561063657600080fd5b505af115801561064a573d6000803e3d6000fd5b50506007546000848152600b602052604090205490925061066c91504261226a565b610676919061224b565b6106809084612233565b925061068c3382611526565b6009546000918252600c6020526040909120805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055806106d281612281565b915050610584565b506106e533826115b1565b50565b6001600160a01b0381166000908152600d602090815260408083208054825181850281018501909352808352849383018282801561074557602002820191906000526020600020905b815481526020019060010190808311610731575b505050505090506000805b82518110156107ca57600754600b600085848151811061078057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002054426107a2919061226a565b6107ac919061224b565b6107b69083612233565b9150806107c2816122d3565b915050610750565b509392505050565b60006104946107df611344565b8484600160006107ed611344565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546108219190612233565b611348565b6106e5610831611344565b82611679565b6000805b8251811015610a5d57336001600160a01b0316600c600085848151811061087257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316146108b35760405162461bcd60e51b815260040161051a90611fdd565b600a5483516001600160a01b03909116906323b872dd90309033908790869081106108ee57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b815260040161091493929190611ada565b600060405180830381600087803b15801561092e57600080fd5b505af1158015610942573d6000803e3d6000fd5b50505050600754600b600085848151811061096d57634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020544261098f919061226a565b610999919061224b565b6109a39083612233565b91506109d6338483815181106109c957634e487b7160e01b600052603260045260246000fd5b6020026020010151611526565b600960009054906101000a90046001600160a01b0316600c6000858481518110610a1057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610a55906122d3565b91505061083b565b50610a6833826115b1565b5050565b6009546000828152600c602052604081205490916001600160a01b0391821691161415610aab5760405162461bcd60e51b815260040161051a90612151565b6000828152600b6020526040812054610ac4904261226a565b905060075481610ad4919061224b565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610b3b57602002820191906000526020600020905b815481526020019060010190808311610b27575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610b7d5760405162461bcd60e51b815260040161051a90611dfd565b6008544210610b9e5760405162461bcd60e51b815260040161051a90611c78565b6007546000828152600b6020526040902054610bcf913391610bc0904261226a565b610bca919061224b565b6115b1565b6000908152600b60205260409020429055565b6001600160a01b031660009081526020819052604090205490565b610c05611344565b6001600160a01b0316610c16610ca1565b6001600160a01b031614610c3c5760405162461bcd60e51b815260040161051a90611f4b565b610c46600061176a565b565b6000610c56836103b0611344565b905081811015610c785760405162461bcd60e51b815260040161051a90611f80565b610c8c83610c84611344565b848403611348565b610c968383611679565b505050565b60065481565b6005546001600160a01b031690565b600a546001600160a01b031681565b6060600480546103fd90612298565b60008060016000610cdd611344565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610d295760405162461bcd60e51b815260040161051a90612188565b610d3d610d34611344565b85858403611348565b5060019392505050565b6000610494610d54611344565b84846113fc565b60075481565b6008544210610d825760405162461bcd60e51b815260040161051a90611c78565b336000908152600d6020908152604080832080548251818502810185019093528083529192909190830182828015610dd957602002820191906000526020600020905b815481526020019060010190808311610dc5575b505050505090506000805b8251811015610a5d57336001600160a01b0316600c6000858481518110610e1b57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b031614610e5c5760405162461bcd60e51b815260040161051a90611dfd565b600754600b6000858481518110610e8357634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000205442610ea5919061226a565b610eaf919061224b565b610eb99083612233565b915042600b6000858481518110610ee057634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020819055508080610f05906122d3565b915050610de4565b6006548151336000908152600d6020526040902054610f2c9190612233565b1115610f4a5760405162461bcd60e51b815260040161051a90611e34565b60005b8151811015610a6857600a54825133916001600160a01b031690636352211e90859085908110610f8d57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401610fb1919061221c565b60206040518083038186803b158015610fc957600080fd5b505afa158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190611935565b6001600160a01b031614801561106f575060095482516001600160a01b0390911690600c9060009085908590811061104957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b61108b5760405162461bcd60e51b815260040161051a90611dc6565b600a5482516001600160a01b03909116906323b872dd90339030908690869081106110c657634e487b7160e01b600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b81526004016110ec93929190611ada565b600060405180830381600087803b15801561110657600080fd5b505af115801561111a573d6000803e3d6000fd5b5050336000908152600d6020526040902084519092508491508390811061115157634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018101845560009384529183209091015582514291600b9185908590811061119857634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555033600c60008484815181106111d757634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061121c906122d3565b915050610f4d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611257611344565b6001600160a01b0316611268610ca1565b6001600160a01b03161461128e5760405162461bcd60e51b815260040161051a90611f4b565b600a80546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b6000908152600c60205260409020546001600160a01b031690565b6112de611344565b6001600160a01b03166112ef610ca1565b6001600160a01b0316146113155760405162461bcd60e51b815260040161051a90611f4b565b6001600160a01b03811661133b5760405162461bcd60e51b815260040161051a90611caf565b6106e58161176a565b3390565b6001600160a01b03831661136e5760405162461bcd60e51b815260040161051a906120f4565b6001600160a01b0382166113945760405162461bcd60e51b815260040161051a90611d0c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113ef90859061221c565b60405180910390a3505050565b6001600160a01b0383166114225760405162461bcd60e51b815260040161051a90612097565b6001600160a01b0382166114485760405162461bcd60e51b815260040161051a90611bbe565b611453838383610c96565b6001600160a01b0383166000908152602081905260409020548181101561148c5760405162461bcd60e51b815260040161051a90611d69565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114c3908490612233565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150d919061221c565b60405180910390a3611520848484610c96565b50505050565b60005b6001600160a01b0383166000908152600d6020526040902054811015610c96576001600160a01b0383166000908152600d6020526040902080548391908390811061158457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154141561159f5761159f83826117c9565b806115a9816122d3565b915050611529565b6001600160a01b0382166115d75760405162461bcd60e51b815260040161051a906121e5565b6115e360008383610c96565b80600260008282546115f59190612233565b90915550506001600160a01b03821660009081526020819052604081208054839290611622908490612233565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061166590859061221c565b60405180910390a3610a6860008383610c96565b6001600160a01b03821661169f5760405162461bcd60e51b815260040161051a9061203a565b6116ab82600083610c96565b6001600160a01b038216600090815260208190526040902054818110156116e45760405162461bcd60e51b815260040161051a90611c1b565b6001600160a01b038316600090815260208190526040812083830390556002805484929061171390849061226a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061175690869061221c565b60405180910390a3610c9683600084610c96565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d602052604090205481106117ed57610a68565b805b6001600160a01b0383166000908152600d60205260409020546118149060019061226a565b8110156118c9576001600160a01b0383166000908152600d6020526040902061183e826001612233565b8154811061185c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154600d6000856001600160a01b03166001600160a01b0316815260200190815260200160002082815481106118ab57634e487b7160e01b600052603260045260246000fd5b600091825260209091200155806118c1816122d3565b9150506117ef565b506001600160a01b0382166000908152600d602052604090208054806118ff57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590555050565b60006020828403121561192a578081fd5b8135610ad48161231a565b600060208284031215611946578081fd5b8151610ad48161231a565b60008060408385031215611963578081fd5b823561196e8161231a565b9150602083013561197e8161231a565b809150509250929050565b60008060006060848603121561199d578081fd5b83356119a88161231a565b925060208401356119b88161231a565b929592945050506040919091013590565b600080604083850312156119db578182fd5b82356119e68161231a565b946020939093013593505050565b60006020808385031215611a06578182fd5b823567ffffffffffffffff80821115611a1d578384fd5b818501915085601f830112611a30578384fd5b813581811115611a4257611a42612304565b83810260405185828201018181108582111715611a6157611a61612304565b604052828152858101935084860182860187018a1015611a7f578788fd5b8795505b83861015611aa1578035855260019590950194938601938601611a83565b5098975050505050505050565b600060208284031215611abf578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6020808252825182820181905260009190848201906040850190845b81811015611b3657835183529284019291840191600101611b1a565b50909695505050505050565b901515815260200190565b6000602080835283518082850152825b81811015611b7957858101830151858201604001528201611b5d565b81811115611b8a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526015908201527f436c61696d20706572696f64206973206f766572210000000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f546f6b656e206d757374206265207374616b61626c6520627920796f75210000604082015260600190565b6020808252601e908201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f75210000604082015260600190565b60208082526025908201527f4d7573742068617665206c657373207468616e2031302070616e64617320737460408201527f616b656421000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e2073746160408201527f6b65642100000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c2060408201527f7374616b65722100000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f546f6b656e206973206e6f74207374616b656421000000000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115612246576122466122ee565b500190565b6000816000190483118215151615612265576122656122ee565b500290565b60008282101561227c5761227c6122ee565b500390565b600081612290576122906122ee565b506000190190565b6002810460018216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122e7576122e76122ee565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146106e557600080fdfea26469706673582212202e691b6025e5f2fcfd30c5b25c114be93a0ed09ff892d2fd1c4aa133722c9c2a64736f6c63430008000033

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.