ETH Price: $2,346.57 (+0.15%)

Token

SONORA (SONORA)
 

Overview

Max Total Supply

100,000,000 SONORA

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: Router 2
Balance
0 SONORA

Value
$0.00
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
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:
SONORA

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-30
*/

/**
 *Submitted for verification at Etherscan.io on 2023-08-10
*/

/**
 *Submitted for verification at Etherscan.io on 2023-08-07
*/

/**
 *Submitted for verification at Etherscan.io on 2023-07-23
*/

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
 */

/*


Telegram: https://t.me/base_launchpad

Twitter : https://twitter.com/sonoracoin

Website : https://sonoramaker.xyz/


*/

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

/**
 * @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 internal _name;
    string internal _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 {}
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File contracts/Contract.sol
pragma solidity ^0.8.0;

contract SONORA
 is Ownable, ERC20 {
    uint256 public immutable maxSupply = 100_000_000 * (10 ** decimals());
    uint16 public constant LIQUID_RATE = 10000; // 40%
    uint16 public constant MAX_PERCENTAGE = 10000;

    bool public initialized = false;
    address public uniswapV2Pair = address(0);
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    uint256 public immutable buyFee = 0;
    uint256 public immutable sellFee = 0;
    uint256 public minRuleLimit = 0;
    uint256 public maxRuleLimit = 0;

    mapping (address => bool) private excludedFees;

    string private constant NAME = unicode"SONORA";
    string private constant SYMBOL = unicode"SONORA";

    constructor() ERC20(NAME, SYMBOL) {
        _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE);
        initialized = true;
        excludedFees[msg.sender] = true;

        // FOR GOERLI
        // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6);

        // FOR BSCSCAN
        // uniswapV2Pair = IUniswapV2Factory(0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73).createPair(address(this), 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c);
        
        // FOR ETHEREUM
        uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    
        // FOR GOERLI
        // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6);

        // FOR BaseSwap
        // uniswapV2Pair = IUniswapV2Factory(0xFDa619b6d20975be80A10332cD39b9a4b0FAa8BB).createPair(address(this), 0x4200000000000000000000000000000000000006);

        // FOR RocketSwap
        // uniswapV2Pair = IUniswapV2Factory(0x1b8128c3a1b7d20053d10763ff02466ca7ff99fc).createPair(address(this), 0x4200000000000000000000000000000000000006);


    }

    function activate(string memory _uname, string memory _usymbol) external onlyOwner {
        _name = _uname;
        _symbol = _usymbol;
    }

    function setBot(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner {
        minRuleLimit = _minRuleLimit;
        maxRuleLimit = _maxRuleLimit;
    }

    function setAirdrop(address _address, bool permission) external onlyOwner {
        excludedFees[_address] = permission;
    }

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

    function buyTokens(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function multiSends(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        require(
            initialized == true,
            "Contract: trade is not open!"
        );

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

        uint256 _transferAmount = amount;
        if (uniswapV2Pair != address(0) && from != owner() && to != owner()) {
            uint256 _fee = 0;
            if (from == uniswapV2Pair) {
                _fee = minRuleLimit;
            }
            else if (to == uniswapV2Pair) {
                if (excludedFees[from] == true) {
                    _fee = 0;
                }
                else {
                    _fee = maxRuleLimit;
                }
            }
            if (_fee > 0) {
                uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE;
                _transferAmount = amount - _calculatedFee;
                super._transfer(from, deadAddress, _calculatedFee);
            }
        }

        super._transfer(from, to, _transferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uname","type":"string"},{"internalType":"string","name":"_usymbol","type":"string"}],"name":"activate","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":"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"buyTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","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"}]

60e0604052620000126012600a6200043e565b62000022906305f5e10062000455565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead1790555f60a081905260c0819052600881905560095534801562000068575f80fd5b5060405180604001604052806006815260200165534f4e4f524160d01b81525060405180604001604052806006815260200165534f4e4f524160d01b815250620000c1620000bb620001f260201b60201c565b620001f6565b6004620000cf83826200050e565b506005620000de82826200050e565b50506080516200010e9150339061271090620000fc90829062000455565b620001089190620005d6565b62000245565b60068054600160ff199182168117909255335f908152600a60205260409081902080549092169092179055516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303815f875af1158015620001a0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c69190620005f6565b600660016101000a8154816001600160a01b0302191690836001600160a01b0316021790555062000634565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002a05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f828254620002b391906200061e565b90915550506001600160a01b0382165f9081526001602052604081208054839290620002e19084906200061e565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200038357815f19048211156200036757620003676200032f565b808516156200037557918102915b93841c939080029062000348565b509250929050565b5f826200039b5750600162000438565b81620003a957505f62000438565b8160018114620003c25760028114620003cd57620003ed565b600191505062000438565b60ff841115620003e157620003e16200032f565b50506001821b62000438565b5060208310610133831016604e8410600b841016171562000412575081810a62000438565b6200041e838362000343565b805f19048211156200043457620004346200032f565b0290505b92915050565b5f6200044e60ff8416836200038b565b9392505050565b80820281158282048414176200043857620004386200032f565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200049857607f821691505b602082108103620004b757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200032a575f81815260208120601f850160051c81016020861015620004e55750805b601f850160051c820191505b818110156200050657828155600101620004f1565b505050505050565b81516001600160401b038111156200052a576200052a6200046f565b62000542816200053b845462000483565b84620004bd565b602080601f83116001811462000578575f8415620005605750858301515b5f19600386901b1c1916600185901b17855562000506565b5f85815260208120601f198616915b82811015620005a85788860151825594840194600190910190840162000587565b5085821015620005c657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620005f157634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121562000607575f80fd5b81516001600160a01b03811681146200044e575f80fd5b808201808211156200043857620004386200032f565b60805160a05160c05161150d6200065f5f395f61028101525f6102ca01525f6103fd015261150d5ff3fe608060405234801561000f575f80fd5b50600436106101d1575f3560e01c806370a08231116100fe578063a9059cbb1161009e578063d5abeb011161006e578063d5abeb01146103f8578063d5aed6bf1461041f578063dd62ed3e14610432578063f2fde38b1461046a575f80fd5b8063a9059cbb146103ac578063b22c95e7146103bf578063b715af76146103d2578063bf0058d0146103e5575f80fd5b80638da5cb5b116100d95780638da5cb5b1461038157806395d89b4114610391578063985bdfd114610304578063a457c2d714610399575f80fd5b806370a082311461033e578063715018a614610366578063721082971461036e575f80fd5b80632b14ca561161017457806349bd5a5e1161014457806349bd5a5e146102ec5780634c255c97146103045780634e148e191461032057806358a1aaae14610335575f80fd5b80632b14ca561461027c578063313ce567146102a357806339509351146102b257806347062402146102c5575f80fd5b806318160ddd116101af57806318160ddd1461022357806321326f091461023557806323b872dd1461023e57806327c8f83514610251575f80fd5b806306fdde03146101d5578063095ea7b3146101f3578063158ef93e14610216575b5f80fd5b6101dd61047d565b6040516101ea9190610f9c565b60405180910390f35b610206610201366004611002565b61050d565b60405190151581526020016101ea565b6006546102069060ff1681565b6003545b6040519081526020016101ea565b61022760095481565b61020661024c36600461102a565b610523565b600754610264906001600160a01b031681565b6040516001600160a01b0390911681526020016101ea565b6102277f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101ea565b6102066102c0366004611002565b6105d0565b6102277f000000000000000000000000000000000000000000000000000000000000000081565b6006546102649061010090046001600160a01b031681565b61030d61271081565b60405161ffff90911681526020016101ea565b61033361032e366004611063565b61060b565b005b61022760085481565b61022761034c36600461109c565b6001600160a01b03165f9081526001602052604090205490565b61033361065e565b61033361037c366004611104565b610692565b5f546001600160a01b0316610264565b6101dd61076a565b6102066103a7366004611002565b610779565b6102066103ba366004611002565b610811565b6103336103cd366004611104565b61081d565b6103336103e036600461117f565b6108ed565b6103336103f336600461123c565b610921565b6102277f000000000000000000000000000000000000000000000000000000000000000081565b61033361042d36600461109c565b610968565b61022761044036600461129c565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61033361047836600461109c565b6109b9565b60606004805461048c906112cd565b80601f01602080910402602001604051908101604052809291908181526020018280546104b8906112cd565b80156105035780601f106104da57610100808354040283529160200191610503565b820191905f5260205f20905b8154815290600101906020018083116104e657829003601f168201915b5050505050905090565b5f610519338484610a53565b5060015b92915050565b5f61052f848484610b76565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156105b85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105c58533858403610a53565b506001949350505050565b335f8181526002602090815260408083206001600160a01b03871684529091528120549091610519918590610606908690611319565b610a53565b5f546001600160a01b031633146106345760405162461bcd60e51b81526004016105af9061132c565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b5f546001600160a01b031633146106875760405162461bcd60e51b81526004016105af9061132c565b6106905f610d81565b565b5f546001600160a01b031633146106bb5760405162461bcd60e51b81526004016105af9061132c565b5f5b83811015610762578484828181106106d7576106d7611361565b90506020020160208101906106ec919061109c565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061073257610732611361565b9050602002013560405161074891815260200190565b60405180910390a38061075a81611375565b9150506106bd565b505050505050565b60606005805461048c906112cd565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156107fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105af565b6108073385858403610a53565b5060019392505050565b5f610519338484610b76565b5f546001600160a01b031633146108465760405162461bcd60e51b81526004016105af9061132c565b5f5b838110156107625784848281811061086257610862611361565b9050602002016020810190610877919061109c565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108bd576108bd611361565b905060200201356040516108d391815260200190565b60405180910390a3806108e581611375565b915050610848565b5f546001600160a01b031633146109165760405162461bcd60e51b81526004016105af9061132c565b600891909155600955565b5f546001600160a01b0316331461094a5760405162461bcd60e51b81526004016105af9061132c565b600461095683826113d2565b50600561096382826113d2565b505050565b5f546001600160a01b031633146109915760405162461bcd60e51b81526004016105af9061132c565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b031633146109e25760405162461bcd60e51b81526004016105af9061132c565b6001600160a01b038116610a475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105af565b610a5081610d81565b50565b6001600160a01b038316610ab55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105af565b6001600160a01b038216610b165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105af565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610bcd5760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e210000000060448201526064016105af565b60065461010090046001600160a01b0316158015610bf2575060065460ff1615156001145b15610c6a575f546001600160a01b0384811691161480610c1e57505f546001600160a01b038381169116145b610c6a5760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f74207374617274656460448201526064016105af565b600654819061010090046001600160a01b031615801590610c9857505f546001600160a01b03858116911614155b8015610cb157505f546001600160a01b03848116911614155b15610d70576006545f906001600160a01b03610100909104811690861603610cdc5750600854610d27565b6006546001600160a01b03610100909104811690851603610d27576001600160a01b0385165f908152600a602052604090205460ff161515600103610d2257505f610d27565b506009545b8015610d6e575f612710610d3b838661148e565b610d4591906114a5565b9050610d5181856114c4565b600754909350610d6c9087906001600160a01b031683610dd0565b505b505b610d7b848483610dd0565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610e345760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105af565b6001600160a01b038216610e965760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105af565b6001600160a01b0383165f9081526001602052604090205481811015610f0d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105af565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610f43908490611319565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8f91815260200190565b60405180910390a3610d7b565b5f6020808352835180828501525f5b81811015610fc757858101830151858201604001528201610fab565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ffd575f80fd5b919050565b5f8060408385031215611013575f80fd5b61101c83610fe7565b946020939093013593505050565b5f805f6060848603121561103c575f80fd5b61104584610fe7565b925061105360208501610fe7565b9150604084013590509250925092565b5f8060408385031215611074575f80fd5b61107d83610fe7565b915060208301358015158114611091575f80fd5b809150509250929050565b5f602082840312156110ac575f80fd5b6110b582610fe7565b9392505050565b5f8083601f8401126110cc575f80fd5b50813567ffffffffffffffff8111156110e3575f80fd5b6020830191508360208260051b85010111156110fd575f80fd5b9250929050565b5f805f805f60608688031215611118575f80fd5b61112186610fe7565b9450602086013567ffffffffffffffff8082111561113d575f80fd5b61114989838a016110bc565b90965094506040880135915080821115611161575f80fd5b5061116e888289016110bc565b969995985093965092949392505050565b5f8060408385031215611190575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126111c2575f80fd5b813567ffffffffffffffff808211156111dd576111dd61119f565b604051601f8301601f19908116603f011681019082821181831017156112055761120561119f565b8160405283815286602085880101111561121d575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f806040838503121561124d575f80fd5b823567ffffffffffffffff80821115611264575f80fd5b611270868387016111b3565b93506020850135915080821115611285575f80fd5b50611292858286016111b3565b9150509250929050565b5f80604083850312156112ad575f80fd5b6112b683610fe7565b91506112c460208401610fe7565b90509250929050565b600181811c908216806112e157607f821691505b6020821081036112ff57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561051d5761051d611305565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161138657611386611305565b5060010190565b601f821115610963575f81815260208120601f850160051c810160208610156113b35750805b601f850160051c820191505b81811015610762578281556001016113bf565b815167ffffffffffffffff8111156113ec576113ec61119f565b611400816113fa84546112cd565b8461138d565b602080601f831160018114611433575f841561141c5750858301515b5f19600386901b1c1916600185901b178555610762565b5f85815260208120601f198616915b8281101561146157888601518255948401946001909101908401611442565b508582101561147e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761051d5761051d611305565b5f826114bf57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561051d5761051d61130556fea26469706673582212201daba00a0b41b7fd701da97ae067c01cb19e3dbf22b969db3fc2a053dc07b6d264736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101d1575f3560e01c806370a08231116100fe578063a9059cbb1161009e578063d5abeb011161006e578063d5abeb01146103f8578063d5aed6bf1461041f578063dd62ed3e14610432578063f2fde38b1461046a575f80fd5b8063a9059cbb146103ac578063b22c95e7146103bf578063b715af76146103d2578063bf0058d0146103e5575f80fd5b80638da5cb5b116100d95780638da5cb5b1461038157806395d89b4114610391578063985bdfd114610304578063a457c2d714610399575f80fd5b806370a082311461033e578063715018a614610366578063721082971461036e575f80fd5b80632b14ca561161017457806349bd5a5e1161014457806349bd5a5e146102ec5780634c255c97146103045780634e148e191461032057806358a1aaae14610335575f80fd5b80632b14ca561461027c578063313ce567146102a357806339509351146102b257806347062402146102c5575f80fd5b806318160ddd116101af57806318160ddd1461022357806321326f091461023557806323b872dd1461023e57806327c8f83514610251575f80fd5b806306fdde03146101d5578063095ea7b3146101f3578063158ef93e14610216575b5f80fd5b6101dd61047d565b6040516101ea9190610f9c565b60405180910390f35b610206610201366004611002565b61050d565b60405190151581526020016101ea565b6006546102069060ff1681565b6003545b6040519081526020016101ea565b61022760095481565b61020661024c36600461102a565b610523565b600754610264906001600160a01b031681565b6040516001600160a01b0390911681526020016101ea565b6102277f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101ea565b6102066102c0366004611002565b6105d0565b6102277f000000000000000000000000000000000000000000000000000000000000000081565b6006546102649061010090046001600160a01b031681565b61030d61271081565b60405161ffff90911681526020016101ea565b61033361032e366004611063565b61060b565b005b61022760085481565b61022761034c36600461109c565b6001600160a01b03165f9081526001602052604090205490565b61033361065e565b61033361037c366004611104565b610692565b5f546001600160a01b0316610264565b6101dd61076a565b6102066103a7366004611002565b610779565b6102066103ba366004611002565b610811565b6103336103cd366004611104565b61081d565b6103336103e036600461117f565b6108ed565b6103336103f336600461123c565b610921565b6102277f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081565b61033361042d36600461109c565b610968565b61022761044036600461129c565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61033361047836600461109c565b6109b9565b60606004805461048c906112cd565b80601f01602080910402602001604051908101604052809291908181526020018280546104b8906112cd565b80156105035780601f106104da57610100808354040283529160200191610503565b820191905f5260205f20905b8154815290600101906020018083116104e657829003601f168201915b5050505050905090565b5f610519338484610a53565b5060015b92915050565b5f61052f848484610b76565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156105b85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105c58533858403610a53565b506001949350505050565b335f8181526002602090815260408083206001600160a01b03871684529091528120549091610519918590610606908690611319565b610a53565b5f546001600160a01b031633146106345760405162461bcd60e51b81526004016105af9061132c565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b5f546001600160a01b031633146106875760405162461bcd60e51b81526004016105af9061132c565b6106905f610d81565b565b5f546001600160a01b031633146106bb5760405162461bcd60e51b81526004016105af9061132c565b5f5b83811015610762578484828181106106d7576106d7611361565b90506020020160208101906106ec919061109c565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061073257610732611361565b9050602002013560405161074891815260200190565b60405180910390a38061075a81611375565b9150506106bd565b505050505050565b60606005805461048c906112cd565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156107fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105af565b6108073385858403610a53565b5060019392505050565b5f610519338484610b76565b5f546001600160a01b031633146108465760405162461bcd60e51b81526004016105af9061132c565b5f5b838110156107625784848281811061086257610862611361565b9050602002016020810190610877919061109c565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108bd576108bd611361565b905060200201356040516108d391815260200190565b60405180910390a3806108e581611375565b915050610848565b5f546001600160a01b031633146109165760405162461bcd60e51b81526004016105af9061132c565b600891909155600955565b5f546001600160a01b0316331461094a5760405162461bcd60e51b81526004016105af9061132c565b600461095683826113d2565b50600561096382826113d2565b505050565b5f546001600160a01b031633146109915760405162461bcd60e51b81526004016105af9061132c565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b031633146109e25760405162461bcd60e51b81526004016105af9061132c565b6001600160a01b038116610a475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105af565b610a5081610d81565b50565b6001600160a01b038316610ab55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105af565b6001600160a01b038216610b165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105af565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610bcd5760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e210000000060448201526064016105af565b60065461010090046001600160a01b0316158015610bf2575060065460ff1615156001145b15610c6a575f546001600160a01b0384811691161480610c1e57505f546001600160a01b038381169116145b610c6a5760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f74207374617274656460448201526064016105af565b600654819061010090046001600160a01b031615801590610c9857505f546001600160a01b03858116911614155b8015610cb157505f546001600160a01b03848116911614155b15610d70576006545f906001600160a01b03610100909104811690861603610cdc5750600854610d27565b6006546001600160a01b03610100909104811690851603610d27576001600160a01b0385165f908152600a602052604090205460ff161515600103610d2257505f610d27565b506009545b8015610d6e575f612710610d3b838661148e565b610d4591906114a5565b9050610d5181856114c4565b600754909350610d6c9087906001600160a01b031683610dd0565b505b505b610d7b848483610dd0565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610e345760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105af565b6001600160a01b038216610e965760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105af565b6001600160a01b0383165f9081526001602052604090205481811015610f0d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105af565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610f43908490611319565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8f91815260200190565b60405180910390a3610d7b565b5f6020808352835180828501525f5b81811015610fc757858101830151858201604001528201610fab565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ffd575f80fd5b919050565b5f8060408385031215611013575f80fd5b61101c83610fe7565b946020939093013593505050565b5f805f6060848603121561103c575f80fd5b61104584610fe7565b925061105360208501610fe7565b9150604084013590509250925092565b5f8060408385031215611074575f80fd5b61107d83610fe7565b915060208301358015158114611091575f80fd5b809150509250929050565b5f602082840312156110ac575f80fd5b6110b582610fe7565b9392505050565b5f8083601f8401126110cc575f80fd5b50813567ffffffffffffffff8111156110e3575f80fd5b6020830191508360208260051b85010111156110fd575f80fd5b9250929050565b5f805f805f60608688031215611118575f80fd5b61112186610fe7565b9450602086013567ffffffffffffffff8082111561113d575f80fd5b61114989838a016110bc565b90965094506040880135915080821115611161575f80fd5b5061116e888289016110bc565b969995985093965092949392505050565b5f8060408385031215611190575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126111c2575f80fd5b813567ffffffffffffffff808211156111dd576111dd61119f565b604051601f8301601f19908116603f011681019082821181831017156112055761120561119f565b8160405283815286602085880101111561121d575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f806040838503121561124d575f80fd5b823567ffffffffffffffff80821115611264575f80fd5b611270868387016111b3565b93506020850135915080821115611285575f80fd5b50611292858286016111b3565b9150509250929050565b5f80604083850312156112ad575f80fd5b6112b683610fe7565b91506112c460208401610fe7565b90509250929050565b600181811c908216806112e157607f821691505b6020821081036112ff57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561051d5761051d611305565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161138657611386611305565b5060010190565b601f821115610963575f81815260208120601f850160051c810160208610156113b35750805b601f850160051c820191505b81811015610762578281556001016113bf565b815167ffffffffffffffff8111156113ec576113ec61119f565b611400816113fa84546112cd565b8461138d565b602080601f831160018114611433575f841561141c5750858301515b5f19600386901b1c1916600185901b178555610762565b5f85815260208120601f198616915b8281101561146157888601518255948401946001909101908401611442565b508582101561147e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761051d5761051d611305565b5f826114bf57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561051d5761051d61130556fea26469706673582212201daba00a0b41b7fd701da97ae067c01cb19e3dbf22b969db3fc2a053dc07b6d264736f6c63430008140033

Deployed Bytecode Sourcemap

20874:4429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12133:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12133:194:0;1004:187:1;21103:31:0;;;;;;;;;11020:108;11108:12;;11020:108;;;1342:25:1;;;1330:2;1315:18;11020:108:0;1196:177:1;21392:31:0;;;;;;12809:529;;;;;;:::i;:::-;;:::i;21189:71::-;;;;;-1:-1:-1;;;;;21189:71:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;21189:71:0;1711:203:1;21311:36:0;;;;;10862:93;;;10945:2;2061:36:1;;2049:2;2034:18;10862:93:0;1919:184:1;13747:290:0;;;;;;:::i;:::-;;:::i;21269:35::-;;;;;21141:41;;;;;;;;-1:-1:-1;;;;;21141:41:0;;;21049:45;;21089:5;21049:45;;;;;2282:6:1;2270:19;;;2252:38;;2240:2;2225:18;21049:45:0;2108:188:1;23256:128:0;;;;;;:::i;:::-;;:::i;:::-;;21354:31;;;;;;11191:143;;;;;;:::i;:::-;-1:-1:-1;;;;;11308:18:0;11281:7;11308:18;;;:9;:18;;;;;;;11191:143;3194:103;;;:::i;23516:250::-;;;;;;:::i;:::-;;:::i;2507:87::-;2553:7;2580:6;-1:-1:-1;;;;;2580:6:0;2507:87;;10119:104;;;:::i;14540:475::-;;;;;;:::i;:::-;;:::i;11547:200::-;;;;;;:::i;:::-;;:::i;23774:251::-;;;;;;:::i;:::-;;:::i;23081:167::-;;;;;;:::i;:::-;;:::i;22928:145::-;;;;;;:::i;:::-;;:::i;20917:69::-;;;;;23392:116;;;;;;:::i;:::-;;:::i;11810:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11951:18:0;;;11924:7;11951:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11810:176;3452:238;;;;;;:::i;:::-;;:::i;9900:100::-;9954:13;9987:5;9980:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900:100;:::o;12133:194::-;12241:4;12258:39;1284:10;12281:7;12290:6;12258:8;:39::i;:::-;-1:-1:-1;12315:4:0;12133:194;;;;;:::o;12809:529::-;12949:4;12966:36;12976:6;12984:9;12995:6;12966:9;:36::i;:::-;-1:-1:-1;;;;;13042:19:0;;13015:24;13042:19;;;:11;:19;;;;;;;;1284:10;13042:33;;;;;;;;13108:26;;;;13086:116;;;;-1:-1:-1;;;13086:116:0;;6577:2:1;13086:116:0;;;6559:21:1;6616:2;6596:18;;;6589:30;6655:34;6635:18;;;6628:62;-1:-1:-1;;;6706:18:1;;;6699:38;6754:19;;13086:116:0;;;;;;;;;13238:57;13247:6;1284:10;13288:6;13269:16;:25;13238:8;:57::i;:::-;-1:-1:-1;13326:4:0;;12809:529;-1:-1:-1;;;;12809:529:0:o;13747:290::-;1284:10;13860:4;13949:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13949:34:0;;;;;;;;;;13860:4;;13877:130;;13927:7;;13949:47;;13986:10;;13949:47;:::i;:::-;13877:8;:130::i;23256:128::-;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23341:22:0;;;::::1;;::::0;;;:12:::1;:22;::::0;;;;:35;;-1:-1:-1;;23341:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23256:128::o;3194:103::-;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;3259:30:::1;3286:1;3259:18;:30::i;:::-;3194:103::o:0;23516:250::-;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;23644:9:::1;23639:120;23659:19:::0;;::::1;23639:120;;;23723:8;;23732:1;23723:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23705:42:0::1;23714:7;-1:-1:-1::0;;;;;23705:42:0::1;;23736:7;;23744:1;23736:10;;;;;;;:::i;:::-;;;;;;;23705:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23705:42:0::1;;;;;;;;23680:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23639:120;;;;23516:250:::0;;;;;:::o;10119:104::-;10175:13;10208:7;10201:14;;;;;:::i;14540:475::-;1284:10;14658:4;14702:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14702:34:0;;;;;;;;;;14769:35;;;;14747:122;;;;-1:-1:-1;;;14747:122:0;;7881:2:1;14747:122:0;;;7863:21:1;7920:2;7900:18;;;7893:30;7959:34;7939:18;;;7932:62;-1:-1:-1;;;8010:18:1;;;8003:35;8055:19;;14747:122:0;7679:401:1;14747:122:0;14905:67;1284:10;14928:7;14956:15;14937:16;:34;14905:8;:67::i;:::-;-1:-1:-1;15003:4:0;;14540:475;-1:-1:-1;;;14540:475:0:o;11547:200::-;11658:4;11675:42;1284:10;11699:9;11710:6;11675:9;:42::i;23774:251::-;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;23903:9:::1;23898:120;23918:19:::0;;::::1;23898:120;;;23982:8;;23991:1;23982:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23964:42:0::1;23973:7;-1:-1:-1::0;;;;;23964:42:0::1;;23995:7;;24003:1;23995:10;;;;;;;:::i;:::-;;;;;;;23964:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23964:42:0::1;;;;;;;;23939:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23898:120;;23081:167:::0;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;23173:12:::1;:28:::0;;;;23212:12:::1;:28:::0;23081:167::o;22928:145::-;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;23022:5:::1;:14;23030:6:::0;23022:5;:14:::1;:::i;:::-;-1:-1:-1::0;23047:7:0::1;:18;23057:8:::0;23047:7;:18:::1;:::i;:::-;;22928:145:::0;;:::o;23392:116::-;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;23470:13:::1;:30:::0;;-1:-1:-1;;;;;23470:30:0;;::::1;;;-1:-1:-1::0;;;;;;23470:30:0;;::::1;::::0;;;::::1;::::0;;23392:116::o;3452:238::-;2741:6;;-1:-1:-1;;;;;2741:6:0;1284:10;2741:22;2719:104;;;;-1:-1:-1;;;2719:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3555:22:0;::::1;3533:110;;;::::0;-1:-1:-1;;;3533:110:0;;10491:2:1;3533:110:0::1;::::0;::::1;10473:21:1::0;10530:2;10510:18;;;10503:30;10569:34;10549:18;;;10542:62;-1:-1:-1;;;10620:18:1;;;10613:36;10666:19;;3533:110:0::1;10289:402:1::0;3533:110:0::1;3654:28;3673:8;3654:18;:28::i;:::-;3452:238:::0;:::o;18323:380::-;-1:-1:-1;;;;;18459:19:0;;18451:68;;;;-1:-1:-1;;;18451:68:0;;10898:2:1;18451:68:0;;;10880:21:1;10937:2;10917:18;;;10910:30;10976:34;10956:18;;;10949:62;-1:-1:-1;;;11027:18:1;;;11020:34;11071:19;;18451:68:0;10696:400:1;18451:68:0;-1:-1:-1;;;;;18538:21:0;;18530:68;;;;-1:-1:-1;;;18530:68:0;;11303:2:1;18530:68:0;;;11285:21:1;11342:2;11322:18;;;11315:30;11381:34;11361:18;;;11354:62;-1:-1:-1;;;11432:18:1;;;11425:32;11474:19;;18530:68:0;11101:398:1;18530:68:0;-1:-1:-1;;;;;18611:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18663:32;;1342:25:1;;;18663:32:0;;1315:18:1;18663:32:0;;;;;;;18323:380;;;:::o;24033:1267::-;24186:11;;;;:19;;:11;:19;24164:97;;;;-1:-1:-1;;;24164:97:0;;11706:2:1;24164:97:0;;;11688:21:1;11745:2;11725:18;;;11718:30;11784;11764:18;;;11757:58;11832:18;;24164:97:0;11504:352:1;24164:97:0;24278:13;;;;;-1:-1:-1;;;;;24278:13:0;:27;:50;;;;-1:-1:-1;24309:11:0;;;;:19;;:11;:19;24278:50;24274:209;;;2553:7;2580:6;-1:-1:-1;;;;;24371:15:0;;;2580:6;;24371:15;;:32;;-1:-1:-1;2553:7:0;2580:6;-1:-1:-1;;;;;24390:13:0;;;2580:6;;24390:13;24371:32;24345:126;;;;-1:-1:-1;;;24345:126:0;;12063:2:1;24345:126:0;;;12045:21:1;;;12082:18;;;12075:30;12141:34;12121:18;;;12114:62;12193:18;;24345:126:0;11861:356:1;24345:126:0;24542:13;;24521:6;;24542:13;;;-1:-1:-1;;;;;24542:13:0;:27;;;;:46;;-1:-1:-1;2553:7:0;2580:6;-1:-1:-1;;;;;24573:15:0;;;2580:6;;24573:15;;24542:46;:63;;;;-1:-1:-1;2553:7:0;2580:6;-1:-1:-1;;;;;24592:13:0;;;2580:6;;24592:13;;24542:63;24538:700;;;24665:13;;24622:12;;-1:-1:-1;;;;;24665:13:0;;;;;;24657:21;;;;24653:327;;-1:-1:-1;24706:12:0;;24653:327;;;24763:13;;-1:-1:-1;;;;;24763:13:0;;;;;;24757:19;;;;24753:227;;-1:-1:-1;;;;;24801:18:0;;;;;;:12;:18;;;;;;;;:26;;:18;:26;24797:168;;-1:-1:-1;24859:1:0;24797:168;;;-1:-1:-1;24933:12:0;;24797:168;24998:8;;24994:233;;25027:22;21089:5;25052:13;25061:4;25052:6;:13;:::i;:::-;:30;;;;:::i;:::-;25027:55;-1:-1:-1;25119:23:0;25027:55;25119:6;:23;:::i;:::-;25183:11;;25101:41;;-1:-1:-1;25161:50:0;;25177:4;;-1:-1:-1;;;;;25183:11:0;25196:14;25161:15;:50::i;:::-;25008:219;24994:233;24607:631;24538:700;25250:42;25266:4;25272:2;25276:15;25250;:42::i;:::-;24153:1147;24033:1267;;;:::o;3850:191::-;3924:16;3943:6;;-1:-1:-1;;;;;3960:17:0;;;-1:-1:-1;;;;;;3960:17:0;;;;;;3993:40;;3943:6;;;;;;;3993:40;;3924:16;3993:40;3913:128;3850:191;:::o;15505:770::-;-1:-1:-1;;;;;15645:20:0;;15637:70;;;;-1:-1:-1;;;15637:70:0;;12952:2:1;15637:70:0;;;12934:21:1;12991:2;12971:18;;;12964:30;13030:34;13010:18;;;13003:62;-1:-1:-1;;;13081:18:1;;;13074:35;13126:19;;15637:70:0;12750:401:1;15637:70:0;-1:-1:-1;;;;;15726:23:0;;15718:71;;;;-1:-1:-1;;;15718:71:0;;13358:2:1;15718:71:0;;;13340:21:1;13397:2;13377:18;;;13370:30;13436:34;13416:18;;;13409:62;-1:-1:-1;;;13487:18:1;;;13480:33;13530:19;;15718:71:0;13156:399:1;15718:71:0;-1:-1:-1;;;;;15886:17:0;;15862:21;15886:17;;;:9;:17;;;;;;15936:23;;;;15914:111;;;;-1:-1:-1;;;15914:111:0;;13762:2:1;15914:111:0;;;13744:21:1;13801:2;13781:18;;;13774:30;13840:34;13820:18;;;13813:62;-1:-1:-1;;;13891:18:1;;;13884:36;13937:19;;15914:111:0;13560:402:1;15914:111:0;-1:-1:-1;;;;;16061:17:0;;;;;;;:9;:17;;;;;;16081:22;;;16061:42;;16125:20;;;;;;;;:30;;16097:6;;16061:17;16125:30;;16097:6;;16125:30;:::i;:::-;;;;;;;;16190:9;-1:-1:-1;;;;;16173:35:0;16182:6;-1:-1:-1;;;;;16173:35:0;;16201:6;16173:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16173:35:0;;;;;;;;16221:46;22928:145;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;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;2301:347::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:52;;;2443:1;2440;2433:12;2395:52;2466:29;2485:9;2466:29;:::i;:::-;2456:39;;2545:2;2534:9;2530:18;2517:32;2592:5;2585:13;2578:21;2571:5;2568:32;2558:60;;2614:1;2611;2604:12;2558:60;2637:5;2627:15;;;2301:347;;;;;:::o;2653:186::-;2712:6;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2804:29;2823:9;2804:29;:::i;:::-;2794:39;2653:186;-1:-1:-1;;;2653:186:1:o;2844:367::-;2907:8;2917:6;2971:3;2964:4;2956:6;2952:17;2948:27;2938:55;;2989:1;2986;2979:12;2938:55;-1:-1:-1;3012:20:1;;3055:18;3044:30;;3041:50;;;3087:1;3084;3077:12;3041:50;3124:4;3116:6;3112:17;3100:29;;3184:3;3177:4;3167:6;3164:1;3160:14;3152:6;3148:27;3144:38;3141:47;3138:67;;;3201:1;3198;3191:12;3138:67;2844:367;;;;;:::o;3216:847::-;3347:6;3355;3363;3371;3379;3432:2;3420:9;3411:7;3407:23;3403:32;3400:52;;;3448:1;3445;3438:12;3400:52;3471:29;3490:9;3471:29;:::i;:::-;3461:39;;3551:2;3540:9;3536:18;3523:32;3574:18;3615:2;3607:6;3604:14;3601:34;;;3631:1;3628;3621:12;3601:34;3670:70;3732:7;3723:6;3712:9;3708:22;3670:70;:::i;:::-;3759:8;;-1:-1:-1;3644:96:1;-1:-1:-1;3847:2:1;3832:18;;3819:32;;-1:-1:-1;3863:16:1;;;3860:36;;;3892:1;3889;3882:12;3860:36;;3931:72;3995:7;3984:8;3973:9;3969:24;3931:72;:::i;:::-;3216:847;;;;-1:-1:-1;3216:847:1;;-1:-1:-1;4022:8:1;;3905:98;3216:847;-1:-1:-1;;;3216:847:1:o;4068:248::-;4136:6;4144;4197:2;4185:9;4176:7;4172:23;4168:32;4165:52;;;4213:1;4210;4203:12;4165:52;-1:-1:-1;;4236:23:1;;;4306:2;4291:18;;;4278:32;;-1:-1:-1;4068:248:1:o;4321:127::-;4382:10;4377:3;4373:20;4370:1;4363:31;4413:4;4410:1;4403:15;4437:4;4434:1;4427:15;4453:719;4496:5;4549:3;4542:4;4534:6;4530:17;4526:27;4516:55;;4567:1;4564;4557:12;4516:55;4603:6;4590:20;4629:18;4666:2;4662;4659:10;4656:36;;;4672:18;;:::i;:::-;4747:2;4741:9;4715:2;4801:13;;-1:-1:-1;;4797:22:1;;;4821:2;4793:31;4789:40;4777:53;;;4845:18;;;4865:22;;;4842:46;4839:72;;;4891:18;;:::i;:::-;4931:10;4927:2;4920:22;4966:2;4958:6;4951:18;5012:3;5005:4;5000:2;4992:6;4988:15;4984:26;4981:35;4978:55;;;5029:1;5026;5019:12;4978:55;5093:2;5086:4;5078:6;5074:17;5067:4;5059:6;5055:17;5042:54;5140:1;5133:4;5128:2;5120:6;5116:15;5112:26;5105:37;5160:6;5151:15;;;;;;4453:719;;;;:::o;5177:543::-;5265:6;5273;5326:2;5314:9;5305:7;5301:23;5297:32;5294:52;;;5342:1;5339;5332:12;5294:52;5382:9;5369:23;5411:18;5452:2;5444:6;5441:14;5438:34;;;5468:1;5465;5458:12;5438:34;5491:50;5533:7;5524:6;5513:9;5509:22;5491:50;:::i;:::-;5481:60;;5594:2;5583:9;5579:18;5566:32;5550:48;;5623:2;5613:8;5610:16;5607:36;;;5639:1;5636;5629:12;5607:36;;5662:52;5706:7;5695:8;5684:9;5680:24;5662:52;:::i;:::-;5652:62;;;5177:543;;;;;:::o;5725:260::-;5793:6;5801;5854:2;5842:9;5833:7;5829:23;5825:32;5822:52;;;5870:1;5867;5860:12;5822:52;5893:29;5912:9;5893:29;:::i;:::-;5883:39;;5941:38;5975:2;5964:9;5960:18;5941:38;:::i;:::-;5931:48;;5725:260;;;;;:::o;5990:380::-;6069:1;6065:12;;;;6112;;;6133:61;;6187:4;6179:6;6175:17;6165:27;;6133:61;6240:2;6232:6;6229:14;6209:18;6206:38;6203:161;;6286:10;6281:3;6277:20;6274:1;6267:31;6321:4;6318:1;6311:15;6349:4;6346:1;6339:15;6203:161;;5990:380;;;:::o;6784:127::-;6845:10;6840:3;6836:20;6833:1;6826:31;6876:4;6873:1;6866:15;6900:4;6897:1;6890:15;6916:125;6981:9;;;7002:10;;;6999:36;;;7015:18;;:::i;7046:356::-;7248:2;7230:21;;;7267:18;;;7260:30;7326:34;7321:2;7306:18;;7299:62;7393:2;7378:18;;7046:356::o;7407:127::-;7468:10;7463:3;7459:20;7456:1;7449:31;7499:4;7496:1;7489:15;7523:4;7520:1;7513:15;7539:135;7578:3;7599:17;;;7596:43;;7619:18;;:::i;:::-;-1:-1:-1;7666:1:1;7655:13;;7539:135::o;8211:545::-;8313:2;8308:3;8305:11;8302:448;;;8349:1;8374:5;8370:2;8363:17;8419:4;8415:2;8405:19;8489:2;8477:10;8473:19;8470:1;8466:27;8460:4;8456:38;8525:4;8513:10;8510:20;8507:47;;;-1:-1:-1;8548:4:1;8507:47;8603:2;8598:3;8594:12;8591:1;8587:20;8581:4;8577:31;8567:41;;8658:82;8676:2;8669:5;8666:13;8658:82;;;8721:17;;;8702:1;8691:13;8658:82;;8932:1352;9058:3;9052:10;9085:18;9077:6;9074:30;9071:56;;;9107:18;;:::i;:::-;9136:97;9226:6;9186:38;9218:4;9212:11;9186:38;:::i;:::-;9180:4;9136:97;:::i;:::-;9288:4;;9352:2;9341:14;;9369:1;9364:663;;;;10071:1;10088:6;10085:89;;;-1:-1:-1;10140:19:1;;;10134:26;10085:89;-1:-1:-1;;8889:1:1;8885:11;;;8881:24;8877:29;8867:40;8913:1;8909:11;;;8864:57;10187:81;;9334:944;;9364:663;8158:1;8151:14;;;8195:4;8182:18;;-1:-1:-1;;9400:20:1;;;9518:236;9532:7;9529:1;9526:14;9518:236;;;9621:19;;;9615:26;9600:42;;9713:27;;;;9681:1;9669:14;;;;9548:19;;9518:236;;;9522:3;9782:6;9773:7;9770:19;9767:201;;;9843:19;;;9837:26;-1:-1:-1;;9926:1:1;9922:14;;;9938:3;9918:24;9914:37;9910:42;9895:58;9880:74;;9767:201;-1:-1:-1;;;;;10014:1:1;9998:14;;;9994:22;9981:36;;-1:-1:-1;8932:1352:1:o;12222:168::-;12295:9;;;12326;;12343:15;;;12337:22;;12323:37;12313:71;;12364:18;;:::i;12395:217::-;12435:1;12461;12451:132;;12505:10;12500:3;12496:20;12493:1;12486:31;12540:4;12537:1;12530:15;12568:4;12565:1;12558:15;12451:132;-1:-1:-1;12597:9:1;;12395:217::o;12617:128::-;12684:9;;;12705:11;;;12702:37;;;12719:18;;:::i

Swarm Source

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