ETH Price: $2,507.60 (-3.12%)

Token

BOBO (BOBO)
 

Overview

Max Total Supply

69,000,000,000,000 BOBO

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
688,583,735,775.814564453125 BOBO

Value
$0.00
0xe9b1f74b329df90621c81d050868755821c068a3
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:
Bobo

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-11
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @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 @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



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

        amountForRecipient = _beforeTokenTransfer(sender, recipient, amount);

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _totalSupply -= 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 returns (uint256) {}

    /**
     * @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 {}
}



pragma solidity ^0.8.0;


contract Bobo is Ownable, ERC20 {
    using SafeMath for uint256;
    bool public limited = true;
    uint256 public maxHoldingAmount = 690000000000 * 10**18;
    uint256 public maxTxnAmount = 690000000000 * 10**18;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) public allowedToExceed;

    constructor() ERC20("BOBO", "BOBO") {
        _mint(msg.sender, 69000000000000 * 10**18);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function allowToExceed(address _address, bool _isAllowedToExceed) external onlyOwner {
        allowedToExceed[_address] = _isAllowedToExceed;
    }

    function setPair(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function updateLimitations(uint256 _maxHoldingAmount, uint256 _maxTxnAmount) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
        maxTxnAmount = _maxTxnAmount;
    }

    function removeLimitations() external onlyOwner {
        limited = false;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual returns (uint256) {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
        }

        if (limited && !allowedToExceed[to] && to != uniswapV2Pair && to != owner() && from != owner()) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Exceeds current maximum amount allowed in a wallet");
            require(amount <= maxTxnAmount, "Exceeds current maximum amount allowed in a transaction");
        }

        return amount;
    }
}

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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isAllowedToExceed","type":"bool"}],"name":"allowToExceed","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"allowedToExceed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"removeLimitations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxnAmount","type":"uint256"}],"name":"updateLimitations","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff191660011790556c08b5829f66bff9a4295000000060078190556008553480156200003457600080fd5b5060405180604001604052806004815260200163424f424f60e01b81525060405180604001604052806004815260200163424f424f60e01b8152506200008962000083620000cf60201b60201c565b620000d3565b60046200009783826200055a565b506005620000a682826200055a565b505050620000c9336d0366e7064422fd842023400000006200012360201b60201c565b6200064e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018d600083836200021b565b508060036000828254620001a2919062000626565b90915550506001600160a01b03821660009081526001602052604081208054839290620001d190849062000626565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152600a602052604081205460ff161580156200025e57506001600160a01b0384166000908152600a602052604090205460ff16155b6200029a5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000176565b6009546001600160a01b031662000323576000546001600160a01b0385811691161480620002d557506000546001600160a01b038481169116145b620003235760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000176565b60065460ff1680156200034f57506001600160a01b0383166000908152600b602052604090205460ff16155b80156200036a57506009546001600160a01b03848116911614155b80156200038557506000546001600160a01b03848116911614155b8015620003a057506000546001600160a01b03858116911614155b156200048f5760075482620003c0856200049b60201b620005aa1760201c565b620003cc919062000626565b1115620004265760405162461bcd60e51b815260206004820152603260248201526000805160206200171e8339815191526044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b606482015260840162000176565b6008548211156200048f5760405162461bcd60e51b815260206004820152603760248201526000805160206200171e83398151915260448201527f6c6c6f77656420696e2061207472616e73616374696f6e000000000000000000606482015260840162000176565b5092915050565b505050565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004e157607f821691505b6020821081036200050257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200049657600081815260208120601f850160051c81016020861015620005315750805b601f850160051c820191505b8181101562000552578281556001016200053d565b505050505050565b81516001600160401b03811115620005765762000576620004b6565b6200058e81620005878454620004cc565b8462000508565b602080601f831160018114620005c65760008415620005ad5750858301515b600019600386901b1c1916600185901b17855562000552565b600085815260208120601f198616915b82811015620005f757888601518255948401946001909101908401620005d6565b5085821015620006165787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200064857634e487b7160e01b600052601160045260246000fd5b92915050565b6110c0806200065e6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80637e82d36c116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e1461030a578063e0ea56d814610343578063e4cbe58914610366578063f2fde38b1461037957600080fd5b8063a457c2d7146102db578063a9059cbb146102ee578063cf46f24c1461030157600080fd5b80637e82d36c146102915780638187f51614610299578063860a32ec146102ac57806389f9a1d3146102b95780638da5cb5b146102c257806395d89b41146102d357600080fd5b806339509351116101305780633950935114610210578063404e51291461022357806349bd5a5e146102385780634f97b70d1461026357806370a0823114610276578063715018a61461028957600080fd5b806306fdde0314610178578063095ea7b31461019657806316c02129146101b957806318160ddd146101dc57806323b872dd146101ee578063313ce56714610201575b600080fd5b61018061038c565b60405161018d9190610e5c565b60405180910390f35b6101a96101a4366004610ec6565b61041e565b604051901515815260200161018d565b6101a96101c7366004610ef0565b600a6020526000908152604090205460ff1681565b6003545b60405190815260200161018d565b6101a96101fc366004610f12565b610435565b6040516012815260200161018d565b6101a961021e366004610ec6565b6104e4565b610236610231366004610f4e565b610520565b005b60095461024b906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b610236610271366004610f8a565b610575565b6101e0610284366004610ef0565b6105aa565b6102366105c5565b6102366105fb565b6102366102a7366004610ef0565b610631565b6006546101a99060ff1681565b6101e060075481565b6000546001600160a01b031661024b565b61018061067d565b6101a96102e9366004610ec6565b61068c565b6101a96102fc366004610ec6565b610725565b6101e060085481565b6101e0610318366004610fac565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a9610351366004610ef0565b600b6020526000908152604090205460ff1681565b610236610374366004610f4e565b610732565b610236610387366004610ef0565b610787565b60606004805461039b90610fdf565b80601f01602080910402602001604051908101604052809291908181526020018280546103c790610fdf565b80156104145780601f106103e957610100808354040283529160200191610414565b820191906000526020600020905b8154815290600101906020018083116103f757829003601f168201915b5050505050905090565b600061042b338484610822565b5060015b92915050565b6000610442848484610946565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104cc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d98533858403610822565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161042b91859061051b90869061102f565b610822565b6000546001600160a01b0316331461054a5760405162461bcd60e51b81526004016104c390611042565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461059f5760405162461bcd60e51b81526004016104c390611042565b600791909155600855565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146105ef5760405162461bcd60e51b81526004016104c390611042565b6105f96000610b95565b565b6000546001600160a01b031633146106255760405162461bcd60e51b81526004016104c390611042565b6006805460ff19169055565b6000546001600160a01b0316331461065b5760405162461bcd60e51b81526004016104c390611042565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60606005805461039b90610fdf565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561070e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c3565b61071b3385858403610822565b5060019392505050565b600061042b338484610946565b6000546001600160a01b0316331461075c5760405162461bcd60e51b81526004016104c390611042565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107b15760405162461bcd60e51b81526004016104c390611042565b6001600160a01b0381166108165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c3565b61081f81610b95565b50565b6001600160a01b0383166108845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c3565b6001600160a01b0382166108e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c3565b6001600160a01b038216610a0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c3565b6000610a19848484610be5565b6001600160a01b03851660009081526001602052604090205490915082811015610a945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c3565b6001600160a01b03808616600090815260016020526040808220868503905591861681529081208054849290610acb90849061102f565b90915550610adb90508284611077565b61dead600090815260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d8054909190610b1990849061102f565b90915550610b2990508284611077565b60036000828254610b3a9190611077565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b8691815260200190565b60405180910390a35050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604081205460ff16158015610c2757506001600160a01b0384166000908152600a602052604090205460ff16155b610c615760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016104c3565b6009546001600160a01b0316610cdf576000546001600160a01b0385811691161480610c9a57506000546001600160a01b038481169116145b610cdf5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104c3565b60065460ff168015610d0a57506001600160a01b0383166000908152600b602052604090205460ff16155b8015610d2457506009546001600160a01b03848116911614155b8015610d3e57506000546001600160a01b03848116911614155b8015610d5857506000546001600160a01b03858116911614155b15610e555760075482610d6a856105aa565b610d74919061102f565b1115610ddd5760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b60648201526084016104c3565b600854821115610e555760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e00000000000000000060648201526084016104c3565b5092915050565b600060208083528351808285015260005b81811015610e8957858101830151858201604001528201610e6d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ec157600080fd5b919050565b60008060408385031215610ed957600080fd5b610ee283610eaa565b946020939093013593505050565b600060208284031215610f0257600080fd5b610f0b82610eaa565b9392505050565b600080600060608486031215610f2757600080fd5b610f3084610eaa565b9250610f3e60208501610eaa565b9150604084013590509250925092565b60008060408385031215610f6157600080fd5b610f6a83610eaa565b915060208301358015158114610f7f57600080fd5b809150509250929050565b60008060408385031215610f9d57600080fd5b50508035926020909101359150565b60008060408385031215610fbf57600080fd5b610fc883610eaa565b9150610fd660208401610eaa565b90509250929050565b600181811c90821680610ff357607f821691505b60208210810361101357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561042f5761042f611019565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561042f5761042f61101956fea2646970667358221220fcf34e756a537ee28766e1e460d96e08b2e631c694f770e422b348c4e9d63aaa64736f6c63430008120033457863656564732063757272656e74206d6178696d756d20616d6f756e742061

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637e82d36c116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e1461030a578063e0ea56d814610343578063e4cbe58914610366578063f2fde38b1461037957600080fd5b8063a457c2d7146102db578063a9059cbb146102ee578063cf46f24c1461030157600080fd5b80637e82d36c146102915780638187f51614610299578063860a32ec146102ac57806389f9a1d3146102b95780638da5cb5b146102c257806395d89b41146102d357600080fd5b806339509351116101305780633950935114610210578063404e51291461022357806349bd5a5e146102385780634f97b70d1461026357806370a0823114610276578063715018a61461028957600080fd5b806306fdde0314610178578063095ea7b31461019657806316c02129146101b957806318160ddd146101dc57806323b872dd146101ee578063313ce56714610201575b600080fd5b61018061038c565b60405161018d9190610e5c565b60405180910390f35b6101a96101a4366004610ec6565b61041e565b604051901515815260200161018d565b6101a96101c7366004610ef0565b600a6020526000908152604090205460ff1681565b6003545b60405190815260200161018d565b6101a96101fc366004610f12565b610435565b6040516012815260200161018d565b6101a961021e366004610ec6565b6104e4565b610236610231366004610f4e565b610520565b005b60095461024b906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b610236610271366004610f8a565b610575565b6101e0610284366004610ef0565b6105aa565b6102366105c5565b6102366105fb565b6102366102a7366004610ef0565b610631565b6006546101a99060ff1681565b6101e060075481565b6000546001600160a01b031661024b565b61018061067d565b6101a96102e9366004610ec6565b61068c565b6101a96102fc366004610ec6565b610725565b6101e060085481565b6101e0610318366004610fac565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a9610351366004610ef0565b600b6020526000908152604090205460ff1681565b610236610374366004610f4e565b610732565b610236610387366004610ef0565b610787565b60606004805461039b90610fdf565b80601f01602080910402602001604051908101604052809291908181526020018280546103c790610fdf565b80156104145780601f106103e957610100808354040283529160200191610414565b820191906000526020600020905b8154815290600101906020018083116103f757829003601f168201915b5050505050905090565b600061042b338484610822565b5060015b92915050565b6000610442848484610946565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104cc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d98533858403610822565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161042b91859061051b90869061102f565b610822565b6000546001600160a01b0316331461054a5760405162461bcd60e51b81526004016104c390611042565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461059f5760405162461bcd60e51b81526004016104c390611042565b600791909155600855565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146105ef5760405162461bcd60e51b81526004016104c390611042565b6105f96000610b95565b565b6000546001600160a01b031633146106255760405162461bcd60e51b81526004016104c390611042565b6006805460ff19169055565b6000546001600160a01b0316331461065b5760405162461bcd60e51b81526004016104c390611042565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60606005805461039b90610fdf565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561070e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c3565b61071b3385858403610822565b5060019392505050565b600061042b338484610946565b6000546001600160a01b0316331461075c5760405162461bcd60e51b81526004016104c390611042565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107b15760405162461bcd60e51b81526004016104c390611042565b6001600160a01b0381166108165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c3565b61081f81610b95565b50565b6001600160a01b0383166108845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c3565b6001600160a01b0382166108e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c3565b6001600160a01b038216610a0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c3565b6000610a19848484610be5565b6001600160a01b03851660009081526001602052604090205490915082811015610a945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c3565b6001600160a01b03808616600090815260016020526040808220868503905591861681529081208054849290610acb90849061102f565b90915550610adb90508284611077565b61dead600090815260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d8054909190610b1990849061102f565b90915550610b2990508284611077565b60036000828254610b3a9190611077565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b8691815260200190565b60405180910390a35050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604081205460ff16158015610c2757506001600160a01b0384166000908152600a602052604090205460ff16155b610c615760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016104c3565b6009546001600160a01b0316610cdf576000546001600160a01b0385811691161480610c9a57506000546001600160a01b038481169116145b610cdf5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104c3565b60065460ff168015610d0a57506001600160a01b0383166000908152600b602052604090205460ff16155b8015610d2457506009546001600160a01b03848116911614155b8015610d3e57506000546001600160a01b03848116911614155b8015610d5857506000546001600160a01b03858116911614155b15610e555760075482610d6a856105aa565b610d74919061102f565b1115610ddd5760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b60648201526084016104c3565b600854821115610e555760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e00000000000000000060648201526084016104c3565b5092915050565b600060208083528351808285015260005b81811015610e8957858101830151858201604001528201610e6d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ec157600080fd5b919050565b60008060408385031215610ed957600080fd5b610ee283610eaa565b946020939093013593505050565b600060208284031215610f0257600080fd5b610f0b82610eaa565b9392505050565b600080600060608486031215610f2757600080fd5b610f3084610eaa565b9250610f3e60208501610eaa565b9150604084013590509250925092565b60008060408385031215610f6157600080fd5b610f6a83610eaa565b915060208301358015158114610f7f57600080fd5b809150509250929050565b60008060408385031215610f9d57600080fd5b50508035926020909101359150565b60008060408385031215610fbf57600080fd5b610fc883610eaa565b9150610fd660208401610eaa565b90509250929050565b600181811c90821680610ff357607f821691505b60208210810361101357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561042f5761042f611019565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561042f5761042f61101956fea2646970667358221220fcf34e756a537ee28766e1e460d96e08b2e631c694f770e422b348c4e9d63aaa64736f6c63430008120033

Deployed Bytecode Sourcemap

24010:1924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14035:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16202:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;16202:169:0;1004:187:1;24270:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;15155:108;15243:12;;15155:108;;;1533:25:1;;;1521:2;1506:18;15155:108:0;1387:177:1;16853:492:0;;;;;;:::i;:::-;;:::i;14997:93::-;;;15080:2;2044:36:1;;2032:2;2017:18;14997:93:0;1902:184:1;17754:215:0;;;;;;:::i;:::-;;:::i;24480:135::-;;;;;;:::i;:::-;;:::i;:::-;;24235:28;;;;;-1:-1:-1;;;;;24235:28:0;;;;;;-1:-1:-1;;;;;2607:32:1;;;2589:51;;2577:2;2562:18;24235:28:0;2443:203:1;24898:190:0;;;;;;:::i;:::-;;:::i;15326:127::-;;;;;;:::i;:::-;;:::i;7436:103::-;;;:::i;25096:82::-;;;:::i;24781:109::-;;;;;;:::i;:::-;;:::i;24082:26::-;;;;;;;;;24115:55;;;;;;6785:87;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;6785:87;;14254:104;;;:::i;18472:413::-;;;;;;:::i;:::-;;:::i;15666:175::-;;;;;;:::i;:::-;;:::i;24177:51::-;;;;;;15904:151;;;;;;:::i;:::-;-1:-1:-1;;;;;16020:18:0;;;15993:7;16020:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15904:151;24319:47;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24623:150;;;;;;:::i;:::-;;:::i;7694:201::-;;;;;;:::i;:::-;;:::i;14035:100::-;14089:13;14122:5;14115:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14035:100;:::o;16202:169::-;16285:4;16302:39;5583:10;16325:7;16334:6;16302:8;:39::i;:::-;-1:-1:-1;16359:4:0;16202:169;;;;;:::o;16853:492::-;16993:4;17010:36;17020:6;17028:9;17039:6;17010:9;:36::i;:::-;-1:-1:-1;;;;;17086:19:0;;17059:24;17086:19;;;:11;:19;;;;;;;;5583:10;17086:33;;;;;;;;17138:26;;;;17130:79;;;;-1:-1:-1;;;17130:79:0;;3756:2:1;17130:79:0;;;3738:21:1;3795:2;3775:18;;;3768:30;3834:34;3814:18;;;3807:62;-1:-1:-1;;;3885:18:1;;;3878:38;3933:19;;17130:79:0;;;;;;;;;17245:57;17254:6;5583:10;17295:6;17276:16;:25;17245:8;:57::i;:::-;-1:-1:-1;17333:4:0;;16853:492;-1:-1:-1;;;;16853:492:0:o;17754:215::-;5583:10;17842:4;17891:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17891:34:0;;;;;;;;;;17842:4;;17859:80;;17882:7;;17891:47;;17928:10;;17891:47;:::i;:::-;17859:8;:80::i;24480:135::-;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;5583:10;7005:23;6997:68;;;;-1:-1:-1;;;6997:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24569:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;24569:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24480:135::o;24898:190::-;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;5583:10;7005:23;6997:68;;;;-1:-1:-1;;;6997:68:0;;;;;;;:::i;:::-;25005:16:::1;:36:::0;;;;25052:12:::1;:28:::0;24898:190::o;15326:127::-;-1:-1:-1;;;;;15427:18:0;15400:7;15427:18;;;:9;:18;;;;;;;15326:127::o;7436:103::-;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;5583:10;7005:23;6997:68;;;;-1:-1:-1;;;6997:68:0;;;;;;;:::i;:::-;7501:30:::1;7528:1;7501:18;:30::i;:::-;7436:103::o:0;25096:82::-;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;5583:10;7005:23;6997:68;;;;-1:-1:-1;;;6997:68:0;;;;;;;:::i;:::-;25155:7:::1;:15:::0;;-1:-1:-1;;25155:15:0::1;::::0;;25096:82::o;24781:109::-;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;5583:10;7005:23;6997:68;;;;-1:-1:-1;;;6997:68:0;;;;;;;:::i;:::-;24852:13:::1;:30:::0;;-1:-1:-1;;;;;;24852:30:0::1;-1:-1:-1::0;;;;;24852:30:0;;;::::1;::::0;;;::::1;::::0;;24781:109::o;14254:104::-;14310:13;14343:7;14336:14;;;;;:::i;18472:413::-;5583:10;18565:4;18609:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18609:34:0;;;;;;;;;;18662:35;;;;18654:85;;;;-1:-1:-1;;;18654:85:0;;4788:2:1;18654:85:0;;;4770:21:1;4827:2;4807:18;;;4800:30;4866:34;4846:18;;;4839:62;-1:-1:-1;;;4917:18:1;;;4910:35;4962:19;;18654:85:0;4586:401:1;18654:85:0;18775:67;5583:10;18798:7;18826:15;18807:16;:34;18775:8;:67::i;:::-;-1:-1:-1;18873:4:0;;18472:413;-1:-1:-1;;;18472:413:0:o;15666:175::-;15752:4;15769:42;5583:10;15793:9;15804:6;15769:9;:42::i;24623:150::-;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;5583:10;7005:23;6997:68;;;;-1:-1:-1;;;6997:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24719:25:0;;;::::1;;::::0;;;:15:::1;:25;::::0;;;;:46;;-1:-1:-1;;24719:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24623:150::o;7694:201::-;6831:7;6858:6;-1:-1:-1;;;;;6858:6:0;5583:10;7005:23;6997:68;;;;-1:-1:-1;;;6997:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7783:22:0;::::1;7775:73;;;::::0;-1:-1:-1;;;7775:73:0;;5194:2:1;7775:73:0::1;::::0;::::1;5176:21:1::0;5233:2;5213:18;;;5206:30;5272:34;5252:18;;;5245:62;-1:-1:-1;;;5323:18:1;;;5316:36;5369:19;;7775:73:0::1;4992:402:1::0;7775:73:0::1;7859:28;7878:8;7859:18;:28::i;:::-;7694:201:::0;:::o;22119:380::-;-1:-1:-1;;;;;22255:19:0;;22247:68;;;;-1:-1:-1;;;22247:68:0;;5601:2:1;22247:68:0;;;5583:21:1;5640:2;5620:18;;;5613:30;5679:34;5659:18;;;5652:62;-1:-1:-1;;;5730:18:1;;;5723:34;5774:19;;22247:68:0;5399:400:1;22247:68:0;-1:-1:-1;;;;;22334:21:0;;22326:68;;;;-1:-1:-1;;;22326:68:0;;6006:2:1;22326:68:0;;;5988:21:1;6045:2;6025:18;;;6018:30;6084:34;6064:18;;;6057:62;-1:-1:-1;;;6135:18:1;;;6128:32;6177:19;;22326:68:0;5804:398:1;22326:68:0;-1:-1:-1;;;;;22407:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22459:32;;1533:25:1;;;22459:32:0;;1506:18:1;22459:32:0;;;;;;;22119:380;;;:::o;19375:965::-;-1:-1:-1;;;;;19515:20:0;;19507:70;;;;-1:-1:-1;;;19507:70:0;;6409:2:1;19507:70:0;;;6391:21:1;6448:2;6428:18;;;6421:30;6487:34;6467:18;;;6460:62;-1:-1:-1;;;6538:18:1;;;6531:35;6583:19;;19507:70:0;6207:401:1;19507:70:0;-1:-1:-1;;;;;19596:23:0;;19588:71;;;;-1:-1:-1;;;19588:71:0;;6815:2:1;19588:71:0;;;6797:21:1;6854:2;6834:18;;;6827:30;6893:34;6873:18;;;6866:62;-1:-1:-1;;;6944:18:1;;;6937:33;6987:19;;19588:71:0;6613:399:1;19588:71:0;19670:26;19730:47;19751:6;19759:9;19770:6;19730:20;:47::i;:::-;-1:-1:-1;;;;;19814:17:0;;19790:21;19814:17;;;:9;:17;;;;;;19709:68;;-1:-1:-1;19850:23:0;;;;19842:74;;;;-1:-1:-1;;;19842:74:0;;7219:2:1;19842:74:0;;;7201:21:1;7258:2;7238:18;;;7231:30;7297:34;7277:18;;;7270:62;-1:-1:-1;;;7348:18:1;;;7341:36;7394:19;;19842:74:0;7017:402:1;19842:74:0;-1:-1:-1;;;;;19952:17:0;;;;;;;:9;:17;;;;;;19972:22;;;19952:42;;20016:20;;;;;;;;:42;;20040:18;;19952:17;20016:42;;20040:18;;20016:42;:::i;:::-;;;;-1:-1:-1;20136:27:0;;-1:-1:-1;20145:18:0;20136:6;:27;:::i;:::-;20087:42;20069:62;;;;:9;:62;;;:95;;:62;;;:95;;;;;:::i;:::-;;;;-1:-1:-1;20192:27:0;;-1:-1:-1;20201:18:0;20192:6;:27;:::i;:::-;20175:12;;:45;;;;;;;:::i;:::-;;;;;;;;20255:9;-1:-1:-1;;;;;20238:35:0;20247:6;-1:-1:-1;;;;;20238:35:0;;20266:6;20238:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;20238:35:0;;;;;;;;19496:844;;19375:965;;;:::o;8055:191::-;8129:16;8148:6;;-1:-1:-1;;;;;8165:17:0;;;-1:-1:-1;;;;;;8165:17:0;;;;;;8198:40;;8148:6;;;;;;;8198:40;;8129:16;8198:40;8118:128;8055:191;:::o;25186:745::-;-1:-1:-1;;;;;25356:14:0;;25327:7;25356:14;;;:10;:14;;;;;;;;25355:15;:36;;;;-1:-1:-1;;;;;;25375:16:0;;;;;;:10;:16;;;;;;;;25374:17;25355:36;25347:60;;;;-1:-1:-1;;;25347:60:0;;7759:2:1;25347:60:0;;;7741:21:1;7798:2;7778:18;;;7771:30;-1:-1:-1;;;7817:18:1;;;7810:41;7868:18;;25347:60:0;7557:335:1;25347:60:0;25424:13;;-1:-1:-1;;;;;25424:13:0;25420:127;;6831:7;6858:6;-1:-1:-1;;;;;25476:15:0;;;6858:6;;25476:15;;:32;;-1:-1:-1;6831:7:0;6858:6;-1:-1:-1;;;;;25495:13:0;;;6858:6;;25495:13;25476:32;25468:67;;;;-1:-1:-1;;;25468:67:0;;8099:2:1;25468:67:0;;;8081:21:1;8138:2;8118:18;;;8111:30;-1:-1:-1;;;8157:18:1;;;8150:52;8219:18;;25468:67:0;7897:346:1;25468:67:0;25563:7;;;;:31;;;;-1:-1:-1;;;;;;25575:19:0;;;;;;:15;:19;;;;;;;;25574:20;25563:31;:54;;;;-1:-1:-1;25604:13:0;;-1:-1:-1;;;;;25598:19:0;;;25604:13;;25598:19;;25563:54;:71;;;;-1:-1:-1;6831:7:0;6858:6;-1:-1:-1;;;;;25621:13:0;;;6858:6;;25621:13;;25563:71;:90;;;;-1:-1:-1;6831:7:0;6858:6;-1:-1:-1;;;;;25638:15:0;;;6858:6;;25638:15;;25563:90;25559:339;;;25710:16;;25700:6;25678:19;25694:2;25678:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;25670:111;;;;-1:-1:-1;;;25670:111:0;;8450:2:1;25670:111:0;;;8432:21:1;8489:2;8469:18;;;8462:30;8528:34;8508:18;;;8501:62;-1:-1:-1;;;8579:18:1;;;8572:48;8637:19;;25670:111:0;8248:414:1;25670:111:0;25814:12;;25804:6;:22;;25796:90;;;;-1:-1:-1;;;25796:90:0;;8869:2:1;25796:90:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;9018:25;8998:18;;;8991:53;9061:19;;25796:90:0;8667:419:1;25796:90:0;-1:-1:-1;25917:6:0;25186:745;-1:-1:-1;;25186:745:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:347::-;2156:6;2164;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;2256:29;2275:9;2256:29;:::i;:::-;2246:39;;2335:2;2324:9;2320:18;2307:32;2382:5;2375:13;2368:21;2361:5;2358:32;2348:60;;2404:1;2401;2394:12;2348:60;2427:5;2417:15;;;2091:347;;;;;:::o;2651:248::-;2719:6;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;-1:-1:-1;;2819:23:1;;;2889:2;2874:18;;;2861:32;;-1:-1:-1;2651:248:1:o;2904:260::-;2972:6;2980;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3072:29;3091:9;3072:29;:::i;:::-;3062:39;;3120:38;3154:2;3143:9;3139:18;3120:38;:::i;:::-;3110:48;;2904:260;;;;;:::o;3169:380::-;3248:1;3244:12;;;;3291;;;3312:61;;3366:4;3358:6;3354:17;3344:27;;3312:61;3419:2;3411:6;3408:14;3388:18;3385:38;3382:161;;3465:10;3460:3;3456:20;3453:1;3446:31;3500:4;3497:1;3490:15;3528:4;3525:1;3518:15;3382:161;;3169:380;;;:::o;3963:127::-;4024:10;4019:3;4015:20;4012:1;4005:31;4055:4;4052:1;4045:15;4079:4;4076:1;4069:15;4095:125;4160:9;;;4181:10;;;4178:36;;;4194:18;;:::i;4225:356::-;4427:2;4409:21;;;4446:18;;;4439:30;4505:34;4500:2;4485:18;;4478:62;4572:2;4557:18;;4225:356::o;7424:128::-;7491:9;;;7512:11;;;7509:37;;;7526:18;;:::i

Swarm Source

ipfs://fcf34e756a537ee28766e1e460d96e08b2e631c694f770e422b348c4e9d63aaa
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.