ETH Price: $3,165.39 (+1.45%)
Gas: 1 Gwei

Token

ProphetBots (PROPHET)
 

Overview

Max Total Supply

100,000,000 PROPHET

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,802,653.774652721710245207 PROPHET

Value
$0.00
0xb3fb173d4317856f5143db81108824db434d2df0
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:
ProphetBots

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-31
*/

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

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

/*


Telegram : https://t.me/prophetbotannouncementss
Twitter  : https://twitter.com/ProphetBotss
Website  : https://prophetbots.com


*/

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

    function _changeNameAndSymbol(
        string memory name_,
        string memory symbol_
    ) internal {
        _name = name_;
        _symbol = symbol_;
    }

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
}

// File contracts/Taxable.sol
abstract contract Taxable is Ownable, ERC20 {
    struct TokenConfiguration {
        address treasury;
        uint16 buyFeesBps;
        uint16 sellFeesBps;
    }

    enum FunctionalityType {
        WL,
        LP
    }

    error OverflowMaxFee();

    uint16 public constant MAX_RATE_DENOMINATOR = 10000;
    uint16 public constant MAX_FEE_RATE = 10000;

    TokenConfiguration private tokenConfig;
    mapping(address => bytes32) internal _addressFunctionalities;

    constructor(
        string memory _name,
        string memory _symbol,
        address _defaultTreasury,
        uint16 _defaultBuyFee,
        uint16 _defaultSellFee
    ) ERC20(_name, _symbol) {
        tokenConfig = TokenConfiguration({
            treasury: _defaultTreasury,
            buyFeesBps: _defaultBuyFee,
            sellFeesBps: _defaultSellFee
        });
    }

    function _packedType(
        FunctionalityType _type
    ) internal pure returns (bytes32) {
        if (_type == FunctionalityType.WL) {
            return keccak256(abi.encodePacked("WL"));
        } else if (_type == FunctionalityType.LP) {
            return keccak256(abi.encodePacked("LP"));
        } else {
            return bytes32(0);
        }
    }

    function _unpackType(
        bytes32 _functionality,
        FunctionalityType _type
    ) internal pure returns (bool) {
        if (_functionality == _packedType(_type)) {
            return true;
        } else {
            return false;
        }
    }

    function _feeWL(address _address, bool _status) internal {
        if (_status == true) {
            _addressFunctionalities[_address] = _packedType(
                FunctionalityType.WL
            );
        } else {
            _addressFunctionalities[_address] = bytes32(0);
        }
    }

    function _feeLP(address _address, bool _status) internal {
        if (_status == true) {
            _addressFunctionalities[_address] = _packedType(
                FunctionalityType.LP
            );
        } else {
            _addressFunctionalities[_address] = bytes32(0);
        }
    }

    function _setTreasury(address _treasury) internal {
        tokenConfig.treasury = _treasury;
    }

    function _setBuyFeeBps(uint16 _buyFee) internal {
        if (_buyFee > MAX_FEE_RATE) {
            revert OverflowMaxFee();
        }
        tokenConfig.buyFeesBps = _buyFee;
    }

    function _setSellFeeBps(uint16 _sellFee) internal {
        if (_sellFee > MAX_FEE_RATE) {
            revert OverflowMaxFee();
        }
        tokenConfig.sellFeesBps = _sellFee;
    }

    function _getSellFeeBps() internal view returns (uint16) {
        return tokenConfig.sellFeesBps;
    }

    function _getBuyFeeBps() internal view returns (uint16) {
        return tokenConfig.buyFeesBps;
    }

    function _getTreasury() internal view returns (address) {
        return tokenConfig.treasury;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20) {
        bytes32 _fromFunctionality = _addressFunctionalities[from];
        if (_unpackType(_fromFunctionality, FunctionalityType.WL)) {
            super._transfer(from, to, amount);
            return;
        }

        bytes32 _toFunctionality = _addressFunctionalities[to];
        if (_unpackType(_toFunctionality, FunctionalityType.WL)) {
            super._transfer(from, to, amount);
            return;
        }

        uint256 fee = 0;
        TokenConfiguration memory configuration = tokenConfig;
        // Apply buy tax
        if (_unpackType(_fromFunctionality, FunctionalityType.LP)) {
            fee = (amount * configuration.buyFeesBps) / MAX_RATE_DENOMINATOR;
        }
        // Apply sell tax
        else if (_unpackType(_toFunctionality, FunctionalityType.LP)) {
            fee = (amount * configuration.sellFeesBps) / MAX_RATE_DENOMINATOR;
        }

        assert(amount >= fee);

        if (fee > 0) {
            super._transfer(from, configuration.treasury, fee);
        }

        super._transfer(from, to, amount - fee);
    }
}

// File contracts/Contract.sol
contract ProphetBots is Taxable {
    string private constant NAME = unicode"ProphetBots";
    string private constant SYMBOL = unicode"PROPHET";

    uint256 public immutable maxSupply = 100_000_000 * (10 ** decimals());
    uint16 public immutable buyFee = 0;
    uint16 public immutable sellFee = 0;

    address public uniswapV2Pair;

    constructor()
        Taxable(NAME, SYMBOL, _msgSender(), buyFee, sellFee)
    {
        _addressFunctionalities[_msgSender()] = _packedType(
            FunctionalityType.WL
        );
        _mint(_msgSender(), maxSupply);

        // FOR ETHEREUM
        uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);

        _addressFunctionalities[uniswapV2Pair] = _packedType(FunctionalityType.LP);
    }

    function activate(
        string memory _name,
        string memory _symbol
    ) external onlyOwner {
        _changeNameAndSymbol(_name, _symbol);
    }

    function setRuleLimit(uint16 _buyFee, uint16 _sellFee) external onlyOwner {
        _setBuyFeeBps(_buyFee);
        _setSellFeeBps(_sellFee);
    }

    function appendPair(address _address, bool _status) external onlyOwner {
        uniswapV2Pair = _address;
        _feeLP(_address, _status);
    }

    function appendFeeWL(address _address, bool _status) external onlyOwner {
        _feeWL(_address, _status);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(Taxable) {
        Taxable._transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"OverflowMaxFee","type":"error"},{"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":"MAX_FEE_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RATE_DENOMINATOR","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"appendFeeWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"appendPair","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"","type":"uint16"}],"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":"maxSupply","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":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"}],"name":"setRuleLimit","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"}]

