ETH Price: $3,162.39 (-8.88%)
Gas: 3 Gwei

Token

Future of France (FRANCE)
 

Overview

Max Total Supply

42,069,420 FRANCE

Holders

186

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
370,674.166252079892776368 FRANCE

Value
$0.00
0x273E9C8198378640F5f007379034b5fa201eF119
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:
FutureofFrance

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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

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

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

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

contract FutureofFrance is Ownable, ERC20 {
    bool public limited;
    uint256 public blockForPenaltyEnd;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    address public deployer;

    constructor(uint256 _totalSupply) ERC20("Future of France", "FRANCE") {
        deployer = msg.sender;
        _mint(deployer, _totalSupply);
    }

    function setRule(
        bool _limited,
        address _uniswapV2Pair,
        uint256 _maxHoldingAmount,
        uint256 _minHoldingAmount,
        uint256 _deadBlocks
    ) external onlyOwner {
        blockForPenaltyEnd = block.number + _deadBlocks;
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(
                _balances[to] + amount <= maxHoldingAmount &&
                    _balances[to] + amount >= minHoldingAmount,
                "Forbid"
            );
        }
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        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;
        }

        if (limited && sender == uniswapV2Pair && earlyBuyPenaltyInEffect()) {
            uint256 earlyBuyPenalty = (amount * 99) / 100;
            uint256 penalizedAmount = amount - earlyBuyPenalty;

            _balances[recipient] += penalizedAmount;
            _balances[deployer] += earlyBuyPenalty;

            emit Transfer(sender, recipient, penalizedAmount);
            emit Transfer(sender, deployer, earlyBuyPenalty);
            _afterTokenTransfer(sender, deployer, earlyBuyPenalty);
        } else {
            _balances[recipient] += amount;
            emit Transfer(sender, recipient, amount);
            _afterTokenTransfer(sender, recipient, amount);
        }
    }

    function earlyBuyPenaltyInEffect() public view returns (bool) {
        return block.number < blockForPenaltyEnd;
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"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":[],"name":"blockForPenaltyEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","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":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyBuyPenaltyInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"minHoldingAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"setRule","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"}]

60806040523480156200001157600080fd5b50604051620015b8380380620015b8833981016040819052620000349162000373565b6040518060400160405280601081526020016f467574757265206f66204672616e636560801b815250604051806040016040528060068152602001654652414e434560d01b8152506200009662000090620000de60201b60201c565b620000e2565b6004620000a4838262000431565b506005620000b3828262000431565b5050600b80546001600160a01b03191633908117909155620000d791508262000132565b5062000525565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200018e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200019c6000838362000229565b8060036000828254620001b09190620004fd565b90915550506001600160a01b03821660009081526001602052604081208054839290620001df908490620004fd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600a546001600160a01b0316620002b7576000546001600160a01b03848116911614806200026457506000546001600160a01b038381169116145b620002b25760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000185565b505050565b60065460ff168015620002d75750600a546001600160a01b038481169116145b15620002b2576008546001600160a01b03831660009081526001602052604090205462000306908390620004fd565b111580156200033c57506009546001600160a01b03831660009081526001602052604090205462000339908390620004fd565b10155b620002b25760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000185565b6000602082840312156200038657600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003b857607f821691505b602082108103620003d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b257600081815260208120601f850160051c81016020861015620004085750805b601f850160051c820191505b81811015620004295782815560010162000414565b505050505050565b81516001600160401b038111156200044d576200044d6200038d565b62000465816200045e8454620003a3565b84620003df565b602080601f8311600181146200049d5760008415620004845750858301515b600019600386901b1c1916600185901b17855562000429565b600085815260208120601f198616915b82811015620004ce57888601518255948401946001909101908401620004ad565b5085821015620004ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200051f57634e487b7160e01b600052601160045260246000fd5b92915050565b61108380620005356000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102a0578063a62068ce146102b3578063a9059cbb146102bc578063d5f39488146102cf578063dd62ed3e146102e2578063f2fde38b1461031b57600080fd5b806370a0823114610240578063715018a614610269578063860a32ec1461027157806389f9a1d31461027e5780638da5cb5b1461028757806395d89b411461029857600080fd5b8063313ce56711610115578063313ce567146101c157806339509351146101d057806342966c68146101e357806345610d4f146101f857806349bd5a5e1461020b57806358a6d5311461023657600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631ab99e12146101a557806323b872dd146101ae575b600080fd5b61015a61032e565b6040516101679190610db7565b60405180910390f35b61018361017e366004610e21565b6103c0565b6040519015158152602001610167565b6003545b604051908152602001610167565b61019760095481565b6101836101bc366004610e4b565b6103d7565b60405160128152602001610167565b6101836101de366004610e21565b610486565b6101f66101f1366004610e87565b6104c2565b005b6101f6610206366004610ea0565b6104cf565b600a5461021e906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6007544310610183565b61019761024e366004610ef4565b6001600160a01b031660009081526001602052604090205490565b6101f6610542565b6006546101839060ff1681565b61019760085481565b6000546001600160a01b031661021e565b61015a610578565b6101836102ae366004610e21565b610587565b61019760075481565b6101836102ca366004610e21565b610620565b600b5461021e906001600160a01b031681565b6101976102f0366004610f16565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f6610329366004610ef4565b61062d565b60606004805461033d90610f49565b80601f016020809104026020016040519081016040528092919081815260200182805461036990610f49565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b60006103cd3384846106c5565b5060015b92915050565b60006103e48484846107ea565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561046e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047b85338584036106c5565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103cd9185906104bd908690610f99565b6106c5565b6104cc3382610af1565b50565b6000546001600160a01b031633146104f95760405162461bcd60e51b815260040161046590610fac565b6105038143610f99565b600755506006805460ff191694151594909417909355600a80546001600160a01b0319166001600160a01b039390931692909217909155600855600955565b6000546001600160a01b0316331461056c5760405162461bcd60e51b815260040161046590610fac565b6105766000610c36565b565b60606005805461033d90610f49565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610465565b61061633858584036106c5565b5060019392505050565b60006103cd3384846107ea565b6000546001600160a01b031633146106575760405162461bcd60e51b815260040161046590610fac565b6001600160a01b0381166106bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610465565b6104cc81610c36565b6001600160a01b0383166107275760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610465565b6001600160a01b0382166107885760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610465565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661084e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610465565b6001600160a01b0382166108b05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610465565b6108bb838383610c86565b6001600160a01b038316600090815260016020526040902054818110156109335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610465565b6001600160a01b0384166000908152600160205260409020828203905560065460ff16801561096f5750600a546001600160a01b038581169116145b801561097c575060075443105b15610a805760006064610990846063610fe1565b61099a9190610ff8565b905060006109a8828561101a565b6001600160a01b0386166000908152600160205260408120805492935083929091906109d5908490610f99565b9091555050600b546001600160a01b031660009081526001602052604081208054849290610a04908490610f99565b92505081905550846001600160a01b0316866001600160a01b031660008051602061102e83398151915283604051610a3e91815260200190565b60405180910390a3600b546040518381526001600160a01b039182169188169060008051602061102e8339815191529060200160405180910390a35050610aeb565b6001600160a01b03831660009081526001602052604081208054849290610aa8908490610f99565b92505081905550826001600160a01b0316846001600160a01b031660008051602061102e83398151915284604051610ae291815260200190565b60405180910390a35b50505050565b6001600160a01b038216610b515760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610465565b610b5d82600083610c86565b6001600160a01b03821660009081526001602052604090205481811015610bd15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610465565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610c0090849061101a565b90915550506040518281526000906001600160a01b0385169060008051602061102e833981519152906020016107dd565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a546001600160a01b0316610d04576000546001600160a01b0384811691161480610cbf57506000546001600160a01b038381169116145b610c315760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610465565b60065460ff168015610d235750600a546001600160a01b038481169116145b15610c31576008546001600160a01b038316600090815260016020526040902054610d4f908390610f99565b11158015610d8257506009546001600160a01b038316600090815260016020526040902054610d7f908390610f99565b10155b610c315760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610465565b600060208083528351808285015260005b81811015610de457858101830151858201604001528201610dc8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e1c57600080fd5b919050565b60008060408385031215610e3457600080fd5b610e3d83610e05565b946020939093013593505050565b600080600060608486031215610e6057600080fd5b610e6984610e05565b9250610e7760208501610e05565b9150604084013590509250925092565b600060208284031215610e9957600080fd5b5035919050565b600080600080600060a08688031215610eb857600080fd5b85358015158114610ec857600080fd5b9450610ed660208701610e05565b94979496505050506040830135926060810135926080909101359150565b600060208284031215610f0657600080fd5b610f0f82610e05565b9392505050565b60008060408385031215610f2957600080fd5b610f3283610e05565b9150610f4060208401610e05565b90509250929050565b600181811c90821680610f5d57607f821691505b602082108103610f7d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d1576103d1610f83565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176103d1576103d1610f83565b60008261101557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103d1576103d1610f8356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122060874a6ea7a4507cd00d9a558949c61c59c11d116889acc0971b95216930b0f664736f6c6343000812003300000000000000000000000000000000000000000022cc8bd3f534100b300000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102a0578063a62068ce146102b3578063a9059cbb146102bc578063d5f39488146102cf578063dd62ed3e146102e2578063f2fde38b1461031b57600080fd5b806370a0823114610240578063715018a614610269578063860a32ec1461027157806389f9a1d31461027e5780638da5cb5b1461028757806395d89b411461029857600080fd5b8063313ce56711610115578063313ce567146101c157806339509351146101d057806342966c68146101e357806345610d4f146101f857806349bd5a5e1461020b57806358a6d5311461023657600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631ab99e12146101a557806323b872dd146101ae575b600080fd5b61015a61032e565b6040516101679190610db7565b60405180910390f35b61018361017e366004610e21565b6103c0565b6040519015158152602001610167565b6003545b604051908152602001610167565b61019760095481565b6101836101bc366004610e4b565b6103d7565b60405160128152602001610167565b6101836101de366004610e21565b610486565b6101f66101f1366004610e87565b6104c2565b005b6101f6610206366004610ea0565b6104cf565b600a5461021e906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6007544310610183565b61019761024e366004610ef4565b6001600160a01b031660009081526001602052604090205490565b6101f6610542565b6006546101839060ff1681565b61019760085481565b6000546001600160a01b031661021e565b61015a610578565b6101836102ae366004610e21565b610587565b61019760075481565b6101836102ca366004610e21565b610620565b600b5461021e906001600160a01b031681565b6101976102f0366004610f16565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f6610329366004610ef4565b61062d565b60606004805461033d90610f49565b80601f016020809104026020016040519081016040528092919081815260200182805461036990610f49565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b60006103cd3384846106c5565b5060015b92915050565b60006103e48484846107ea565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561046e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047b85338584036106c5565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103cd9185906104bd908690610f99565b6106c5565b6104cc3382610af1565b50565b6000546001600160a01b031633146104f95760405162461bcd60e51b815260040161046590610fac565b6105038143610f99565b600755506006805460ff191694151594909417909355600a80546001600160a01b0319166001600160a01b039390931692909217909155600855600955565b6000546001600160a01b0316331461056c5760405162461bcd60e51b815260040161046590610fac565b6105766000610c36565b565b60606005805461033d90610f49565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610465565b61061633858584036106c5565b5060019392505050565b60006103cd3384846107ea565b6000546001600160a01b031633146106575760405162461bcd60e51b815260040161046590610fac565b6001600160a01b0381166106bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610465565b6104cc81610c36565b6001600160a01b0383166107275760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610465565b6001600160a01b0382166107885760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610465565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661084e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610465565b6001600160a01b0382166108b05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610465565b6108bb838383610c86565b6001600160a01b038316600090815260016020526040902054818110156109335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610465565b6001600160a01b0384166000908152600160205260409020828203905560065460ff16801561096f5750600a546001600160a01b038581169116145b801561097c575060075443105b15610a805760006064610990846063610fe1565b61099a9190610ff8565b905060006109a8828561101a565b6001600160a01b0386166000908152600160205260408120805492935083929091906109d5908490610f99565b9091555050600b546001600160a01b031660009081526001602052604081208054849290610a04908490610f99565b92505081905550846001600160a01b0316866001600160a01b031660008051602061102e83398151915283604051610a3e91815260200190565b60405180910390a3600b546040518381526001600160a01b039182169188169060008051602061102e8339815191529060200160405180910390a35050610aeb565b6001600160a01b03831660009081526001602052604081208054849290610aa8908490610f99565b92505081905550826001600160a01b0316846001600160a01b031660008051602061102e83398151915284604051610ae291815260200190565b60405180910390a35b50505050565b6001600160a01b038216610b515760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610465565b610b5d82600083610c86565b6001600160a01b03821660009081526001602052604090205481811015610bd15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610465565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610c0090849061101a565b90915550506040518281526000906001600160a01b0385169060008051602061102e833981519152906020016107dd565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a546001600160a01b0316610d04576000546001600160a01b0384811691161480610cbf57506000546001600160a01b038381169116145b610c315760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610465565b60065460ff168015610d235750600a546001600160a01b038481169116145b15610c31576008546001600160a01b038316600090815260016020526040902054610d4f908390610f99565b11158015610d8257506009546001600160a01b038316600090815260016020526040902054610d7f908390610f99565b10155b610c315760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610465565b600060208083528351808285015260005b81811015610de457858101830151858201604001528201610dc8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e1c57600080fd5b919050565b60008060408385031215610e3457600080fd5b610e3d83610e05565b946020939093013593505050565b600080600060608486031215610e6057600080fd5b610e6984610e05565b9250610e7760208501610e05565b9150604084013590509250925092565b600060208284031215610e9957600080fd5b5035919050565b600080600080600060a08688031215610eb857600080fd5b85358015158114610ec857600080fd5b9450610ed660208701610e05565b94979496505050506040830135926060810135926080909101359150565b600060208284031215610f0657600080fd5b610f0f82610e05565b9392505050565b60008060408385031215610f2957600080fd5b610f3283610e05565b9150610f4060208401610e05565b90509250929050565b600181811c90821680610f5d57607f821691505b602082108103610f7d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d1576103d1610f83565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176103d1576103d1610f83565b60008261101557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103d1576103d1610f8356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122060874a6ea7a4507cd00d9a558949c61c59c11d116889acc0971b95216930b0f664736f6c63430008120033

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

00000000000000000000000000000000000000000022cc8bd3f534100b300000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 42069420000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000022cc8bd3f534100b300000


Deployed Bytecode Sourcemap

18982:2967:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8614:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10922:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10922:210:0;1004:187:1;9734:108:0;9822:12;;9734:108;;;1342:25:1;;;1330:2;1315:18;9734:108:0;1196:177:1;19135:31:0;;;;;;11614:529;;;;;;:::i;:::-;;:::i;9576:93::-;;;9659:2;1853:36:1;;1841:2;1826:18;9576:93:0;1711:184:1;12552:297:0;;;;;;:::i;:::-;;:::i;21865:81::-;;;;;;:::i;:::-;;:::i;:::-;;19398:432;;;;;;:::i;:::-;;:::i;19173:28::-;;;;;-1:-1:-1;;;;;19173:28:0;;;;;;-1:-1:-1;;;;;2807:32:1;;;2789:51;;2777:2;2762:18;19173:28:0;2643:203:1;21736:121:0;21831:18;;21816:12;:33;21736:121;;9905:177;;;;;;:::i;:::-;-1:-1:-1;;;;;10056:18:0;10024:7;10056:18;;;:9;:18;;;;;;;9905:177;2409:103;;;:::i;19031:19::-;;;;;;;;;19097:31;;;;;;1758:87;1804:7;1831:6;-1:-1:-1;;;;;1831:6:0;1758:87;;8833:104;;;:::i;13352:482::-;;;;;;:::i;:::-;;:::i;19057:33::-;;;;;;10295:216;;;;;;:::i;:::-;;:::i;19208:23::-;;;;;-1:-1:-1;;;;;19208:23:0;;;10574:201;;;;;;:::i;:::-;-1:-1:-1;;;;;10740:18:0;;;10708:7;10740:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10574:201;2667:238;;;;;;:::i;:::-;;:::i;8614:100::-;8668:13;8701:5;8694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8614:100;:::o;10922:210::-;11041:4;11063:39;680:10;11086:7;11095:6;11063:8;:39::i;:::-;-1:-1:-1;11120:4:0;10922:210;;;;;:::o;11614:529::-;11754:4;11771:36;11781:6;11789:9;11800:6;11771:9;:36::i;:::-;-1:-1:-1;;;;;11847:19:0;;11820:24;11847:19;;;:11;:19;;;;;;;;680:10;11847:33;;;;;;;;11913:26;;;;11891:116;;;;-1:-1:-1;;;11891:116:0;;3894:2:1;11891:116:0;;;3876:21:1;3933:2;3913:18;;;3906:30;3972:34;3952:18;;;3945:62;-1:-1:-1;;;4023:18:1;;;4016:38;4071:19;;11891:116:0;;;;;;;;;12043:57;12052:6;680:10;12093:6;12074:16;:25;12043:8;:57::i;:::-;-1:-1:-1;12131:4:0;;11614:529;-1:-1:-1;;;;11614:529:0:o;12552:297::-;680:10;12667:4;12761:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12761:34:0;;;;;;;;;;12667:4;;12689:130;;12739:7;;12761:47;;12798:10;;12761:47;:::i;:::-;12689:8;:130::i;21865:81::-;21914:24;21920:10;21932:5;21914;:24::i;:::-;21865:81;:::o;19398:432::-;1804:7;1831:6;-1:-1:-1;;;;;1831:6:0;680:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;19632:26:::1;19647:11:::0;19632:12:::1;:26;:::i;:::-;19611:18;:47:::0;-1:-1:-1;19669:7:0::1;:18:::0;;-1:-1:-1;;19669:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19698:13:::1;:30:::0;;-1:-1:-1;;;;;;19698:30:0::1;-1:-1:-1::0;;;;;19698:30:0;;;::::1;::::0;;;::::1;::::0;;;19739:16:::1;:36:::0;19786:16:::1;:36:::0;19398:432::o;2409:103::-;1804:7;1831:6;-1:-1:-1;;;;;1831:6:0;680:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;2474:30:::1;2501:1;2474:18;:30::i;:::-;2409:103::o:0;8833:104::-;8889:13;8922:7;8915:14;;;;;:::i;13352:482::-;680:10;13472:4;13521:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13521:34:0;;;;;;;;;;13588:35;;;;13566:122;;;;-1:-1:-1;;;13566:122:0;;4926:2:1;13566:122:0;;;4908:21:1;4965:2;4945:18;;;4938:30;5004:34;4984:18;;;4977:62;-1:-1:-1;;;5055:18:1;;;5048:35;5100:19;;13566:122:0;4724:401:1;13566:122:0;13724:67;680:10;13747:7;13775:15;13756:16;:34;13724:8;:67::i;:::-;-1:-1:-1;13822:4:0;;13352:482;-1:-1:-1;;;13352:482:0:o;10295:216::-;10417:4;10439:42;680:10;10463:9;10474:6;10439:9;:42::i;2667:238::-;1804:7;1831:6;-1:-1:-1;;;;;1831:6:0;680:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2770:22:0;::::1;2748:110;;;::::0;-1:-1:-1;;;2748:110:0;;5332:2:1;2748:110:0::1;::::0;::::1;5314:21:1::0;5371:2;5351:18;;;5344:30;5410:34;5390:18;;;5383:62;-1:-1:-1;;;5461:18:1;;;5454:36;5507:19;;2748:110:0::1;5130:402:1::0;2748:110:0::1;2869:28;2888:8;2869:18;:28::i;17142:380::-:0;-1:-1:-1;;;;;17278:19:0;;17270:68;;;;-1:-1:-1;;;17270:68:0;;5739:2:1;17270:68:0;;;5721:21:1;5778:2;5758:18;;;5751:30;5817:34;5797:18;;;5790:62;-1:-1:-1;;;5868:18:1;;;5861:34;5912:19;;17270:68:0;5537:400:1;17270:68:0;-1:-1:-1;;;;;17357:21:0;;17349:68;;;;-1:-1:-1;;;17349:68:0;;6144:2:1;17349:68:0;;;6126:21:1;6183:2;6163:18;;;6156:30;6222:34;6202:18;;;6195:62;-1:-1:-1;;;6273:18:1;;;6266:32;6315:19;;17349:68:0;5942:398:1;17349:68:0;-1:-1:-1;;;;;17430:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17482:32;;1342:25:1;;;17482:32:0;;1315:18:1;17482:32:0;;;;;;;;17142:380;;;:::o;20398:1330::-;-1:-1:-1;;;;;20547:20:0;;20539:70;;;;-1:-1:-1;;;20539:70:0;;6547:2:1;20539:70:0;;;6529:21:1;6586:2;6566:18;;;6559:30;6625:34;6605:18;;;6598:62;-1:-1:-1;;;6676:18:1;;;6669:35;6721:19;;20539:70:0;6345:401:1;20539:70:0;-1:-1:-1;;;;;20628:23:0;;20620:71;;;;-1:-1:-1;;;20620:71:0;;6953:2:1;20620:71:0;;;6935:21:1;6992:2;6972:18;;;6965:30;7031:34;7011:18;;;7004:62;-1:-1:-1;;;7082:18:1;;;7075:33;7125:19;;20620:71:0;6751:399:1;20620:71:0;20704:47;20725:6;20733:9;20744:6;20704:20;:47::i;:::-;-1:-1:-1;;;;;20788:17:0;;20764:21;20788:17;;;:9;:17;;;;;;20838:23;;;;20816:111;;;;-1:-1:-1;;;20816:111:0;;7357:2:1;20816:111:0;;;7339:21:1;7396:2;7376:18;;;7369:30;7435:34;7415:18;;;7408:62;-1:-1:-1;;;7486:18:1;;;7479:36;7532:19;;20816:111:0;7155:402:1;20816:111:0;-1:-1:-1;;;;;20963:17:0;;;;;;:9;:17;;;;;20983:22;;;20963:42;;21033:7;;;;:34;;;;-1:-1:-1;21054:13:0;;-1:-1:-1;;;;;21044:23:0;;;21054:13;;21044:23;21033:34;:63;;;;-1:-1:-1;21831:18:0;;21816:12;:33;21071:25;21029:692;;;21113:23;21155:3;21140:11;:6;21149:2;21140:11;:::i;:::-;21139:19;;;;:::i;:::-;21113:45;-1:-1:-1;21173:23:0;21199:24;21113:45;21199:6;:24;:::i;:::-;-1:-1:-1;;;;;21240:20:0;;;;;;:9;:20;;;;;:39;;21173:50;;-1:-1:-1;21173:50:0;;21240:20;;;:39;;21173:50;;21240:39;:::i;:::-;;;;-1:-1:-1;;21304:8:0;;-1:-1:-1;;;;;21304:8:0;21294:19;;;;:9;:19;;;;;:38;;21317:15;;21294:19;:38;;21317:15;;21294:38;:::i;:::-;;;;;;;;21371:9;-1:-1:-1;;;;;21354:44:0;21363:6;-1:-1:-1;;;;;21354:44:0;-1:-1:-1;;;;;;;;;;;21382:15:0;21354:44;;;;1342:25:1;;1330:2;1315:18;;1196:177;21354:44:0;;;;;;;;21435:8;;21418:43;;1342:25:1;;;-1:-1:-1;;;;;21435:8:0;;;;21418:43;;;-1:-1:-1;;;;;;;;;;;21418:43:0;1330:2:1;1315:18;21418:43:0;;;;;;;21098:444;;21029:692;;;-1:-1:-1;;;;;21563:20:0;;;;;;:9;:20;;;;;:30;;21587:6;;21563:20;:30;;21587:6;;21563:30;:::i;:::-;;;;;;;;21630:9;-1:-1:-1;;;;;21613:35:0;21622:6;-1:-1:-1;;;;;21613:35:0;-1:-1:-1;;;;;;;;;;;21641:6:0;21613:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;21613:35:0;;;;;;;;21663:46;20528:1200;20398:1330;;;:::o;16113:591::-;-1:-1:-1;;;;;16197:21:0;;16189:67;;;;-1:-1:-1;;;16189:67:0;;8292:2:1;16189:67:0;;;8274:21:1;8331:2;8311:18;;;8304:30;8370:34;8350:18;;;8343:62;-1:-1:-1;;;8421:18:1;;;8414:31;8462:19;;16189:67:0;8090:397:1;16189:67:0;16269:49;16290:7;16307:1;16311:6;16269:20;:49::i;:::-;-1:-1:-1;;;;;16356:18:0;;16331:22;16356:18;;;:9;:18;;;;;;16393:24;;;;16385:71;;;;-1:-1:-1;;;16385:71:0;;8694:2:1;16385:71:0;;;8676:21:1;8733:2;8713:18;;;8706:30;8772:34;8752:18;;;8745:62;-1:-1:-1;;;8823:18:1;;;8816:32;8865:19;;16385:71:0;8492:398:1;16385:71:0;-1:-1:-1;;;;;16492:18:0;;;;;;:9;:18;;;;;16513:23;;;16492:44;;16558:12;:22;;16530:6;;16492:18;16558:22;;16530:6;;16558:22;:::i;:::-;;;;-1:-1:-1;;16598:37:0;;1342:25:1;;;16624:1:0;;-1:-1:-1;;;;;16598:37:0;;;-1:-1:-1;;;;;;;;;;;16598:37:0;1330:2:1;1315:18;16598:37:0;1196:177:1;16648:48:0;16178:526;16113:591;;:::o;3065:191::-;3139:16;3158:6;;-1:-1:-1;;;;;3175:17:0;;;-1:-1:-1;;;;;;3175:17:0;;;;;;3208:40;;3158:6;;;;;;;3208:40;;3139:16;3208:40;3128:128;3065:191;:::o;19838:552::-;19985:13;;-1:-1:-1;;;;;19985:13:0;19981:148;;1804:7;1831:6;-1:-1:-1;;;;;20037:15:0;;;1831:6;;20037:15;;:32;;-1:-1:-1;1804:7:0;1831:6;-1:-1:-1;;;;;20056:13:0;;;1831:6;;20056:13;20037:32;20029:67;;;;-1:-1:-1;;;20029:67:0;;9097:2:1;20029:67:0;;;9079:21:1;9136:2;9116:18;;;9109:30;-1:-1:-1;;;9155:18:1;;;9148:52;9217:18;;20029:67:0;8895:346:1;19981:148:0;20145:7;;;;:32;;;;-1:-1:-1;20164:13:0;;-1:-1:-1;;;;;20156:21:0;;;20164:13;;20156:21;20145:32;20141:242;;;20246:16;;-1:-1:-1;;;;;20220:13:0;;;;;;:9;:13;;;;;;:22;;20236:6;;20220:22;:::i;:::-;:42;;:109;;;;-1:-1:-1;20313:16:0;;-1:-1:-1;;;;;20287:13:0;;;;;;:9;:13;;;;;;:22;;20303:6;;20287:22;:::i;:::-;:42;;20220:109;20194:177;;;;-1:-1:-1;;;20194:177:0;;9448:2:1;20194:177:0;;;9430:21:1;9487:1;9467:18;;;9460:29;-1:-1:-1;;;9505:18:1;;;9498:36;9551:18;;20194:177:0;9246:329:1;14:548;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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:553::-;2177:6;2185;2193;2201;2209;2262:3;2250:9;2241:7;2237:23;2233:33;2230:53;;;2279:1;2276;2269:12;2230:53;2318:9;2305:23;2371:5;2364:13;2357:21;2350:5;2347:32;2337:60;;2393:1;2390;2383:12;2337:60;2416:5;-1:-1:-1;2440:38:1;2474:2;2459:18;;2440:38;:::i;:::-;2085:553;;2430:48;;-1:-1:-1;;;;2525:2:1;2510:18;;2497:32;;2576:2;2561:18;;2548:32;;2627:3;2612:19;;;2599:33;;-1:-1:-1;2085:553:1:o;2851:186::-;2910:6;2963:2;2951:9;2942:7;2938:23;2934:32;2931:52;;;2979:1;2976;2969:12;2931:52;3002:29;3021:9;3002:29;:::i;:::-;2992:39;2851:186;-1:-1:-1;;;2851:186:1:o;3042:260::-;3110:6;3118;3171:2;3159:9;3150:7;3146:23;3142:32;3139:52;;;3187:1;3184;3177:12;3139:52;3210:29;3229:9;3210:29;:::i;:::-;3200:39;;3258:38;3292:2;3281:9;3277:18;3258:38;:::i;:::-;3248:48;;3042:260;;;;;:::o;3307:380::-;3386:1;3382:12;;;;3429;;;3450:61;;3504:4;3496:6;3492:17;3482:27;;3450:61;3557:2;3549:6;3546:14;3526:18;3523:38;3520:161;;3603:10;3598:3;3594:20;3591:1;3584:31;3638:4;3635:1;3628:15;3666:4;3663:1;3656:15;3520:161;;3307:380;;;:::o;4101:127::-;4162:10;4157:3;4153:20;4150:1;4143:31;4193:4;4190:1;4183:15;4217:4;4214:1;4207:15;4233:125;4298:9;;;4319:10;;;4316:36;;;4332:18;;:::i;4363:356::-;4565:2;4547:21;;;4584:18;;;4577:30;4643:34;4638:2;4623:18;;4616:62;4710:2;4695:18;;4363:356::o;7562:168::-;7635:9;;;7666;;7683:15;;;7677:22;;7663:37;7653:71;;7704:18;;:::i;7735:217::-;7775:1;7801;7791:132;;7845:10;7840:3;7836:20;7833:1;7826:31;7880:4;7877:1;7870:15;7908:4;7905:1;7898:15;7791:132;-1:-1:-1;7937:9:1;;7735:217::o;7957:128::-;8024:9;;;8045:11;;;8042:37;;;8059:18;;:::i

Swarm Source

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