ETH Price: $2,971.17 (+3.71%)
Gas: 1 Gwei

Token

The Celestial Dragon (CHING)
 

Overview

Max Total Supply

64,000,000 CHING

Holders

288

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CHING

Value
$0.00
0xdf4a8fa7c6b075af3ae031c0a9982a39da5b61c5
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:
TheCelestialDragon

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-20
*/

// A Unique Version of the Chinese Oracle for Making Decisions and Discovering Your Destiny

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity 0.8.9;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 to 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 {}
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IUniswapV2Router {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

contract TheCelestialDragon is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    
    bool public tradingActive = false;
    
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;

    // exlcude from fees and max transaction amount
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
    mapping (address => bool) public _isExcludedFromFees;
    mapping (address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor() ERC20("The Celestial Dragon", "CHING") {
        
        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromFees(owner(),true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
         
        uint256 totalSupply = 64 * 1e6 * 1e18;
        
        maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% maxWallet

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

  	}

    function enableTrading() external onlyOwner {
        tradingActive = true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead)
        ){
            if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
            }

            if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                _holderLastTransferTimestamp[tx.origin] = block.number;
            }
                 
            //when buy
            if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
                
            //when sell
            else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
            }
            else if(!_isExcludedMaxTransactionAmount[to]){
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }
    super._transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526008805460ff19908116909155600a805490911660011790553480156200002a57600080fd5b50604080518082018252601481527f5468652043656c65737469616c20447261676f6e0000000000000000000000006020808301918252835180850190945260058452644348494e4760d81b9084015281519192916200008d916003916200061b565b508051620000a39060049060208401906200061b565b5050506000620000b86200038d60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200012881600162000391565b620001476200013f6005546001600160a01b031690565b600162000391565b620001666200015e6005546001600160a01b031690565b60016200040b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620001ac57600080fd5b505afa158015620001c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e79190620006c1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023057600080fd5b505afa15801562000245573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026b9190620006c1565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002b457600080fd5b505af1158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef9190620006c1565b6001600160a01b031660a08190526200030a90600162000391565b60a0516001600160a01b03166000908152600d60205260409020805460ff191660011790556a34f086f3b33b68400000006103e86200034b82601462000702565b62000357919062000724565b6006556103e86200036a82601462000702565b62000376919062000724565b600755620003853382620004b5565b50506200079f565b3390565b6005546001600160a01b03163314620003e05760405162461bcd60e51b815260206004820181905260248201526000805160206200202f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004565760405162461bcd60e51b815260206004820181905260248201526000805160206200202f8339815191526044820152606401620003d7565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200050d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003d7565b6200052981600254620005b160201b62000ced1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200055c91839062000ced620005b1821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620005c0838562000747565b905083811015620006145760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620003d7565b9392505050565b828054620006299062000762565b90600052602060002090601f0160209004810192826200064d576000855562000698565b82601f106200066857805160ff191683800117855562000698565b8280016001018555821562000698579182015b82811115620006985782518255916020019190600101906200067b565b50620006a6929150620006aa565b5090565b5b80821115620006a65760008155600101620006ab565b600060208284031215620006d457600080fd5b81516001600160a01b03811681146200061457600080fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200071f576200071f620006ec565b500290565b6000826200074257634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200075d576200075d620006ec565b500190565b600181811c908216806200077757607f821691505b602082108114156200079957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611855620007da600039600081816103790152818161097e015261101d01526000818161027a0152610fdf01526118556000f3fe6080604052600436106101d15760003560e01c80638da5cb5b116100f7578063c024666811610095578063dd62ed3e11610064578063dd62ed3e14610568578063e0bf7fd1146105ae578063f2fde38b146105de578063f8b45b05146105fe57600080fd5b8063c0246668146104f8578063c18bc19514610518578063c876d0b914610538578063c8c8ebe41461055257600080fd5b8063a457c2d7116100d1578063a457c2d71461046e578063a9059cbb1461048e578063b62496f5146104ae578063bbc0c742146104de57600080fd5b80638da5cb5b1461041b57806395d89b41146104395780639a7a23d61461044e57600080fd5b806327c8f8351161016f57806370a082311161013e57806370a082311461039b578063715018a6146103d15780637571336a146103e65780638a8c523c1461040657600080fd5b806327c8f83514610315578063313ce5671461032b578063395093511461034757806349bd5a5e1461036757600080fd5b80631694505e116101ab5780631694505e1461026857806318160ddd146102b4578063203e727e146102d357806323b872dd146102f557600080fd5b806306fdde03146101dd578063095ea7b31461020857806310d5de531461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610614565b6040516101ff91906114b4565b60405180910390f35b34801561021457600080fd5b50610228610223366004611525565b6106a6565b60405190151581526020016101ff565b34801561024457600080fd5b5061022861025336600461154f565b600b6020526000908152604090205460ff1681565b34801561027457600080fd5b5061029c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101ff565b3480156102c057600080fd5b506002545b6040519081526020016101ff565b3480156102df57600080fd5b506102f36102ee36600461156a565b6106bc565b005b34801561030157600080fd5b50610228610310366004611583565b6107a2565b34801561032157600080fd5b5061029c61dead81565b34801561033757600080fd5b50604051601281526020016101ff565b34801561035357600080fd5b50610228610362366004611525565b61080b565b34801561037357600080fd5b5061029c7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a757600080fd5b506102c56103b636600461154f565b6001600160a01b031660009081526020819052604090205490565b3480156103dd57600080fd5b506102f3610841565b3480156103f257600080fd5b506102f36104013660046115bf565b6108b5565b34801561041257600080fd5b506102f361090a565b34801561042757600080fd5b506005546001600160a01b031661029c565b34801561044557600080fd5b506101f2610943565b34801561045a57600080fd5b506102f36104693660046115bf565b610952565b34801561047a57600080fd5b50610228610489366004611525565b610a4c565b34801561049a57600080fd5b506102286104a9366004611525565b610a9b565b3480156104ba57600080fd5b506102286104c936600461154f565b600d6020526000908152604090205460ff1681565b3480156104ea57600080fd5b506008546102289060ff1681565b34801561050457600080fd5b506102f36105133660046115bf565b610aa8565b34801561052457600080fd5b506102f361053336600461156a565b610b31565b34801561054457600080fd5b50600a546102289060ff1681565b34801561055e57600080fd5b506102c560065481565b34801561057457600080fd5b506102c56105833660046115fb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ba57600080fd5b506102286105c936600461154f565b600c6020526000908152604090205460ff1681565b3480156105ea57600080fd5b506102f36105f936600461154f565b610c02565b34801561060a57600080fd5b506102c560075481565b6060600380546106239061162e565b80601f016020809104026020016040519081016040528092919081815260200182805461064f9061162e565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b60006106b3338484610d53565b50600192915050565b6005546001600160a01b031633146106ef5760405162461bcd60e51b81526004016106e690611669565b60405180910390fd5b670de0b6b3a76400006103e861070460025490565b61070f9060016116b4565b61071991906116d3565b61072391906116d3565b81101561078a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016106e6565b61079c81670de0b6b3a76400006116b4565b60065550565b60006107af848484610e78565b61080184336107fc856040518060600160405280602881526020016117d3602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611371565b610d53565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106b39185906107fc9086610ced565b6005546001600160a01b0316331461086b5760405162461bcd60e51b81526004016106e690611669565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146108df5760405162461bcd60e51b81526004016106e690611669565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109345760405162461bcd60e51b81526004016106e690611669565b6008805460ff19166001179055565b6060600480546106239061162e565b6005546001600160a01b0316331461097c5760405162461bcd60e51b81526004016106e690611669565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610a245760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106e6565b6001600160a01b0382166000908152600d60205260409020805460ff19168215151790555050565b60006106b333846107fc856040518060600160405280602581526020016117fb602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611371565b60006106b3338484610e78565b6005546001600160a01b03163314610ad25760405162461bcd60e51b81526004016106e690611669565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016106e690611669565b670de0b6b3a76400006103e8610b7060025490565b610b7b9060056116b4565b610b8591906116d3565b610b8f91906116d3565b811015610bea5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016106e6565b610bfc81670de0b6b3a76400006116b4565b60075550565b6005546001600160a01b03163314610c2c5760405162461bcd60e51b81526004016106e690611669565b6001600160a01b038116610c915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610cfa83856116f5565b905083811015610d4c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106e6565b9392505050565b6001600160a01b038316610db55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b6001600160a01b038216610e165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e9e5760405162461bcd60e51b81526004016106e69061170d565b6001600160a01b038216610ec45760405162461bcd60e51b81526004016106e690611752565b80610eda57610ed5838360006113ab565b505050565b6005546001600160a01b03848116911614801590610f0657506005546001600160a01b03838116911614155b8015610f1a57506001600160a01b03821615155b8015610f3157506001600160a01b03821661dead14155b156113665760085460ff16610fc4576001600160a01b0383166000908152600c602052604090205460ff1680610f7f57506001600160a01b0382166000908152600c602052604090205460ff165b610fc45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016106e6565b6005546001600160a01b0383811691161480159061101457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561105257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611100573260009081526009602052604090205443116110ed5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016106e6565b3260009081526009602052604090204390555b6001600160a01b0383166000908152600d602052604090205460ff16801561114157506001600160a01b0382166000908152600b602052604090205460ff16155b15611225576006548111156111b65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016106e6565b6007546001600160a01b0383166000908152602081905260409020546111dc90836116f5565b11156112205760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e6565b611366565b6001600160a01b0382166000908152600d602052604090205460ff16801561126657506001600160a01b0383166000908152600b602052604090205460ff16155b156112dc576006548111156112205760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016106e6565b6001600160a01b0382166000908152600b602052604090205460ff16611366576007546001600160a01b03831660009081526020819052604090205461132290836116f5565b11156113665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e6565b610ed58383836113ab565b600081848411156113955760405162461bcd60e51b81526004016106e691906114b4565b5060006113a28486611795565b95945050505050565b6001600160a01b0383166113d15760405162461bcd60e51b81526004016106e69061170d565b6001600160a01b0382166113f75760405162461bcd60e51b81526004016106e690611752565b611434816040518060600160405280602681526020016117ad602691396001600160a01b0386166000908152602081905260409020549190611371565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114639082610ced565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e6b565b600060208083528351808285015260005b818110156114e1578581018301518582016040015282016114c5565b818111156114f3576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461152057600080fd5b919050565b6000806040838503121561153857600080fd5b61154183611509565b946020939093013593505050565b60006020828403121561156157600080fd5b610d4c82611509565b60006020828403121561157c57600080fd5b5035919050565b60008060006060848603121561159857600080fd5b6115a184611509565b92506115af60208501611509565b9150604084013590509250925092565b600080604083850312156115d257600080fd5b6115db83611509565b9150602083013580151581146115f057600080fd5b809150509250929050565b6000806040838503121561160e57600080fd5b61161783611509565b915061162560208401611509565b90509250929050565b600181811c9082168061164257607f821691505b6020821081141561166357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156116ce576116ce61169e565b500290565b6000826116f057634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156117085761170861169e565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156117a7576117a761169e565b50039056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202510c88878d2c87c925992f316bfdc996ed90ed0c5924873cfb483c64b85a29464736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80638da5cb5b116100f7578063c024666811610095578063dd62ed3e11610064578063dd62ed3e14610568578063e0bf7fd1146105ae578063f2fde38b146105de578063f8b45b05146105fe57600080fd5b8063c0246668146104f8578063c18bc19514610518578063c876d0b914610538578063c8c8ebe41461055257600080fd5b8063a457c2d7116100d1578063a457c2d71461046e578063a9059cbb1461048e578063b62496f5146104ae578063bbc0c742146104de57600080fd5b80638da5cb5b1461041b57806395d89b41146104395780639a7a23d61461044e57600080fd5b806327c8f8351161016f57806370a082311161013e57806370a082311461039b578063715018a6146103d15780637571336a146103e65780638a8c523c1461040657600080fd5b806327c8f83514610315578063313ce5671461032b578063395093511461034757806349bd5a5e1461036757600080fd5b80631694505e116101ab5780631694505e1461026857806318160ddd146102b4578063203e727e146102d357806323b872dd146102f557600080fd5b806306fdde03146101dd578063095ea7b31461020857806310d5de531461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610614565b6040516101ff91906114b4565b60405180910390f35b34801561021457600080fd5b50610228610223366004611525565b6106a6565b60405190151581526020016101ff565b34801561024457600080fd5b5061022861025336600461154f565b600b6020526000908152604090205460ff1681565b34801561027457600080fd5b5061029c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101ff565b3480156102c057600080fd5b506002545b6040519081526020016101ff565b3480156102df57600080fd5b506102f36102ee36600461156a565b6106bc565b005b34801561030157600080fd5b50610228610310366004611583565b6107a2565b34801561032157600080fd5b5061029c61dead81565b34801561033757600080fd5b50604051601281526020016101ff565b34801561035357600080fd5b50610228610362366004611525565b61080b565b34801561037357600080fd5b5061029c7f0000000000000000000000002ada1797dd0d96f67e9a603109b389cee85b6ba781565b3480156103a757600080fd5b506102c56103b636600461154f565b6001600160a01b031660009081526020819052604090205490565b3480156103dd57600080fd5b506102f3610841565b3480156103f257600080fd5b506102f36104013660046115bf565b6108b5565b34801561041257600080fd5b506102f361090a565b34801561042757600080fd5b506005546001600160a01b031661029c565b34801561044557600080fd5b506101f2610943565b34801561045a57600080fd5b506102f36104693660046115bf565b610952565b34801561047a57600080fd5b50610228610489366004611525565b610a4c565b34801561049a57600080fd5b506102286104a9366004611525565b610a9b565b3480156104ba57600080fd5b506102286104c936600461154f565b600d6020526000908152604090205460ff1681565b3480156104ea57600080fd5b506008546102289060ff1681565b34801561050457600080fd5b506102f36105133660046115bf565b610aa8565b34801561052457600080fd5b506102f361053336600461156a565b610b31565b34801561054457600080fd5b50600a546102289060ff1681565b34801561055e57600080fd5b506102c560065481565b34801561057457600080fd5b506102c56105833660046115fb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ba57600080fd5b506102286105c936600461154f565b600c6020526000908152604090205460ff1681565b3480156105ea57600080fd5b506102f36105f936600461154f565b610c02565b34801561060a57600080fd5b506102c560075481565b6060600380546106239061162e565b80601f016020809104026020016040519081016040528092919081815260200182805461064f9061162e565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b60006106b3338484610d53565b50600192915050565b6005546001600160a01b031633146106ef5760405162461bcd60e51b81526004016106e690611669565b60405180910390fd5b670de0b6b3a76400006103e861070460025490565b61070f9060016116b4565b61071991906116d3565b61072391906116d3565b81101561078a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016106e6565b61079c81670de0b6b3a76400006116b4565b60065550565b60006107af848484610e78565b61080184336107fc856040518060600160405280602881526020016117d3602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611371565b610d53565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106b39185906107fc9086610ced565b6005546001600160a01b0316331461086b5760405162461bcd60e51b81526004016106e690611669565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146108df5760405162461bcd60e51b81526004016106e690611669565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109345760405162461bcd60e51b81526004016106e690611669565b6008805460ff19166001179055565b6060600480546106239061162e565b6005546001600160a01b0316331461097c5760405162461bcd60e51b81526004016106e690611669565b7f0000000000000000000000002ada1797dd0d96f67e9a603109b389cee85b6ba76001600160a01b0316826001600160a01b03161415610a245760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106e6565b6001600160a01b0382166000908152600d60205260409020805460ff19168215151790555050565b60006106b333846107fc856040518060600160405280602581526020016117fb602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611371565b60006106b3338484610e78565b6005546001600160a01b03163314610ad25760405162461bcd60e51b81526004016106e690611669565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016106e690611669565b670de0b6b3a76400006103e8610b7060025490565b610b7b9060056116b4565b610b8591906116d3565b610b8f91906116d3565b811015610bea5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016106e6565b610bfc81670de0b6b3a76400006116b4565b60075550565b6005546001600160a01b03163314610c2c5760405162461bcd60e51b81526004016106e690611669565b6001600160a01b038116610c915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610cfa83856116f5565b905083811015610d4c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106e6565b9392505050565b6001600160a01b038316610db55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b6001600160a01b038216610e165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e9e5760405162461bcd60e51b81526004016106e69061170d565b6001600160a01b038216610ec45760405162461bcd60e51b81526004016106e690611752565b80610eda57610ed5838360006113ab565b505050565b6005546001600160a01b03848116911614801590610f0657506005546001600160a01b03838116911614155b8015610f1a57506001600160a01b03821615155b8015610f3157506001600160a01b03821661dead14155b156113665760085460ff16610fc4576001600160a01b0383166000908152600c602052604090205460ff1680610f7f57506001600160a01b0382166000908152600c602052604090205460ff165b610fc45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016106e6565b6005546001600160a01b0383811691161480159061101457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561105257507f0000000000000000000000002ada1797dd0d96f67e9a603109b389cee85b6ba76001600160a01b0316826001600160a01b031614155b15611100573260009081526009602052604090205443116110ed5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016106e6565b3260009081526009602052604090204390555b6001600160a01b0383166000908152600d602052604090205460ff16801561114157506001600160a01b0382166000908152600b602052604090205460ff16155b15611225576006548111156111b65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016106e6565b6007546001600160a01b0383166000908152602081905260409020546111dc90836116f5565b11156112205760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e6565b611366565b6001600160a01b0382166000908152600d602052604090205460ff16801561126657506001600160a01b0383166000908152600b602052604090205460ff16155b156112dc576006548111156112205760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016106e6565b6001600160a01b0382166000908152600b602052604090205460ff16611366576007546001600160a01b03831660009081526020819052604090205461132290836116f5565b11156113665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e6565b610ed58383836113ab565b600081848411156113955760405162461bcd60e51b81526004016106e691906114b4565b5060006113a28486611795565b95945050505050565b6001600160a01b0383166113d15760405162461bcd60e51b81526004016106e69061170d565b6001600160a01b0382166113f75760405162461bcd60e51b81526004016106e690611752565b611434816040518060600160405280602681526020016117ad602691396001600160a01b0386166000908152602081905260409020549190611371565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114639082610ced565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e6b565b600060208083528351808285015260005b818110156114e1578581018301518582016040015282016114c5565b818111156114f3576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461152057600080fd5b919050565b6000806040838503121561153857600080fd5b61154183611509565b946020939093013593505050565b60006020828403121561156157600080fd5b610d4c82611509565b60006020828403121561157c57600080fd5b5035919050565b60008060006060848603121561159857600080fd5b6115a184611509565b92506115af60208501611509565b9150604084013590509250925092565b600080604083850312156115d257600080fd5b6115db83611509565b9150602083013580151581146115f057600080fd5b809150509250929050565b6000806040838503121561160e57600080fd5b61161783611509565b915061162560208401611509565b90509250929050565b600181811c9082168061164257607f821691505b6020821081141561166357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156116ce576116ce61169e565b500290565b6000826116f057634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156117085761170861169e565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156117a7576117a761169e565b50039056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202510c88878d2c87c925992f316bfdc996ed90ed0c5924873cfb483c64b85a29464736f6c63430008090033