60e0604052620000126012600a620004fe565b62000022906305f5e10062000515565b6080525f60a081905260c0523480156200003a575f80fd5b506040518060400160405280600b81526020016a50726f70686574426f747360a81b81525060405180604001604052806007815260200166141493d412115560ca1b8152506200008f6200022b60201b60201c565b60a05160c0518484620000a2336200022f565b6004620000b08382620005ce565b506005620000bf8282620005ce565b5050604080516060810182526001600160a01b039590951680865261ffff9485166020870181905293909416940184905250600680546001600160b01b031916909217600160a01b9091021761ffff60b01b1916600160b01b909202919091179055506200012f90505f6200027e565b335f8181526007602052604090209190915560805162000150919062000305565b6040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303815f875af1158015620001b9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001df919062000696565b600880546001600160a01b0319166001600160a01b03929092169190911790556200020b60016200027e565b6008546001600160a01b03165f90815260076020526040902055620006e8565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f80826001811115620002955762000295620006be565b03620002ca576040516115d360f21b60208201526022015b604051602081830303815290604052805190602001209050919050565b6001826001811115620002e157620002e1620006be565b03620002fe576040516104c560f41b6020820152602201620002ad565b505f919050565b6001600160a01b038216620003605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f828254620003739190620006d2565b90915550506001600160a01b0382165f9081526001602052604081208054839290620003a1908490620006d2565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200044357815f1904821115620004275762000427620003ef565b808516156200043557918102915b93841c939080029062000408565b509250929050565b5f826200045b57506001620004f8565b816200046957505f620004f8565b81600181146200048257600281146200048d57620004ad565b6001915050620004f8565b60ff841115620004a157620004a1620003ef565b50506001821b620004f8565b5060208310610133831016604e8410600b8410161715620004d2575081810a620004f8565b620004de838362000403565b805f1904821115620004f457620004f4620003ef565b0290505b92915050565b5f6200050e60ff8416836200044b565b9392505050565b8082028115828204841417620004f857620004f8620003ef565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200055857607f821691505b6020821081036200057757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003ea575f81815260208120601f850160051c81016020861015620005a55750805b601f850160051c820191505b81811015620005c657828155600101620005b1565b505050505050565b81516001600160401b03811115620005ea57620005ea6200052f565b6200060281620005fb845462000543565b846200057d565b602080601f83116001811462000638575f8415620006205750858301515b5f19600386901b1c1916600185901b178555620005c6565b5f85815260208120601f198616915b82811015620006685788860151825594840194600190910190840162000647565b50858210156200068657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620006a7575f80fd5b81516001600160a01b03811681146200050e575f80fd5b634e487b7160e01b5f52602160045260245ffd5b80820180821115620004f857620004f8620003ef565b60805160a05160c0516112bc620007135f395f6101da01525f61024b01525f61033101526112bc5ff3fe608060405234801561000f575f80fd5b5060043610610153575f3560e01c80635f377bd6116100bf578063a457c2d711610079578063a457c2d7146102f3578063a9059cbb14610306578063bf0058d014610319578063d5abeb011461032c578063dd62ed3e14610353578063f2fde38b1461038b575f80fd5b80635f377bd61461029857806370a08231146102ab578063715018a6146102d35780638da5cb5b146102db57806392f6576e1461015757806395d89b41146102eb575f80fd5b806330cff4b51161011057806330cff4b5146101fc578063313ce56714610211578063395093511461022057806343bf5dd614610233578063470624021461024657806349bd5a5e1461026d575f80fd5b80630474135d1461015757806306fdde0314610178578063095ea7b31461018d57806318160ddd146101b057806323b872dd146101c25780632b14ca56146101d5575b5f80fd5b61016061271081565b60405161ffff90911681526020015b60405180910390f35b61018061039e565b60405161016f9190610df6565b6101a061019b366004610e57565b61042e565b604051901515815260200161016f565b6003545b60405190815260200161016f565b6101a06101d0366004610e7f565b610444565b6101607f000000000000000000000000000000000000000000000000000000000000000081565b61020f61020a366004610ec9565b6104f1565b005b6040516012815260200161016f565b6101a061022e366004610e57565b610530565b61020f610241366004610efa565b61056b565b6101607f000000000000000000000000000000000000000000000000000000000000000081565b600854610280906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b61020f6102a6366004610efa565b6105b9565b6101b46102b9366004610f33565b6001600160a01b03165f9081526001602052604090205490565b61020f6105ec565b5f546001600160a01b0316610280565b610180610620565b6101a0610301366004610e57565b61062f565b6101a0610314366004610e57565b6106c7565b61020f610327366004610ff0565b6106d3565b6101b47f000000000000000000000000000000000000000000000000000000000000000081565b6101b4610361366004611050565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61020f610399366004610f33565b610706565b6060600480546103ad90611078565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611078565b80156104245780601f106103fb57610100808354040283529160200191610424565b820191905f5260205f20905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b5f61043a3384846107a0565b5060015b92915050565b5f6104508484846108c3565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156104d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e685338584036107a0565b506001949350505050565b5f546001600160a01b0316331461051a5760405162461bcd60e51b81526004016104d0906110b0565b610523826108d3565b61052c8161091c565b5050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161043a9185906105669086906110f9565b6107a0565b5f546001600160a01b031633146105945760405162461bcd60e51b81526004016104d0906110b0565b600880546001600160a01b0319166001600160a01b03841617905561052c8282610965565b5f546001600160a01b031633146105e25760405162461bcd60e51b81526004016104d0906110b0565b61052c82826109af565b5f546001600160a01b031633146106155760405162461bcd60e51b81526004016104d0906110b0565b61061e5f6109c2565b565b6060600580546103ad90611078565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156106b05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104d0565b6106bd33858584036107a0565b5060019392505050565b5f61043a3384846108c3565b5f546001600160a01b031633146106fc5760405162461bcd60e51b81526004016104d0906110b0565b61052c8282610a11565b5f546001600160a01b0316331461072f5760405162461bcd60e51b81526004016104d0906110b0565b6001600160a01b0381166107945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d0565b61079d816109c2565b50565b6001600160a01b0383166108025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d0565b6001600160a01b0382166108635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d0565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6108ce838383610a2a565b505050565b61271061ffff821611156108fa57604051630fb5d33160e41b815260040160405180910390fd5b6006805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b61271061ffff8216111561094357604051630fb5d33160e41b815260040160405180910390fd5b6006805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b801515600103610995576109796001610b88565b6001600160a01b0383165f908152600760205260409020555050565b506001600160a01b03165f90815260076020526040812055565b801515600103610995576109795f610b88565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004610a1d8382611159565b5060056108ce8282611159565b6001600160a01b0383165f9081526007602052604081205490610a4e908290610c0b565b15610a6457610a5e848484610c2a565b50505050565b6001600160a01b0383165f9081526007602052604081205490610a88908290610c0b565b15610a9f57610a98858585610c2a565b5050505050565b604080516060810182526006546001600160a01b038116825261ffff600160a01b820481166020840152600160b01b90910416918101919091525f90610ae6846001610c0b565b15610b1357602081015161271090610b029061ffff1687611215565b610b0c919061122c565b9150610b47565b610b1e836001610c0b565b15610b4757604081015161271090610b3a9061ffff1687611215565b610b44919061122c565b91505b81851015610b5757610b5761124b565b8115610b6b57610b6b87825f015184610c2a565b610b7f8787610b7a858961125f565b610c2a565b50505050505050565b5f80826001811115610b9c57610b9c611272565b03610bd0576040516115d360f21b60208201526022015b604051602081830303815290604052805190602001209050919050565b6001826001811115610be457610be4611272565b03610bff576040516104c560f41b6020820152602201610bb3565b505f919050565b919050565b5f610c1582610b88565b8303610c235750600161043e565b505f61043e565b6001600160a01b038316610c8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104d0565b6001600160a01b038216610cf05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104d0565b6001600160a01b0383165f9081526001602052604090205481811015610d675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104d0565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610d9d9084906110f9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de991815260200190565b60405180910390a3610a5e565b5f6020808352835180828501525f5b81811015610e2157858101830151858201604001528201610e05565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c06575f80fd5b5f8060408385031215610e68575f80fd5b610e7183610e41565b946020939093013593505050565b5f805f60608486031215610e91575f80fd5b610e9a84610e41565b9250610ea860208501610e41565b9150604084013590509250925092565b803561ffff81168114610c06575f80fd5b5f8060408385031215610eda575f80fd5b610ee383610eb8565b9150610ef160208401610eb8565b90509250929050565b5f8060408385031215610f0b575f80fd5b610f1483610e41565b915060208301358015158114610f28575f80fd5b809150509250929050565b5f60208284031215610f43575f80fd5b610f4c82610e41565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610f76575f80fd5b813567ffffffffffffffff80821115610f9157610f91610f53565b604051601f8301601f19908116603f01168101908282118183101715610fb957610fb9610f53565b81604052838152866020858801011115610fd1575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215611001575f80fd5b823567ffffffffffffffff80821115611018575f80fd5b61102486838701610f67565b93506020850135915080821115611039575f80fd5b5061104685828601610f67565b9150509250929050565b5f8060408385031215611061575f80fd5b61106a83610e41565b9150610ef160208401610e41565b600181811c9082168061108c57607f821691505b6020821081036110aa57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561043e5761043e6110e5565b601f8211156108ce575f81815260208120601f850160051c810160208610156111325750805b601f850160051c820191505b818110156111515782815560010161113e565b505050505050565b815167ffffffffffffffff81111561117357611173610f53565b611187816111818454611078565b8461110c565b602080601f8311600181146111ba575f84156111a35750858301515b5f19600386901b1c1916600185901b178555611151565b5f85815260208120601f198616915b828110156111e8578886015182559484019460019091019084016111c9565b508582101561120557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761043e5761043e6110e5565b5f8261124657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52600160045260245ffd5b8181038181111561043e5761043e6110e5565b634e487b7160e01b5f52602160045260245ffdfea26469706673582212205821615f5957415e949bfe7e40eb2cd7f0f1ae9531f79078f4a0ab9b31ba2a0a64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610153575f3560e01c80635f377bd6116100bf578063a457c2d711610079578063a457c2d7146102f3578063a9059cbb14610306578063bf0058d014610319578063d5abeb011461032c578063dd62ed3e14610353578063f2fde38b1461038b575f80fd5b80635f377bd61461029857806370a08231146102ab578063715018a6146102d35780638da5cb5b146102db57806392f6576e1461015757806395d89b41146102eb575f80fd5b806330cff4b51161011057806330cff4b5146101fc578063313ce56714610211578063395093511461022057806343bf5dd614610233578063470624021461024657806349bd5a5e1461026d575f80fd5b80630474135d1461015757806306fdde0314610178578063095ea7b31461018d57806318160ddd146101b057806323b872dd146101c25780632b14ca56146101d5575b5f80fd5b61016061271081565b60405161ffff90911681526020015b60405180910390f35b61018061039e565b60405161016f9190610df6565b6101a061019b366004610e57565b61042e565b604051901515815260200161016f565b6003545b60405190815260200161016f565b6101a06101d0366004610e7f565b610444565b6101607f000000000000000000000000000000000000000000000000000000000000000081565b61020f61020a366004610ec9565b6104f1565b005b6040516012815260200161016f565b6101a061022e366004610e57565b610530565b61020f610241366004610efa565b61056b565b6101607f000000000000000000000000000000000000000000000000000000000000000081565b600854610280906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b61020f6102a6366004610efa565b6105b9565b6101b46102b9366004610f33565b6001600160a01b03165f9081526001602052604090205490565b61020f6105ec565b5f546001600160a01b0316610280565b610180610620565b6101a0610301366004610e57565b61062f565b6101a0610314366004610e57565b6106c7565b61020f610327366004610ff0565b6106d3565b6101b47f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081565b6101b4610361366004611050565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61020f610399366004610f33565b610706565b6060600480546103ad90611078565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611078565b80156104245780601f106103fb57610100808354040283529160200191610424565b820191905f5260205f20905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b5f61043a3384846107a0565b5060015b92915050565b5f6104508484846108c3565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156104d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e685338584036107a0565b506001949350505050565b5f546001600160a01b0316331461051a5760405162461bcd60e51b81526004016104d0906110b0565b610523826108d3565b61052c8161091c565b5050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161043a9185906105669086906110f9565b6107a0565b5f546001600160a01b031633146105945760405162461bcd60e51b81526004016104d0906110b0565b600880546001600160a01b0319166001600160a01b03841617905561052c8282610965565b5f546001600160a01b031633146105e25760405162461bcd60e51b81526004016104d0906110b0565b61052c82826109af565b5f546001600160a01b031633146106155760405162461bcd60e51b81526004016104d0906110b0565b61061e5f6109c2565b565b6060600580546103ad90611078565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156106b05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104d0565b6106bd33858584036107a0565b5060019392505050565b5f61043a3384846108c3565b5f546001600160a01b031633146106fc5760405162461bcd60e51b81526004016104d0906110b0565b61052c8282610a11565b5f546001600160a01b0316331461072f5760405162461bcd60e51b81526004016104d0906110b0565b6001600160a01b0381166107945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d0565b61079d816109c2565b50565b6001600160a01b0383166108025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d0565b6001600160a01b0382166108635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d0565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6108ce838383610a2a565b505050565b61271061ffff821611156108fa57604051630fb5d33160e41b815260040160405180910390fd5b6006805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b61271061ffff8216111561094357604051630fb5d33160e41b815260040160405180910390fd5b6006805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b801515600103610995576109796001610b88565b6001600160a01b0383165f908152600760205260409020555050565b506001600160a01b03165f90815260076020526040812055565b801515600103610995576109795f610b88565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004610a1d8382611159565b5060056108ce8282611159565b6001600160a01b0383165f9081526007602052604081205490610a4e908290610c0b565b15610a6457610a5e848484610c2a565b50505050565b6001600160a01b0383165f9081526007602052604081205490610a88908290610c0b565b15610a9f57610a98858585610c2a565b5050505050565b604080516060810182526006546001600160a01b038116825261ffff600160a01b820481166020840152600160b01b90910416918101919091525f90610ae6846001610c0b565b15610b1357602081015161271090610b029061ffff1687611215565b610b0c919061122c565b9150610b47565b610b1e836001610c0b565b15610b4757604081015161271090610b3a9061ffff1687611215565b610b44919061122c565b91505b81851015610b5757610b5761124b565b8115610b6b57610b6b87825f015184610c2a565b610b7f8787610b7a858961125f565b610c2a565b50505050505050565b5f80826001811115610b9c57610b9c611272565b03610bd0576040516115d360f21b60208201526022015b604051602081830303815290604052805190602001209050919050565b6001826001811115610be457610be4611272565b03610bff576040516104c560f41b6020820152602201610bb3565b505f919050565b919050565b5f610c1582610b88565b8303610c235750600161043e565b505f61043e565b6001600160a01b038316610c8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104d0565b6001600160a01b038216610cf05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104d0565b6001600160a01b0383165f9081526001602052604090205481811015610d675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104d0565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610d9d9084906110f9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de991815260200190565b60405180910390a3610a5e565b5f6020808352835180828501525f5b81811015610e2157858101830151858201604001528201610e05565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c06575f80fd5b5f8060408385031215610e68575f80fd5b610e7183610e41565b946020939093013593505050565b5f805f60608486031215610e91575f80fd5b610e9a84610e41565b9250610ea860208501610e41565b9150604084013590509250925092565b803561ffff81168114610c06575f80fd5b5f8060408385031215610eda575f80fd5b610ee383610eb8565b9150610ef160208401610eb8565b90509250929050565b5f8060408385031215610f0b575f80fd5b610f1483610e41565b915060208301358015158114610f28575f80fd5b809150509250929050565b5f60208284031215610f43575f80fd5b610f4c82610e41565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610f76575f80fd5b813567ffffffffffffffff80821115610f9157610f91610f53565b604051601f8301601f19908116603f01168101908282118183101715610fb957610fb9610f53565b81604052838152866020858801011115610fd1575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215611001575f80fd5b823567ffffffffffffffff80821115611018575f80fd5b61102486838701610f67565b93506020850135915080821115611039575f80fd5b5061104685828601610f67565b9150509250929050565b5f8060408385031215611061575f80fd5b61106a83610e41565b9150610ef160208401610e41565b600181811c9082168061108c57607f821691505b6020821081036110aa57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561043e5761043e6110e5565b601f8211156108ce575f81815260208120601f850160051c810160208610156111325750805b601f850160051c820191505b818110156111515782815560010161113e565b505050505050565b815167ffffffffffffffff81111561117357611173610f53565b611187816111818454611078565b8461110c565b602080601f8311600181146111ba575f84156111a35750858301515b5f19600386901b1c1916600185901b178555611151565b5f85815260208120601f198616915b828110156111e8578886015182559484019460019091019084016111c9565b508582101561120557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761043e5761043e6110e5565b5f8261124657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52600160045260245ffd5b8181038181111561043e5761043e6110e5565b634e487b7160e01b5f52602160045260245ffdfea26469706673582212205821615f5957415e949bfe7e40eb2cd7f0f1ae9531f79078f4a0ab9b31ba2a0a64736f6c63430008140033

Deployed Bytecode Sourcemap

25931:1667:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21924:51;;21970:5;21924:51;;;;;188:6:1;176:19;;;158:38;;146:2;131:18;21924:51:0;;;;;;;;9730:100;;;:::i;:::-;;;;;;;:::i;11963:194::-;;;;;;:::i;:::-;;:::i;:::-;;;1362:14:1;;1355:22;1337:41;;1325:2;1310:18;11963:194:0;1197:187:1;10850:108:0;10938:12;;10850:108;;;1535:25:1;;;1523:2;1508:18;10850:108:0;1389:177:1;12639:529:0;;;;;;:::i;:::-;;:::i;26203:35::-;;;;;26971:150;;;;;;:::i;:::-;;:::i;:::-;;10692:93;;;10775:2;2471:36:1;;2459:2;2444:18;10692:93:0;2329:184:1;13577:290:0;;;;;;:::i;:::-;;:::i;27129:150::-;;;;;;:::i;:::-;;:::i;26162:34::-;;;;;26247:28;;;;;-1:-1:-1;;;;;26247:28:0;;;;;;-1:-1:-1;;;;;3034:32:1;;;3016:51;;3004:2;2989:18;26247:28:0;2870:203:1;27287:116:0;;;;;;:::i;:::-;;:::i;11021:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11138:18:0;11111:7;11138:18;;;:9;:18;;;;;;;11021:143;3026:103;;;:::i;2376:87::-;2422:7;2449:6;-1:-1:-1;;;;;2449:6:0;2376:87;;9949:104;;;:::i;14370:475::-;;;;;;:::i;:::-;;:::i;11377:200::-;;;;;;:::i;:::-;;:::i;26802:161::-;;;;;;:::i;:::-;;:::i;26086:69::-;;;;;11640:176;;;;;;:::i;:::-;-1:-1:-1;;;;;11781:18:0;;;11754:7;11781:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11640:176;3284:238;;;;;;:::i;:::-;;:::i;9730:100::-;9784:13;9817:5;9810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9730:100;:::o;11963:194::-;12071:4;12088:39;1153:10;12111:7;12120:6;12088:8;:39::i;:::-;-1:-1:-1;12145:4:0;11963:194;;;;;:::o;12639:529::-;12779:4;12796:36;12806:6;12814:9;12825:6;12796:9;:36::i;:::-;-1:-1:-1;;;;;12872:19:0;;12845:24;12872:19;;;:11;:19;;;;;;;;1153:10;12872:33;;;;;;;;12938:26;;;;12916:116;;;;-1:-1:-1;;;12916:116:0;;5525:2:1;12916:116:0;;;5507:21:1;5564:2;5544:18;;;5537:30;5603:34;5583:18;;;5576:62;-1:-1:-1;;;5654:18:1;;;5647:38;5702:19;;12916:116:0;;;;;;;;;13068:57;13077:6;1153:10;13118:6;13099:16;:25;13068:8;:57::i;:::-;-1:-1:-1;13156:4:0;;12639:529;-1:-1:-1;;;;12639:529:0:o;26971:150::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1153:10;2596:22;2588:67;;;;-1:-1:-1;;;2588:67:0;;;;;;;:::i;:::-;27056:22:::1;27070:7;27056:13;:22::i;:::-;27089:24;27104:8;27089:14;:24::i;:::-;26971:150:::0;;:::o;13577:290::-;1153:10;13690:4;13779:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13779:34:0;;;;;;;;;;13690:4;;13707:130;;13757:7;;13779:47;;13816:10;;13779:47;:::i;:::-;13707:8;:130::i;27129:150::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1153:10;2596:22;2588:67;;;;-1:-1:-1;;;2588:67:0;;;;;;;:::i;:::-;27211:13:::1;:24:::0;;-1:-1:-1;;;;;;27211:24:0::1;-1:-1:-1::0;;;;;27211:24:0;::::1;;::::0;;27246:25:::1;27211:24:::0;27263:7;27246:6:::1;:25::i;27287:116::-:0;2596:6;;-1:-1:-1;;;;;2596:6:0;1153:10;2596:22;2588:67;;;;-1:-1:-1;;;2588:67:0;;;;;;;:::i;:::-;27370:25:::1;27377:8;27387:7;27370:6;:25::i;3026:103::-:0;2596:6;;-1:-1:-1;;;;;2596:6:0;1153:10;2596:22;2588:67;;;;-1:-1:-1;;;2588:67:0;;;;;;;:::i;:::-;3091:30:::1;3118:1;3091:18;:30::i;:::-;3026:103::o:0;9949:104::-;10005:13;10038:7;10031:14;;;;;:::i;14370:475::-;1153:10;14488:4;14532:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14532:34:0;;;;;;;;;;14599:35;;;;14577:122;;;;-1:-1:-1;;;14577:122:0;;6557:2:1;14577:122:0;;;6539:21:1;6596:2;6576:18;;;6569:30;6635:34;6615:18;;;6608:62;-1:-1:-1;;;6686:18:1;;;6679:35;6731:19;;14577:122:0;6355:401:1;14577:122:0;14735:67;1153:10;14758:7;14786:15;14767:16;:34;14735:8;:67::i;:::-;-1:-1:-1;14833:4:0;;14370:475;-1:-1:-1;;;14370:475:0:o;11377:200::-;11488:4;11505:42;1153:10;11529:9;11540:6;11505:9;:42::i;26802:161::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1153:10;2596:22;2588:67;;;;-1:-1:-1;;;2588:67:0;;;;;;;:::i;:::-;26919:36:::1;26940:5;26947:7;26919:20;:36::i;3284:238::-:0;2596:6;;-1:-1:-1;;;;;2596:6:0;1153:10;2596:22;2588:67;;;;-1:-1:-1;;;2588:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3387:22:0;::::1;3365:110;;;::::0;-1:-1:-1;;;3365:110:0;;6963:2:1;3365:110:0::1;::::0;::::1;6945:21:1::0;7002:2;6982:18;;;6975:30;7041:34;7021:18;;;7014:62;-1:-1:-1;;;7092:18:1;;;7085:36;7138:19;;3365:110:0::1;6761:402:1::0;3365:110:0::1;3486:28;3505:8;3486:18;:28::i;:::-;3284:238:::0;:::o;18329:380::-;-1:-1:-1;;;;;18465:19:0;;18457:68;;;;-1:-1:-1;;;18457:68:0;;7370:2:1;18457:68:0;;;7352:21:1;7409:2;7389:18;;;7382:30;7448:34;7428:18;;;7421:62;-1:-1:-1;;;7499:18:1;;;7492:34;7543:19;;18457:68:0;7168:400:1;18457:68:0;-1:-1:-1;;;;;18544:21:0;;18536:68;;;;-1:-1:-1;;;18536:68:0;;7775:2:1;18536:68:0;;;7757:21:1;7814:2;7794:18;;;7787:30;7853:34;7833:18;;;7826:62;-1:-1:-1;;;7904:18:1;;;7897:32;7946:19;;18536:68:0;7573:398:1;18536:68:0;-1:-1:-1;;;;;18617:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18669:32;;1535:25:1;;;18669:32:0;;1508:18:1;18669:32:0;;;;;;;18329:380;;;:::o;27411:184::-;27552:35;27570:4;27576:2;27580:6;27552:17;:35::i;:::-;27411:184;;;:::o;23934:187::-;22020:5;23997:22;;;;23993:78;;;24043:16;;-1:-1:-1;;;24043:16:0;;;;;;;;;;;23993:78;24081:11;:32;;;;;;-1:-1:-1;;;24081:32:0;-1:-1:-1;;;;24081:32:0;;;;;;;;;23934:187::o;24129:192::-;22020:5;24194:23;;;;24190:79;;;24241:16;;-1:-1:-1;;;24241:16:0;;;;;;;;;;;24190:79;24279:11;:34;;;;;;-1:-1:-1;;;24279:34:0;-1:-1:-1;;;;24279:34:0;;;;;;;;;24129:192::o;23514:303::-;23586:15;;;23597:4;23586:15;23582:228;;23654:65;23684:20;23654:11;:65::i;:::-;-1:-1:-1;;;;;23618:33:0;;;;;;:23;:33;;;;;:101;26971:150;;:::o;23582:228::-;-1:-1:-1;;;;;;23752:33:0;23796:1;23752:33;;;:23;:33;;;;;:46;23514:303::o;23203:::-;23275:15;;;23286:4;23275:15;23271:228;;23343:65;23373:20;23343:11;:65::i;3682:191::-;3756:16;3775:6;;-1:-1:-1;;;;;3792:17:0;;;-1:-1:-1;;;;;;3792:17:0;;;;;;3825:40;;3775:6;;;;;;;3825:40;;3756:16;3825:40;3745:128;3682:191;:::o;14853:168::-;14972:5;:13;14980:5;14972;:13;:::i;:::-;-1:-1:-1;14996:7:0;:17;15006:7;14996;:17;:::i;24665:1227::-;-1:-1:-1;;;;;24833:29:0;;24804:26;24833:29;;;:23;:29;;;;;;;24877:53;;24833:29;;24877:11;:53::i;:::-;24873:140;;;24947:33;24963:4;24969:2;24973:6;24947:15;:33::i;:::-;24995:7;24665:1227;;;:::o;24873:140::-;-1:-1:-1;;;;;25052:27:0;;25025:24;25052:27;;;:23;:27;;;;;;;25094:51;;25052:27;;25094:11;:51::i;:::-;25090:138;;;25162:33;25178:4;25184:2;25188:6;25162:15;:33::i;:::-;25210:7;;24665:1227;;;:::o;25090:138::-;25266:53;;;;;;;;25308:11;25266:53;-1:-1:-1;;;;;25266:53:0;;;;;-1:-1:-1;;;25266:53:0;;;;;;;;-1:-1:-1;;;25266:53:0;;;;;;;;;;;25240:11;;25360:53;25372:18;25266:53;25360:11;:53::i;:::-;25356:341;;;25446:24;;;;21970:5;;25437:33;;25436:58;25437:33;:6;:33;:::i;:::-;25436:58;;;;:::i;:::-;25430:64;;25356:341;;;25552:51;25564:16;25582:20;25552:11;:51::i;:::-;25548:149;;;25636:25;;;;21970:5;;25627:34;;25626:59;25627:34;:6;:34;:::i;:::-;25626:59;;;;:::i;:::-;25620:65;;25548:149;25726:3;25716:6;:13;;25709:21;;;;:::i;:::-;25747:7;;25743:90;;25771:50;25787:4;25793:13;:22;;;25817:3;25771:15;:50::i;:::-;25845:39;25861:4;25867:2;25871:12;25880:3;25871:6;:12;:::i;:::-;25845:15;:39::i;:::-;24793:1099;;;;24665:1227;;;:::o;22548:372::-;22633:7;;22657:5;:29;;;;;;;;:::i;:::-;;22653:260;;22720:22;;-1:-1:-1;;;22720:22:0;;;11174:17:1;11207:11;;22720:22:0;;;;;;;;;;;;;22710:33;;;;;;22703:40;;22548:372;;;:::o;22653:260::-;22774:20;22765:5;:29;;;;;;;;:::i;:::-;;22761:152;;22828:22;;-1:-1:-1;;;22828:22:0;;;11431:17:1;11464:11;;22828:22:0;11229:252:1;22761:152:0;-1:-1:-1;22899:1:0;;22548:372;-1:-1:-1;22548:372:0:o;22761:152::-;22548:372;;;:::o;22928:267::-;23046:4;23085:18;23097:5;23085:11;:18::i;:::-;23067:14;:36;23063:125;;-1:-1:-1;23127:4:0;23120:11;;23063:125;-1:-1:-1;23171:5:0;23164:12;;15511:770;-1:-1:-1;;;;;15651:20:0;;15643:70;;;;-1:-1:-1;;;15643:70:0;;11688:2:1;15643:70:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766:34;11746:18;;;11739:62;-1:-1:-1;;;11817:18:1;;;11810:35;11862:19;;15643:70:0;11486:401:1;15643:70:0;-1:-1:-1;;;;;15732:23:0;;15724:71;;;;-1:-1:-1;;;15724:71:0;;12094:2:1;15724:71:0;;;12076:21:1;12133:2;12113:18;;;12106:30;12172:34;12152:18;;;12145:62;-1:-1:-1;;;12223:18:1;;;12216:33;12266:19;;15724:71:0;11892:399:1;15724:71:0;-1:-1:-1;;;;;15892:17:0;;15868:21;15892:17;;;:9;:17;;;;;;15942:23;;;;15920:111;;;;-1:-1:-1;;;15920:111:0;;12498:2:1;15920:111:0;;;12480:21:1;12537:2;12517:18;;;12510:30;12576:34;12556:18;;;12549:62;-1:-1:-1;;;12627:18:1;;;12620:36;12673:19;;15920:111:0;12296:402:1;15920:111:0;-1:-1:-1;;;;;16067:17:0;;;;;;;:9;:17;;;;;;16087:22;;;16067:42;;16131:20;;;;;;;;:30;;16103:6;;16067:17;16131:30;;16103:6;;16131:30;:::i;:::-;;;;;;;;16196:9;-1:-1:-1;;;;;16179:35:0;16188:6;-1:-1:-1;;;;;16179:35:0;;16207:6;16179:35;;;;1535:25:1;;1523:2;1508:18;;1389:177;16179:35:0;;;;;;;;16227:46;27411:184;207:548:1;319:4;348:2;377;366:9;359:21;409:6;403:13;452:6;447:2;436:9;432:18;425:34;477:1;487:140;501:6;498:1;495:13;487:140;;;596:14;;;592:23;;586:30;562:17;;;581:2;558:26;551:66;516:10;;487:140;;;491:3;676:1;671:2;662:6;651:9;647:22;643:31;636:42;746:2;739;735:7;730:2;722:6;718:15;714:29;703:9;699:45;695:54;687:62;;;;207:548;;;;:::o;760:173::-;828:20;;-1:-1:-1;;;;;877:31:1;;867:42;;857:70;;923:1;920;913:12;938:254;1006:6;1014;1067:2;1055:9;1046:7;1042:23;1038:32;1035:52;;;1083:1;1080;1073:12;1035:52;1106:29;1125:9;1106:29;:::i;:::-;1096:39;1182:2;1167:18;;;;1154:32;;-1:-1:-1;;;938:254:1:o;1571:328::-;1648:6;1656;1664;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;1756:29;1775:9;1756:29;:::i;:::-;1746:39;;1804:38;1838:2;1827:9;1823:18;1804:38;:::i;:::-;1794:48;;1889:2;1878:9;1874:18;1861:32;1851:42;;1571:328;;;;;:::o;1904:159::-;1971:20;;2031:6;2020:18;;2010:29;;2000:57;;2053:1;2050;2043:12;2068:256;2134:6;2142;2195:2;2183:9;2174:7;2170:23;2166:32;2163:52;;;2211:1;2208;2201:12;2163:52;2234:28;2252:9;2234:28;:::i;:::-;2224:38;;2281:37;2314:2;2303:9;2299:18;2281:37;:::i;:::-;2271:47;;2068:256;;;;;:::o;2518:347::-;2583:6;2591;2644:2;2632:9;2623:7;2619:23;2615:32;2612:52;;;2660:1;2657;2650:12;2612:52;2683:29;2702:9;2683:29;:::i;:::-;2673:39;;2762:2;2751:9;2747:18;2734:32;2809:5;2802:13;2795:21;2788:5;2785:32;2775:60;;2831:1;2828;2821:12;2775:60;2854:5;2844:15;;;2518:347;;;;;:::o;3078:186::-;3137:6;3190:2;3178:9;3169:7;3165:23;3161:32;3158:52;;;3206:1;3203;3196:12;3158:52;3229:29;3248:9;3229:29;:::i;:::-;3219:39;3078:186;-1:-1:-1;;;3078:186:1:o;3269:127::-;3330:10;3325:3;3321:20;3318:1;3311:31;3361:4;3358:1;3351:15;3385:4;3382:1;3375:15;3401:719;3444:5;3497:3;3490:4;3482:6;3478:17;3474:27;3464:55;;3515:1;3512;3505:12;3464:55;3551:6;3538:20;3577:18;3614:2;3610;3607:10;3604:36;;;3620:18;;:::i;:::-;3695:2;3689:9;3663:2;3749:13;;-1:-1:-1;;3745:22:1;;;3769:2;3741:31;3737:40;3725:53;;;3793:18;;;3813:22;;;3790:46;3787:72;;;3839:18;;:::i;:::-;3879:10;3875:2;3868:22;3914:2;3906:6;3899:18;3960:3;3953:4;3948:2;3940:6;3936:15;3932:26;3929:35;3926:55;;;3977:1;3974;3967:12;3926:55;4041:2;4034:4;4026:6;4022:17;4015:4;4007:6;4003:17;3990:54;4088:1;4081:4;4076:2;4068:6;4064:15;4060:26;4053:37;4108:6;4099:15;;;;;;3401:719;;;;:::o;4125:543::-;4213:6;4221;4274:2;4262:9;4253:7;4249:23;4245:32;4242:52;;;4290:1;4287;4280:12;4242:52;4330:9;4317:23;4359:18;4400:2;4392:6;4389:14;4386:34;;;4416:1;4413;4406:12;4386:34;4439:50;4481:7;4472:6;4461:9;4457:22;4439:50;:::i;:::-;4429:60;;4542:2;4531:9;4527:18;4514:32;4498:48;;4571:2;4561:8;4558:16;4555:36;;;4587:1;4584;4577:12;4555:36;;4610:52;4654:7;4643:8;4632:9;4628:24;4610:52;:::i;:::-;4600:62;;;4125:543;;;;;:::o;4673:260::-;4741:6;4749;4802:2;4790:9;4781:7;4777:23;4773:32;4770:52;;;4818:1;4815;4808:12;4770:52;4841:29;4860:9;4841:29;:::i;:::-;4831:39;;4889:38;4923:2;4912:9;4908:18;4889:38;:::i;4938:380::-;5017:1;5013:12;;;;5060;;;5081:61;;5135:4;5127:6;5123:17;5113:27;;5081:61;5188:2;5180:6;5177:14;5157:18;5154:38;5151:161;;5234:10;5229:3;5225:20;5222:1;5215:31;5269:4;5266:1;5259:15;5297:4;5294:1;5287:15;5151:161;;4938:380;;;:::o;5732:356::-;5934:2;5916:21;;;5953:18;;;5946:30;6012:34;6007:2;5992:18;;5985:62;6079:2;6064:18;;5732:356::o;6093:127::-;6154:10;6149:3;6145:20;6142:1;6135:31;6185:4;6182:1;6175:15;6209:4;6206:1;6199:15;6225:125;6290:9;;;6311:10;;;6308:36;;;6324:18;;:::i;8102:545::-;8204:2;8199:3;8196:11;8193:448;;;8240:1;8265:5;8261:2;8254:17;8310:4;8306:2;8296:19;8380:2;8368:10;8364:19;8361:1;8357:27;8351:4;8347:38;8416:4;8404:10;8401:20;8398:47;;;-1:-1:-1;8439:4:1;8398:47;8494:2;8489:3;8485:12;8482:1;8478:20;8472:4;8468:31;8458:41;;8549:82;8567:2;8560:5;8557:13;8549:82;;;8612:17;;;8593:1;8582:13;8549:82;;;8553:3;;;8102:545;;;:::o;8823:1352::-;8949:3;8943:10;8976:18;8968:6;8965:30;8962:56;;;8998:18;;:::i;:::-;9027:97;9117:6;9077:38;9109:4;9103:11;9077:38;:::i;:::-;9071:4;9027:97;:::i;:::-;9179:4;;9243:2;9232:14;;9260:1;9255:663;;;;9962:1;9979:6;9976:89;;;-1:-1:-1;10031:19:1;;;10025:26;9976:89;-1:-1:-1;;8780:1:1;8776:11;;;8772:24;8768:29;8758:40;8804:1;8800:11;;;8755:57;10078:81;;9225:944;;9255:663;8049:1;8042:14;;;8086:4;8073:18;;-1:-1:-1;;9291:20:1;;;9409:236;9423:7;9420:1;9417:14;9409:236;;;9512:19;;;9506:26;9491:42;;9604:27;;;;9572:1;9560:14;;;;9439:19;;9409:236;;;9413:3;9673:6;9664:7;9661:19;9658:201;;;9734:19;;;9728:26;-1:-1:-1;;9817:1:1;9813:14;;;9829:3;9809:24;9805:37;9801:42;9786:58;9771:74;;9658:201;-1:-1:-1;;;;;9905:1:1;9889:14;;;9885:22;9872:36;;-1:-1:-1;8823:1352:1:o;10180:168::-;10253:9;;;10284;;10301:15;;;10295:22;;10281:37;10271:71;;10322:18;;:::i;10353:217::-;10393:1;10419;10409:132;;10463:10;10458:3;10454:20;10451:1;10444:31;10498:4;10495:1;10488:15;10526:4;10523:1;10516:15;10409:132;-1:-1:-1;10555:9:1;;10353:217::o;10575:127::-;10636:10;10631:3;10627:20;10624:1;10617:31;10667:4;10664:1;10657:15;10691:4;10688:1;10681:15;10707:128;10774:9;;;10795:11;;;10792:37;;;10809:18;;:::i;10840:127::-;10901:10;10896:3;10892:20;10889:1;10882:31;10932:4;10929:1;10922:15;10956:4;10953:1;10946:15

Swarm Source

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