Deployed Bytecode Sourcemap

22849:4992:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7684:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9851:169;;;;;;;;;;-1:-1:-1;9851:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9851:169:0;1053:187:1;23397:64:0;;;;;;;;;;-1:-1:-1;23397:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22937:49;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1625:32:1;;;1607:51;;1595:2;1580:18;22937:49:0;1436:228:1;8804:108:0;;;;;;;;;;-1:-1:-1;8892:12:0;;8804:108;;;1815:25:1;;;1803:2;1788:18;8804:108:0;1669:177:1;24731:234:0;;;;;;;;;;-1:-1:-1;24731:234:0;;;;;:::i;:::-;;:::i;:::-;;10502:355;;;;;;;;;;-1:-1:-1;10502:355:0;;;;;:::i;:::-;;:::i;23038:53::-;;;;;;;;;;;;23084:6;23038:53;;8646:93;;;;;;;;;;-1:-1:-1;8646:93:0;;8729:2;2719:36:1;;2707:2;2692:18;8646:93:0;2577:184:1;11266:218:0;;;;;;;;;;-1:-1:-1;11266:218:0;;;;;:::i;:::-;;:::i;22993:38::-;;;;;;;;;;;;;;;8975:127;;;;;;;;;;-1:-1:-1;8975:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9076:18:0;9049:7;9076:18;;;;;;;;;;;;8975:127;22149:148;;;;;;;;;;;;;:::i;25200:144::-;;;;;;;;;;-1:-1:-1;25200:144:0;;;;;:::i;:::-;;:::i;24640:83::-;;;;;;;;;;;;;:::i;21507:79::-;;;;;;;;;;-1:-1:-1;21572:6:0;;-1:-1:-1;;;;;21572:6:0;21507:79;;7903:104;;;;;;;;;;;;;:::i;25542:244::-;;;;;;;;;;-1:-1:-1;25542:244:0;;;;;:::i;:::-;;:::i;11987:269::-;;;;;;;;;;-1:-1:-1;11987:269:0;;;;;:::i;:::-;;:::i;9315:175::-;;;;;;;;;;-1:-1:-1;9315:175:0;;;;;:::i;:::-;;:::i;23527:58::-;;;;;;;;;;-1:-1:-1;23527:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23179:33;;;;;;;;;;-1:-1:-1;23179:33:0;;;;;;;;25352:182;;;;;;;;;;-1:-1:-1;25352:182:0;;;;;:::i;:::-;;:::i;24973:215::-;;;;;;;;;;-1:-1:-1;24973:215:0;;;;;:::i;:::-;;:::i;23296:39::-;;;;;;;;;;-1:-1:-1;23296:39:0;;;;;;;;23100:35;;;;;;;;;;;;;;;;9553:151;;;;;;;;;;-1:-1:-1;9553:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9669:18:0;;;9642:7;9669:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9553:151;23468:52;;;;;;;;;;-1:-1:-1;23468:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22452:244;;;;;;;;;;-1:-1:-1;22452:244:0;;;;;:::i;:::-;;:::i;23142:24::-;;;;;;;;;;;;;;;;7684:100;7738:13;7771:5;7764:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7684:100;:::o;9851:169::-;9934:4;9951:39;400:10;9974:7;9983:6;9951:8;:39::i;:::-;-1:-1:-1;10008:4:0;9851:169;;;;:::o;24731:234::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;;;;;;;;;24850:4:::1;24844;24824:13;8892:12:::0;;;8804:108;24824:13:::1;:17;::::0;24840:1:::1;24824:17;:::i;:::-;:24;;;;:::i;:::-;24823:31;;;;:::i;:::-;24813:6;:41;;24805:101;;;::::0;-1:-1:-1;;;24805:101:0;;4858:2:1;24805:101:0::1;::::0;::::1;4840:21:1::0;4897:2;4877:18;;;4870:30;4936:34;4916:18;;;4909:62;-1:-1:-1;;;4987:18:1;;;4980:45;5042:19;;24805:101:0::1;4656:411:1::0;24805:101:0::1;24940:17;:6:::0;24950::::1;24940:17;:::i;:::-;24917:20;:40:::0;-1:-1:-1;24731:234:0:o;10502:355::-;10642:4;10659:36;10669:6;10677:9;10688:6;10659:9;:36::i;:::-;10706:121;10715:6;400:10;10737:89;10775:6;10737:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10737:19:0;;;;;;:11;:19;;;;;;;;400:10;10737:33;;;;;;;;;;:37;:89::i;:::-;10706:8;:121::i;:::-;-1:-1:-1;10845:4:0;10502:355;;;;;:::o;11266:218::-;400:10;11354:4;11403:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11403:34:0;;;;;;;;;;11354:4;;11371:83;;11394:7;;11403:50;;11442:10;11403:38;:50::i;22149:148::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;22240:6:::1;::::0;22219:40:::1;::::0;22256:1:::1;::::0;-1:-1:-1;;;;;22240:6:0::1;::::0;22219:40:::1;::::0;22256:1;;22219:40:::1;22270:6;:19:::0;;-1:-1:-1;;;;;;22270:19:0::1;::::0;;22149:148::o;25200:144::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25290:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;25290:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25200:144::o;24640:83::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;24695:13:::1;:20:::0;;-1:-1:-1;;24695:20:0::1;24711:4;24695:20;::::0;;24640:83::o;7903:104::-;7959:13;7992:7;7985:14;;;;;:::i;25542:244::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;25649:13:::1;-1:-1:-1::0;;;;;25641:21:0::1;:4;-1:-1:-1::0;;;;;25641:21:0::1;;;25633:91;;;::::0;-1:-1:-1;;;25633:91:0;;5274:2:1;25633:91:0::1;::::0;::::1;5256:21:1::0;5313:2;5293:18;;;5286:30;5352:34;5332:18;;;5325:62;5423:27;5403:18;;;5396:55;5468:19;;25633:91:0::1;5072:421:1::0;25633:91:0::1;-1:-1:-1::0;;;;;25877:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;25877:39:0;;;;;;;25542:244;;:::o;11987:269::-;12080:4;12097:129;400:10;12120:7;12129:96;12168:15;12129:96;;;;;;;;;;;;;;;;;400:10;12129:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12129:34:0;;;;;;;;;;;;:38;:96::i;9315:175::-;9401:4;9418:42;400:10;9442:9;9453:6;9418:9;:42::i;25352:182::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25437:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;25437:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25492:34;;1193:41:1;;;25492:34:0::1;::::0;1166:18:1;25492:34:0::1;;;;;;;25352:182:::0;;:::o;24973:215::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;25095:4:::1;25089;25069:13;8892:12:::0;;;8804:108;25069:13:::1;:17;::::0;25085:1:::1;25069:17;:::i;:::-;:24;;;;:::i;:::-;25068:31;;;;:::i;:::-;25058:6;:41;;25050:90;;;::::0;-1:-1:-1;;;25050:90:0;;5700:2:1;25050:90:0::1;::::0;::::1;5682:21:1::0;5739:2;5719:18;;;5712:30;5778:34;5758:18;;;5751:62;-1:-1:-1;;;5829:18:1;;;5822:34;5873:19;;25050:90:0::1;5498:400:1::0;25050:90:0::1;25163:17;:6:::0;25173::::1;25163:17;:::i;:::-;25151:9;:29:::0;-1:-1:-1;24973:215:0:o;22452:244::-;21719:6;;-1:-1:-1;;;;;21719:6:0;400:10;21719:22;21711:67;;;;-1:-1:-1;;;21711:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22541:22:0;::::1;22533:73;;;::::0;-1:-1:-1;;;22533:73:0;;6105:2:1;22533:73:0::1;::::0;::::1;6087:21:1::0;6144:2;6124:18;;;6117:30;6183:34;6163:18;;;6156:62;-1:-1:-1;;;6234:18:1;;;6227:36;6280:19;;22533:73:0::1;5903:402:1::0;22533:73:0::1;22643:6;::::0;22622:38:::1;::::0;-1:-1:-1;;;;;22622:38:0;;::::1;::::0;22643:6:::1;::::0;22622:38:::1;::::0;22643:6:::1;::::0;22622:38:::1;22671:6;:17:::0;;-1:-1:-1;;;;;;22671:17:0::1;-1:-1:-1::0;;;;;22671:17:0;;;::::1;::::0;;;::::1;::::0;;22452:244::o;16551:181::-;16609:7;;16641:5;16645:1;16641;:5;:::i;:::-;16629:17;;16670:1;16665;:6;;16657:46;;;;-1:-1:-1;;;16657:46:0;;6645:2:1;16657:46:0;;;6627:21:1;6684:2;6664:18;;;6657:30;6723:29;6703:18;;;6696:57;6770:18;;16657:46:0;6443:351:1;16657:46:0;16723:1;16551:181;-1:-1:-1;;;16551:181:0:o;15173:380::-;-1:-1:-1;;;;;15309:19:0;;15301:68;;;;-1:-1:-1;;;15301:68:0;;7001:2:1;15301:68:0;;;6983:21:1;7040:2;7020:18;;;7013:30;7079:34;7059:18;;;7052:62;-1:-1:-1;;;7130:18:1;;;7123:34;7174:19;;15301:68:0;6799:400:1;15301:68:0;-1:-1:-1;;;;;15388:21:0;;15380:68;;;;-1:-1:-1;;;15380:68:0;;7406:2:1;15380:68:0;;;7388:21:1;7445:2;7425:18;;;7418:30;7484:34;7464:18;;;7457:62;-1:-1:-1;;;7535:18:1;;;7528:32;7577:19;;15380:68:0;7204:398:1;15380:68:0;-1:-1:-1;;;;;15461:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15513:32;;1815:25:1;;;15513:32:0;;1788:18:1;15513:32:0;;;;;;;;15173:380;;;:::o;25932:1906::-;-1:-1:-1;;;;;26064:18:0;;26056:68;;;;-1:-1:-1;;;26056:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26143:16:0;;26135:64;;;;-1:-1:-1;;;26135:64:0;;;;;;;:::i;:::-;26224:11;26221:92;;26252:28;26268:4;26274:2;26278:1;26252:15;:28::i;:::-;25932:1906;;;:::o;26221:92::-;21572:6;;-1:-1:-1;;;;;26351:15:0;;;21572:6;;26351:15;;;;:45;;-1:-1:-1;21572:6:0;;-1:-1:-1;;;;;26383:13:0;;;21572:6;;26383:13;;26351:45;:78;;;;-1:-1:-1;;;;;;26413:16:0;;;;26351:78;:116;;;;-1:-1:-1;;;;;;26446:21:0;;26460:6;26446:21;;26351:116;26333:1458;;;26497:13;;;;26493:144;;-1:-1:-1;;;;;26542:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;26571:23:0;;;;;;:19;:23;;;;;;;;26542:52;26534:87;;;;-1:-1:-1;;;26534:87:0;;8619:2:1;26534:87:0;;;8601:21:1;8658:2;8638:18;;;8631:30;-1:-1:-1;;;8677:18:1;;;8670:52;8739:18;;26534:87:0;8417:346:1;26534:87:0;21572:6;;-1:-1:-1;;;;;26657:13:0;;;21572:6;;26657:13;;;;:47;;;26688:15;-1:-1:-1;;;;;26674:30:0;:2;-1:-1:-1;;;;;26674:30:0;;;26657:47;:79;;;;;26722:13;-1:-1:-1;;;;;26708:28:0;:2;-1:-1:-1;;;;;26708:28:0;;;26657:79;26653:332;;;26793:9;26764:39;;;;:28;:39;;;;;;26806:12;-1:-1:-1;26756:140:0;;;;-1:-1:-1;;;26756:140:0;;8970:2:1;26756:140:0;;;8952:21:1;9009:2;8989:18;;;8982:30;9048:34;9028:18;;;9021:62;9119:34;9099:18;;;9092:62;-1:-1:-1;;;9170:19:1;;;9163:40;9220:19;;26756:140:0;8768:477:1;26756:140:0;26944:9;26915:39;;;;:28;:39;;;;;26957:12;26915:54;;26653:332;-1:-1:-1;;;;;27046:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;27082:35:0;;;;;;:31;:35;;;;;;;;27081:36;27046:71;27042:738;;;27160:20;;27150:6;:30;;27142:96;;;;-1:-1:-1;;;27142:96:0;;9452:2:1;27142:96:0;;;9434:21:1;9491:2;9471:18;;;9464:30;9530:34;9510:18;;;9503:62;-1:-1:-1;;;9581:18:1;;;9574:51;9642:19;;27142:96:0;9250:417:1;27142:96:0;27295:9;;-1:-1:-1;;;;;9076:18:0;;9049:7;9076:18;;;;;;;;;;;27269:22;;:6;:22;:::i;:::-;:35;;27261:67;;;;-1:-1:-1;;;27261:67:0;;9874:2:1;27261:67:0;;;9856:21:1;9913:2;9893:18;;;9886:30;-1:-1:-1;;;9932:18:1;;;9925:49;9991:18;;27261:67:0;9672:343:1;27261:67:0;27042:738;;;-1:-1:-1;;;;;27410:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;27444:37:0;;;;;;:31;:37;;;;;;;;27443:38;27410:71;27406:374;;;27524:20;;27514:6;:30;;27506:97;;;;-1:-1:-1;;;27506:97:0;;10222:2:1;27506:97:0;;;10204:21:1;10261:2;10241:18;;;10234:30;10300:34;10280:18;;;10273:62;-1:-1:-1;;;10351:18:1;;;10344:52;10413:19;;27506:97:0;10020:418:1;27406:374:0;-1:-1:-1;;;;;27642:35:0;;;;;;:31;:35;;;;;;;;27638:142;;27731:9;;-1:-1:-1;;;;;9076:18:0;;9049:7;9076:18;;;;;;;;;;;27705:22;;:6;:22;:::i;:::-;:35;;27697:67;;;;-1:-1:-1;;;27697:67:0;;9874:2:1;27697:67:0;;;9856:21:1;9913:2;9893:18;;;9886:30;-1:-1:-1;;;9932:18:1;;;9925:49;9991:18;;27697:67:0;9672:343:1;27697:67:0;27797:33;27813:4;27819:2;27823:6;27797:15;:33::i;17454:192::-;17540:7;17576:12;17568:6;;;;17560:29;;;;-1:-1:-1;;;17560:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17600:9:0;17612:5;17616:1;17612;:5;:::i;:::-;17600:17;17454:192;-1:-1:-1;;;;;17454:192:0:o;12746:573::-;-1:-1:-1;;;;;12886:20:0;;12878:70;;;;-1:-1:-1;;;12878:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12967:23:0;;12959:71;;;;-1:-1:-1;;;12959:71:0;;;;;;;:::i;:::-;13123;13145:6;13123:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13123:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13103:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13228:20;;;;;;;:32;;13253:6;13228:24;:32::i;:::-;-1:-1:-1;;;;;13205:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13276:35;1815:25:1;;;13205:20:0;;13276:35;;;;;;1788:18:1;13276:35:0;1669:177:1;14:597;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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;1851:180::-;1910:6;1963:2;1951:9;1942:7;1938:23;1934:32;1931:52;;;1979:1;1976;1969:12;1931:52;-1:-1:-1;2002:23:1;;1851:180;-1:-1:-1;1851:180:1:o;2036:328::-;2113:6;2121;2129;2182:2;2170:9;2161:7;2157:23;2153:32;2150:52;;;2198:1;2195;2188:12;2150:52;2221:29;2240:9;2221:29;:::i;:::-;2211:39;;2269:38;2303:2;2292:9;2288:18;2269:38;:::i;:::-;2259:48;;2354:2;2343:9;2339:18;2326:32;2316:42;;2036:328;;;;;:::o;2766:347::-;2831:6;2839;2892:2;2880:9;2871:7;2867:23;2863:32;2860:52;;;2908:1;2905;2898:12;2860:52;2931:29;2950:9;2931:29;:::i;:::-;2921:39;;3010:2;2999:9;2995:18;2982:32;3057:5;3050:13;3043:21;3036:5;3033:32;3023:60;;3079:1;3076;3069:12;3023:60;3102:5;3092:15;;;2766:347;;;;;:::o;3118:260::-;3186:6;3194;3247:2;3235:9;3226:7;3222:23;3218:32;3215:52;;;3263:1;3260;3253:12;3215:52;3286:29;3305:9;3286:29;:::i;:::-;3276:39;;3334:38;3368:2;3357:9;3353:18;3334:38;:::i;:::-;3324:48;;3118:260;;;;;:::o;3383:380::-;3462:1;3458:12;;;;3505;;;3526:61;;3580:4;3572:6;3568:17;3558:27;;3526:61;3633:2;3625:6;3622:14;3602:18;3599:38;3596:161;;;3679:10;3674:3;3670:20;3667:1;3660:31;3714:4;3711:1;3704:15;3742:4;3739:1;3732:15;3596:161;;3383:380;;;:::o;3768:356::-;3970:2;3952:21;;;3989:18;;;3982:30;4048:34;4043:2;4028:18;;4021:62;4115:2;4100:18;;3768:356::o;4129:127::-;4190:10;4185:3;4181:20;4178:1;4171:31;4221:4;4218:1;4211:15;4245:4;4242:1;4235:15;4261:168;4301:7;4367:1;4363;4359:6;4355:14;4352:1;4349:21;4344:1;4337:9;4330:17;4326:45;4323:71;;;4374:18;;:::i;:::-;-1:-1:-1;4414:9:1;;4261:168::o;4434:217::-;4474:1;4500;4490:132;;4544:10;4539:3;4535:20;4532:1;4525:31;4579:4;4576:1;4569:15;4607:4;4604:1;4597:15;4490:132;-1:-1:-1;4636:9:1;;4434:217::o;6310:128::-;6350:3;6381:1;6377:6;6374:1;6371:13;6368:39;;;6387:18;;:::i;:::-;-1:-1:-1;6423:9:1;;6310:128::o;7607:401::-;7809:2;7791:21;;;7848:2;7828:18;;;7821:30;7887:34;7882:2;7867:18;;7860:62;-1:-1:-1;;;7953:2:1;7938:18;;7931:35;7998:3;7983:19;;7607:401::o;8013:399::-;8215:2;8197:21;;;8254:2;8234:18;;;8227:30;8293:34;8288:2;8273:18;;8266:62;-1:-1:-1;;;8359:2:1;8344:18;;8337:33;8402:3;8387:19;;8013:399::o;10443:125::-;10483:4;10511:1;10508;10505:8;10502:34;;;10516:18;;:::i;:::-;-1:-1:-1;10553:9:1;;10443:125::o

Swarm Source

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