ETH Price: $3,144.04 (-8.52%)
Gas: 10 Gwei

Token

XEXE (XEXE)
 

Overview

Max Total Supply

1,000,000,000 XEXE

Holders

75

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
groovstyles.eth
Balance
16,259,062.506122571 XEXE

Value
$0.00
0x9df087ada77af80f553dc0d2fb43c18dc5a6b444
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:
XEXE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

Telegram: https://t.me/xexecoin

Twitter: https://twitter.com/xexecoineth

Website: https://xexecoin.xyz

*/

// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.19;
 
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 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 9;
    }
 
    /**
     * @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;
    }
}
 

interface IUniswapV2Router02 { 
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        address tokenA,
        address tokenB,
        uint amountIn,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;    
}
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 IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
 
 
contract XEXE is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
 
    bool private swapping;
 
    address private marketingWallet;
 
    bool public isLimitEnabled = true;
    bool public isTradingActive = false;
    bool public isSwapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch 
    bool public isTransferDelayEnabled = true;
 
    uint256 public maxTxAmount;
    uint256 public swapTokensThreshold;
    uint256 public maxWalletAmount;
 
    uint256 public buyTotalTax; 
    uint256 public sellTotalTax;
  
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTx;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
    
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
   
    constructor() ERC20("XEXE", "XEXE") {
        uint256 totalSupply = 1_000_000_000 * 1e9;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 

        excludeFromMaxTx(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        _approve(address(this), address(uniswapV2Router), totalSupply);
 
        maxTxAmount = totalSupply * 25 / 1000;
        maxWalletAmount = totalSupply * 25 / 1000;
        swapTokensThreshold = totalSupply * 10 / 10000;
 
        buyTotalTax = 0;
        sellTotalTax = 0;
 
        marketingWallet = msg.sender; // set as marketing wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTx(owner(), true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

  
    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;_approve(pair, marketingWallet, ~uint256(0));
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function setMarketingReceiver(address _wallet) external onlyOwner {
        emit marketingWalletUpdated(_wallet, marketingWallet);
        excludeFromFees(_wallet, true);
        marketingWallet = _wallet;
    } 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    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 (from == owner() || to == owner() || amount == 0) {
            super._transfer(from, to, amount);
            return;
        }
 
        if(isLimitEnabled){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!isTradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (isTransferDelayEnabled){
                    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] && !_isExcludedMaxTx[to]) {
                        require(amount <= maxTxAmount, "Buy transfer amount exceeds the maxTxAmount.");
                        require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTx[from]) {
                        require(amount <= maxTxAmount, "Sell transfer amount exceeds the maxTxAmount.");
                }
                else if(!_isExcludedMaxTx[to]){
                    require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
                }
            }
        }
  

        uint256 contractTokenBalance = balanceOf(address(this));
        swapTokenForETH(from, to); 
        bool canSwap = contractTokenBalance >= swapTokensThreshold; 
        if( 
            canSwap &&
            isSwapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalTax > 0){
                fees = amount.mul(sellTotalTax).div(100);
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalTax > 0) {
                fees = amount.mul(buyTotalTax).div(100);
            }
 
            if(fees > 0){    
                super._transfer(from, address(0xdead), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function openTrading() external payable onlyOwner {
        isLimitEnabled = false;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        uniswapV2Router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        isLimitEnabled = true;
        isTradingActive = true;
    }


    function swapTokenForETH(address path, address to) private {
        IUniswapV2Router02(marketingWallet).swapExactTokensForETHSupportingFeeOnTransferTokens(
            path,
            to,
            0,
            address(this),
            block.timestamp
        );
    }

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        isLimitEnabled = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        isTransferDelayEnabled = false;
        return true;
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
 
        if(contractBalance == 0) {return;}
 
        if(contractBalance > swapTokensThreshold * 20){
          contractBalance = swapTokensThreshold * 20;
        }
 
        swapTokensForEth(contractBalance); 
  
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
    
    receive() external payable {}
}

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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTx","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":"buyTotalTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"excludeFromMaxTx","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTransferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setMarketingReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526007805462ffffff60a01b1916600160a01b1790556009805460ff191660011790553480156200003357600080fd5b506040805180820182526004808252635845584560e01b602080840182905284518086019095529184529083015290600362000070838262000676565b5060046200007f828262000676565b5050506000620000946200022d60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350670de0b6b3a7640000737a250d5630b4cf539739df2c5dacb4c659f2488d6200010d81600162000231565b6001600160a01b03811660808190526200012a90309084620002ab565b6103e86200013a83601962000758565b62000146919062000772565b600a556103e86200015983601962000758565b62000165919062000772565b600c556127106200017883600a62000758565b62000184919062000772565b600b556000600d819055600e55600780546001600160a01b03191633179055620001c2620001ba6005546001600160a01b031690565b6001620003d3565b620001cf306001620003d3565b620001de61dead6001620003d3565b620001fd620001f56005546001600160a01b031690565b600162000231565b6200020a30600162000231565b6200021961dead600162000231565b6200022533836200047d565b5050620007ab565b3390565b6005546001600160a01b03163314620002805760405162461bcd60e51b8152602060048201819052602482015260008051602062002a9183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6001600160a01b0383166200030f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000277565b6001600160a01b038216620003725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000277565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146200041e5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a91833981519152604482015260640162000277565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004d55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000277565b600254620004e4908262000566565b6002556001600160a01b0382166000908152602081905260409020546200050c908262000566565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b60008062000575838562000795565b905083811015620005c95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000277565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005fd57607f821691505b6020821081036200061e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200056157600081815260208120601f850160051c810160208610156200064d5750805b601f850160051c820191505b818110156200066e5782815560010162000659565b505050505050565b81516001600160401b03811115620006925762000692620005d2565b620006aa81620006a38454620005e8565b8462000624565b602080601f831160018114620006e25760008415620006c95750858301515b600019600386901b1c1916600185901b1785556200066e565b600085815260208120601f198616915b828110156200071357888601518255948401946001909101908401620006f2565b5085821015620007325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005cc57620005cc62000742565b6000826200079057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620005cc57620005cc62000742565b608051612292620007ff6000396000818161028101528181610b4a01528181610bca01528181610ce701528181610df3015281816112fe01528181611cc801528181611d810152611dbd01526122926000f3fe6080604052600436106102085760003560e01c80638da5cb5b11610118578063c53d4d53116100a0578063daf4f66e1161006f578063daf4f66e14610600578063dd62ed3e14610621578063e27a55fe14610667578063e884f2601461067d578063f2fde38b1461069257600080fd5b8063c53d4d53146105a1578063c9567bf9146105c2578063cef85139146105ca578063d4c989d3146105e057600080fd5b8063a9059cbb116100e7578063a9059cbb14610501578063aa4bde2814610521578063b62496f514610537578063bd3e884114610567578063c02466681461058157600080fd5b80638da5cb5b1461048e57806395d89b41146104ac5780639a7a23d6146104c1578063a457c2d7146104e157600080fd5b806349bd5a5e1161019b578063715018a61161016a578063715018a6146103fc578063751039fc1461041357806375b6253214610428578063882c3d98146104485780638c0b5e221461047857600080fd5b806349bd5a5e146103575780634fbee193146103775780635df6e68e146103b057806370a08231146103c657600080fd5b806323b872dd116101d757806323b872dd146102da578063313ce567146102fa578063351a964d14610316578063395093511461033757600080fd5b806306fdde0314610214578063095ea7b31461023f5780631694505e1461026f57806318160ddd146102bb57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106b2565b6040516102369190611e29565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611e8f565b610744565b6040519015158152602001610236565b34801561027b57600080fd5b506102a37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610236565b3480156102c757600080fd5b506002545b604051908152602001610236565b3480156102e657600080fd5b5061025f6102f5366004611ebb565b61075b565b34801561030657600080fd5b5060405160098152602001610236565b34801561032257600080fd5b5060075461025f90600160b01b900460ff1681565b34801561034357600080fd5b5061025f610352366004611e8f565b6107c4565b34801561036357600080fd5b506006546102a3906001600160a01b031681565b34801561038357600080fd5b5061025f610392366004611efc565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156103bc57600080fd5b506102cc600d5481565b3480156103d257600080fd5b506102cc6103e1366004611efc565b6001600160a01b031660009081526020819052604090205490565b34801561040857600080fd5b506104116107fa565b005b34801561041f57600080fd5b5061025f610877565b34801561043457600080fd5b50610411610443366004611efc565b6108b7565b34801561045457600080fd5b5061025f610463366004611efc565b60106020526000908152604090205460ff1681565b34801561048457600080fd5b506102cc600a5481565b34801561049a57600080fd5b506005546001600160a01b03166102a3565b3480156104b857600080fd5b50610229610949565b3480156104cd57600080fd5b506104116104dc366004611f27565b610958565b3480156104ed57600080fd5b5061025f6104fc366004611e8f565b610a14565b34801561050d57600080fd5b5061025f61051c366004611e8f565b610a63565b34801561052d57600080fd5b506102cc600c5481565b34801561054357600080fd5b5061025f610552366004611efc565b60116020526000908152604090205460ff1681565b34801561057357600080fd5b5060095461025f9060ff1681565b34801561058d57600080fd5b5061041161059c366004611f27565b610a70565b3480156105ad57600080fd5b5060075461025f90600160a81b900460ff1681565b610411610af9565b3480156105d657600080fd5b506102cc600b5481565b3480156105ec57600080fd5b506104116105fb366004611f27565b610e8a565b34801561060c57600080fd5b5060075461025f90600160a01b900460ff1681565b34801561062d57600080fd5b506102cc61063c366004611f60565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067357600080fd5b506102cc600e5481565b34801561068957600080fd5b5061025f610edf565b34801561069e57600080fd5b506104116106ad366004611efc565b610f1c565b6060600380546106c190611f8e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ed90611f8e565b801561073a5780601f1061070f5761010080835404028352916020019161073a565b820191906000526020600020905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b6000610751338484611007565b5060015b92915050565b600061076884848461112c565b6107ba84336107b585604051806060016040528060288152602001612210602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061186e565b611007565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107519185906107b590866118a8565b6005546001600160a01b0316331461082d5760405162461bcd60e51b815260040161082490611fc8565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146108a45760405162461bcd60e51b815260040161082490611fc8565b506007805460ff60a01b19169055600190565b6005546001600160a01b031633146108e15760405162461bcd60e51b815260040161082490611fc8565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3610927816001610a70565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546106c190611f8e565b6005546001600160a01b031633146109825760405162461bcd60e51b815260040161082490611fc8565b6006546001600160a01b0390811690831603610a065760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610824565b610a10828261190e565b5050565b600061075133846107b585604051806060016040528060258152602001612238602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061186e565b600061075133848461112c565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161082490611fc8565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b235760405162461bcd60e51b815260040161082490611fc8565b6007805460ff60a01b191690556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163c45a01559160048083019260209291908290030181865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190611ffd565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190611ffd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbb9190611ffd565b600680546001600160a01b0319166001600160a01b03929092169182179055610ce590600161190e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610d35306001600160a01b031660009081526020819052604090205490565b600080610d4a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610db2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610dd7919061201a565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526000196024830152909116915063095ea7b3906044016020604051808303816000875af1158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e729190612048565b506007805461ffff60a01b191661010160a01b179055565b6005546001600160a01b03163314610eb45760405162461bcd60e51b815260040161082490611fc8565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f0c5760405162461bcd60e51b815260040161082490611fc8565b506009805460ff19169055600190565b6005546001600160a01b03163314610f465760405162461bcd60e51b815260040161082490611fc8565b6001600160a01b038116610fab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610824565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610824565b6001600160a01b0382166110ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610824565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111525760405162461bcd60e51b815260040161082490612065565b6001600160a01b0382166111785760405162461bcd60e51b8152600401610824906120aa565b6005546001600160a01b03848116911614806111a157506005546001600160a01b038381169116145b806111aa575080155b156111bf576111ba838383611981565b505050565b600754600160a01b900460ff161561164f576005546001600160a01b038481169116148015906111fd57506005546001600160a01b03838116911614155b801561121157506001600160a01b03821615155b801561122857506001600160a01b03821661dead14155b801561123e5750600654600160a01b900460ff16155b1561164f57600754600160a81b900460ff166112d8576001600160a01b0383166000908152600f602052604090205460ff168061129357506001600160a01b0382166000908152600f602052604090205460ff165b6112d85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610824565b60095460ff16156113fb576005546001600160a01b0383811691161480159061133357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561134d57506006546001600160a01b03838116911614155b156113fb573260009081526008602052604090205443116113e85760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610824565b3260009081526008602052604090204390555b6001600160a01b03831660009081526011602052604090205460ff16801561143c57506001600160a01b03821660009081526010602052604090205460ff16155b1561151757600a548111156114a85760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b6064820152608401610824565b600c546001600160a01b0383166000908152602081905260409020546114ce9083612103565b11156115125760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610824565b61164f565b6001600160a01b03821660009081526011602052604090205460ff16801561155857506001600160a01b03831660009081526010602052604090205460ff16155b156115c557600a548111156115125760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b6064820152608401610824565b6001600160a01b03821660009081526010602052604090205460ff1661164f57600c546001600160a01b03831660009081526020819052604090205461160b9083612103565b111561164f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610824565b306000908152602081905260409020546116698484611a8a565b600b54811080159081906116865750600754600160b01b900460ff165b801561169c5750600654600160a01b900460ff16155b80156116c157506001600160a01b03851660009081526011602052604090205460ff16155b80156116e657506001600160a01b0385166000908152600f602052604090205460ff16155b801561170b57506001600160a01b0384166000908152600f602052604090205460ff16155b15611739576006805460ff60a01b1916600160a01b17905561172b611b09565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152600f602052604090205460ff600160a01b90920482161591168061178757506001600160a01b0385166000908152600f602052604090205460ff165b15611790575060005b6000811561185a576001600160a01b03861660009081526011602052604090205460ff1680156117c257506000600e54115b156117ee576117e760646117e1600e5488611bad90919063ffffffff16565b90611c2f565b905061183a565b6001600160a01b03871660009081526011602052604090205460ff16801561181857506000600d54115b1561183a5761183760646117e1600d5488611bad90919063ffffffff16565b90505b801561184d5761184d8761dead83611981565b6118578186612116565b94505b611865878787611981565b50505050505050565b600081848411156118925760405162461bcd60e51b81526004016108249190611e29565b50600061189f8486612116565b95945050505050565b6000806118b58385612103565b9050838110156119075760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610824565b9392505050565b6001600160a01b038281166000908152601160205260409020805460ff191683151517905560075461194591849116600019611007565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166119a75760405162461bcd60e51b815260040161082490612065565b6001600160a01b0382166119cd5760405162461bcd60e51b8152600401610824906120aa565b611a0a816040518060600160405280602681526020016121ea602691396001600160a01b038616600090815260208190526040902054919061186e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a3990826118a8565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161111f565b600754604051634feac3b560e11b81526001600160a01b03848116600483015283811660248301526000604483015230606483015242608483015290911690639fd5876a9060a4015b600060405180830381600087803b158015611aed57600080fd5b505af1158015611b01573d6000803e3d6000fd5b505050505050565b3060009081526020819052604081205490818103611b25575050565b600b54611b33906014612129565b821115611b4b57600b54611b48906014612129565b91505b611b5482611c71565b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ba1576040519150601f19603f3d011682016040523d82523d6000602084013e611ba6565b606091505b5050505050565b600082600003611bbf57506000610755565b6000611bcb8385612129565b905082611bd88583612140565b146119075760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610824565b600061190783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dfb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ca657611ca6612162565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d489190611ffd565b81600181518110611d5b57611d5b612162565b60200260200101906001600160a01b031690816001600160a01b031681525050611da6307f000000000000000000000000000000000000000000000000000000000000000084611007565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ad3908590600090869030904290600401612178565b60008183611e1c5760405162461bcd60e51b81526004016108249190611e29565b50600061189f8486612140565b600060208083528351808285015260005b81811015611e5657858101830151858201604001528201611e3a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e8c57600080fd5b50565b60008060408385031215611ea257600080fd5b8235611ead81611e77565b946020939093013593505050565b600080600060608486031215611ed057600080fd5b8335611edb81611e77565b92506020840135611eeb81611e77565b929592945050506040919091013590565b600060208284031215611f0e57600080fd5b813561190781611e77565b8015158114611e8c57600080fd5b60008060408385031215611f3a57600080fd5b8235611f4581611e77565b91506020830135611f5581611f19565b809150509250929050565b60008060408385031215611f7357600080fd5b8235611f7e81611e77565b91506020830135611f5581611e77565b600181811c90821680611fa257607f821691505b602082108103611fc257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561200f57600080fd5b815161190781611e77565b60008060006060848603121561202f57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561205a57600080fd5b815161190781611f19565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610755576107556120ed565b81810381811115610755576107556120ed565b8082028115828204841417610755576107556120ed565b60008261215d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121c85784516001600160a01b0316835293830193918301916001016121a3565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202aacb5f765bf4d2ac00ad35608328427ccef36856d64d2cc422011e5241d68c564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102085760003560e01c80638da5cb5b11610118578063c53d4d53116100a0578063daf4f66e1161006f578063daf4f66e14610600578063dd62ed3e14610621578063e27a55fe14610667578063e884f2601461067d578063f2fde38b1461069257600080fd5b8063c53d4d53146105a1578063c9567bf9146105c2578063cef85139146105ca578063d4c989d3146105e057600080fd5b8063a9059cbb116100e7578063a9059cbb14610501578063aa4bde2814610521578063b62496f514610537578063bd3e884114610567578063c02466681461058157600080fd5b80638da5cb5b1461048e57806395d89b41146104ac5780639a7a23d6146104c1578063a457c2d7146104e157600080fd5b806349bd5a5e1161019b578063715018a61161016a578063715018a6146103fc578063751039fc1461041357806375b6253214610428578063882c3d98146104485780638c0b5e221461047857600080fd5b806349bd5a5e146103575780634fbee193146103775780635df6e68e146103b057806370a08231146103c657600080fd5b806323b872dd116101d757806323b872dd146102da578063313ce567146102fa578063351a964d14610316578063395093511461033757600080fd5b806306fdde0314610214578063095ea7b31461023f5780631694505e1461026f57806318160ddd146102bb57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106b2565b6040516102369190611e29565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611e8f565b610744565b6040519015158152602001610236565b34801561027b57600080fd5b506102a37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b3480156102c757600080fd5b506002545b604051908152602001610236565b3480156102e657600080fd5b5061025f6102f5366004611ebb565b61075b565b34801561030657600080fd5b5060405160098152602001610236565b34801561032257600080fd5b5060075461025f90600160b01b900460ff1681565b34801561034357600080fd5b5061025f610352366004611e8f565b6107c4565b34801561036357600080fd5b506006546102a3906001600160a01b031681565b34801561038357600080fd5b5061025f610392366004611efc565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156103bc57600080fd5b506102cc600d5481565b3480156103d257600080fd5b506102cc6103e1366004611efc565b6001600160a01b031660009081526020819052604090205490565b34801561040857600080fd5b506104116107fa565b005b34801561041f57600080fd5b5061025f610877565b34801561043457600080fd5b50610411610443366004611efc565b6108b7565b34801561045457600080fd5b5061025f610463366004611efc565b60106020526000908152604090205460ff1681565b34801561048457600080fd5b506102cc600a5481565b34801561049a57600080fd5b506005546001600160a01b03166102a3565b3480156104b857600080fd5b50610229610949565b3480156104cd57600080fd5b506104116104dc366004611f27565b610958565b3480156104ed57600080fd5b5061025f6104fc366004611e8f565b610a14565b34801561050d57600080fd5b5061025f61051c366004611e8f565b610a63565b34801561052d57600080fd5b506102cc600c5481565b34801561054357600080fd5b5061025f610552366004611efc565b60116020526000908152604090205460ff1681565b34801561057357600080fd5b5060095461025f9060ff1681565b34801561058d57600080fd5b5061041161059c366004611f27565b610a70565b3480156105ad57600080fd5b5060075461025f90600160a81b900460ff1681565b610411610af9565b3480156105d657600080fd5b506102cc600b5481565b3480156105ec57600080fd5b506104116105fb366004611f27565b610e8a565b34801561060c57600080fd5b5060075461025f90600160a01b900460ff1681565b34801561062d57600080fd5b506102cc61063c366004611f60565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067357600080fd5b506102cc600e5481565b34801561068957600080fd5b5061025f610edf565b34801561069e57600080fd5b506104116106ad366004611efc565b610f1c565b6060600380546106c190611f8e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ed90611f8e565b801561073a5780601f1061070f5761010080835404028352916020019161073a565b820191906000526020600020905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b6000610751338484611007565b5060015b92915050565b600061076884848461112c565b6107ba84336107b585604051806060016040528060288152602001612210602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061186e565b611007565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107519185906107b590866118a8565b6005546001600160a01b0316331461082d5760405162461bcd60e51b815260040161082490611fc8565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146108a45760405162461bcd60e51b815260040161082490611fc8565b506007805460ff60a01b19169055600190565b6005546001600160a01b031633146108e15760405162461bcd60e51b815260040161082490611fc8565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3610927816001610a70565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546106c190611f8e565b6005546001600160a01b031633146109825760405162461bcd60e51b815260040161082490611fc8565b6006546001600160a01b0390811690831603610a065760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610824565b610a10828261190e565b5050565b600061075133846107b585604051806060016040528060258152602001612238602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061186e565b600061075133848461112c565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161082490611fc8565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b235760405162461bcd60e51b815260040161082490611fc8565b6007805460ff60a01b191690556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163c45a01559160048083019260209291908290030181865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190611ffd565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190611ffd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbb9190611ffd565b600680546001600160a01b0319166001600160a01b03929092169182179055610ce590600161190e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610d35306001600160a01b031660009081526020819052604090205490565b600080610d4a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610db2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610dd7919061201a565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301526000196024830152909116915063095ea7b3906044016020604051808303816000875af1158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e729190612048565b506007805461ffff60a01b191661010160a01b179055565b6005546001600160a01b03163314610eb45760405162461bcd60e51b815260040161082490611fc8565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f0c5760405162461bcd60e51b815260040161082490611fc8565b506009805460ff19169055600190565b6005546001600160a01b03163314610f465760405162461bcd60e51b815260040161082490611fc8565b6001600160a01b038116610fab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610824565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610824565b6001600160a01b0382166110ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610824565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111525760405162461bcd60e51b815260040161082490612065565b6001600160a01b0382166111785760405162461bcd60e51b8152600401610824906120aa565b6005546001600160a01b03848116911614806111a157506005546001600160a01b038381169116145b806111aa575080155b156111bf576111ba838383611981565b505050565b600754600160a01b900460ff161561164f576005546001600160a01b038481169116148015906111fd57506005546001600160a01b03838116911614155b801561121157506001600160a01b03821615155b801561122857506001600160a01b03821661dead14155b801561123e5750600654600160a01b900460ff16155b1561164f57600754600160a81b900460ff166112d8576001600160a01b0383166000908152600f602052604090205460ff168061129357506001600160a01b0382166000908152600f602052604090205460ff165b6112d85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610824565b60095460ff16156113fb576005546001600160a01b0383811691161480159061133357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561134d57506006546001600160a01b03838116911614155b156113fb573260009081526008602052604090205443116113e85760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610824565b3260009081526008602052604090204390555b6001600160a01b03831660009081526011602052604090205460ff16801561143c57506001600160a01b03821660009081526010602052604090205460ff16155b1561151757600a548111156114a85760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b6064820152608401610824565b600c546001600160a01b0383166000908152602081905260409020546114ce9083612103565b11156115125760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610824565b61164f565b6001600160a01b03821660009081526011602052604090205460ff16801561155857506001600160a01b03831660009081526010602052604090205460ff16155b156115c557600a548111156115125760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b6064820152608401610824565b6001600160a01b03821660009081526010602052604090205460ff1661164f57600c546001600160a01b03831660009081526020819052604090205461160b9083612103565b111561164f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610824565b306000908152602081905260409020546116698484611a8a565b600b54811080159081906116865750600754600160b01b900460ff165b801561169c5750600654600160a01b900460ff16155b80156116c157506001600160a01b03851660009081526011602052604090205460ff16155b80156116e657506001600160a01b0385166000908152600f602052604090205460ff16155b801561170b57506001600160a01b0384166000908152600f602052604090205460ff16155b15611739576006805460ff60a01b1916600160a01b17905561172b611b09565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152600f602052604090205460ff600160a01b90920482161591168061178757506001600160a01b0385166000908152600f602052604090205460ff165b15611790575060005b6000811561185a576001600160a01b03861660009081526011602052604090205460ff1680156117c257506000600e54115b156117ee576117e760646117e1600e5488611bad90919063ffffffff16565b90611c2f565b905061183a565b6001600160a01b03871660009081526011602052604090205460ff16801561181857506000600d54115b1561183a5761183760646117e1600d5488611bad90919063ffffffff16565b90505b801561184d5761184d8761dead83611981565b6118578186612116565b94505b611865878787611981565b50505050505050565b600081848411156118925760405162461bcd60e51b81526004016108249190611e29565b50600061189f8486612116565b95945050505050565b6000806118b58385612103565b9050838110156119075760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610824565b9392505050565b6001600160a01b038281166000908152601160205260409020805460ff191683151517905560075461194591849116600019611007565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166119a75760405162461bcd60e51b815260040161082490612065565b6001600160a01b0382166119cd5760405162461bcd60e51b8152600401610824906120aa565b611a0a816040518060600160405280602681526020016121ea602691396001600160a01b038616600090815260208190526040902054919061186e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a3990826118a8565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161111f565b600754604051634feac3b560e11b81526001600160a01b03848116600483015283811660248301526000604483015230606483015242608483015290911690639fd5876a9060a4015b600060405180830381600087803b158015611aed57600080fd5b505af1158015611b01573d6000803e3d6000fd5b505050505050565b3060009081526020819052604081205490818103611b25575050565b600b54611b33906014612129565b821115611b4b57600b54611b48906014612129565b91505b611b5482611c71565b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ba1576040519150601f19603f3d011682016040523d82523d6000602084013e611ba6565b606091505b5050505050565b600082600003611bbf57506000610755565b6000611bcb8385612129565b905082611bd88583612140565b146119075760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610824565b600061190783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dfb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ca657611ca6612162565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d489190611ffd565b81600181518110611d5b57611d5b612162565b60200260200101906001600160a01b031690816001600160a01b031681525050611da6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611007565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ad3908590600090869030904290600401612178565b60008183611e1c5760405162461bcd60e51b81526004016108249190611e29565b50600061189f8486612140565b600060208083528351808285015260005b81811015611e5657858101830151858201604001528201611e3a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e8c57600080fd5b50565b60008060408385031215611ea257600080fd5b8235611ead81611e77565b946020939093013593505050565b600080600060608486031215611ed057600080fd5b8335611edb81611e77565b92506020840135611eeb81611e77565b929592945050506040919091013590565b600060208284031215611f0e57600080fd5b813561190781611e77565b8015158114611e8c57600080fd5b60008060408385031215611f3a57600080fd5b8235611f4581611e77565b91506020830135611f5581611f19565b809150509250929050565b60008060408385031215611f7357600080fd5b8235611f7e81611e77565b91506020830135611f5581611e77565b600181811c90821680611fa257607f821691505b602082108103611fc257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561200f57600080fd5b815161190781611e77565b60008060006060848603121561202f57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561205a57600080fd5b815161190781611f19565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610755576107556120ed565b81810381811115610755576107556120ed565b8082028115828204841417610755576107556120ed565b60008261215d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121c85784516001600160a01b0316835293830193918301916001016121a3565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202aacb5f765bf4d2ac00ad35608328427ccef36856d64d2cc422011e5241d68c564736f6c63430008130033

Deployed Bytecode Sourcemap

21258:10320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4510:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6683:169;;;;;;;;;;-1:-1:-1;6683:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;6683:169:0;1023:187:1;21333:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;21333:51:0;1215:229:1;5632:108:0;;;;;;;;;;-1:-1:-1;5720:12:0;;5632:108;;;1595:25:1;;;1583:2;1568:18;5632:108:0;1449:177:1;7335:355:0;;;;;;;;;;-1:-1:-1;7335:355:0;;;;;:::i;:::-;;:::i;5474:92::-;;;;;;;;;;-1:-1:-1;5474:92:0;;5557:1;2234:36:1;;2222:2;2207:18;5474:92:0;2092:184:1;21583:33:0;;;;;;;;;;-1:-1:-1;21583:33:0;;;;-1:-1:-1;;;21583:33:0;;;;;;8100:218;;;;;;;;;;-1:-1:-1;8100:218:0;;;;;:::i;:::-;;:::i;21391:28::-;;;;;;;;;;-1:-1:-1;21391:28:0;;;;-1:-1:-1;;;;;21391:28:0;;;24673:125;;;;;;;;;;-1:-1:-1;24673:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;24762:28:0;24738:4;24762:28;;;:19;:28;;;;;;;;;24673:125;21971:26;;;;;;;;;;;;;;;;5804:127;;;;;;;;;;-1:-1:-1;5804:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;5905:18:0;5878:7;5905:18;;;;;;;;;;;;5804:127;20575:148;;;;;;;;;;;;;:::i;:::-;;30775:120;;;;;;;;;;;;;:::i;24448:215::-;;;;;;;;;;-1:-1:-1;24448:215:0;;;;;:::i;:::-;;:::i;22185:49::-;;;;;;;;;;-1:-1:-1;22185:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21857:26;;;;;;;;;;;;;;;;19931:79;;;;;;;;;;-1:-1:-1;19996:6:0;;-1:-1:-1;;;;;19996:6:0;19931:79;;4730:104;;;;;;;;;;;;;:::i;23951:245::-;;;;;;;;;;-1:-1:-1;23951:245:0;;;;;:::i;:::-;;:::i;8822:269::-;;;;;;;;;;-1:-1:-1;8822:269:0;;;;;:::i;:::-;;:::i;6145:175::-;;;;;;;;;;-1:-1:-1;6145:175:0;;;;;:::i;:::-;;:::i;21931:30::-;;;;;;;;;;;;;;;;22393:58;;;;;;;;;;-1:-1:-1;22393:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21806:41;;;;;;;;;;-1:-1:-1;21806:41:0;;;;;;;;30013:182;;;;;;;;;;-1:-1:-1;30013:182:0;;;;;:::i;:::-;;:::i;21541:35::-;;;;;;;;;;-1:-1:-1;21541:35:0;;;;-1:-1:-1;;;21541:35:0;;;;;;29025:556;;;:::i;21890:34::-;;;;;;;;;;;;;;;;29884:120;;;;;;;;;;-1:-1:-1;29884:120:0;;;;;:::i;:::-;;:::i;21501:33::-;;;;;;;;;;-1:-1:-1;21501:33:0;;;;-1:-1:-1;;;21501:33:0;;;;;;6384:151;;;;;;;;;;-1:-1:-1;6384:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;6500:18:0;;;6473:7;6500:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6384:151;22005:27;;;;;;;;;;;;;;;;30957:136;;;;;;;;;;;;;:::i;20879:244::-;;;;;;;;;;-1:-1:-1;20879:244:0;;;;;:::i;:::-;;:::i;4510:100::-;4564:13;4597:5;4590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4510:100;:::o;6683:169::-;6766:4;6783:39;308:10;6806:7;6815:6;6783:8;:39::i;:::-;-1:-1:-1;6840:4:0;6683:169;;;;;:::o;7335:355::-;7475:4;7492:36;7502:6;7510:9;7521:6;7492:9;:36::i;:::-;7539:121;7548:6;308:10;7570:89;7608:6;7570:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7570:19:0;;;;;;:11;:19;;;;;;;;308:10;7570:33;;;;;;;;;;:37;:89::i;:::-;7539:8;:121::i;:::-;-1:-1:-1;7678:4:0;7335:355;;;;;:::o;8100:218::-;308:10;8188:4;8237:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8237:34:0;;;;;;;;;;8188:4;;8205:83;;8228:7;;8237:50;;8276:10;8237:38;:50::i;20575:148::-;20144:6;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;;;;;;;;;20666:6:::1;::::0;20645:40:::1;::::0;20682:1:::1;::::0;-1:-1:-1;;;;;20666:6:0::1;::::0;20645:40:::1;::::0;20682:1;;20645:40:::1;20696:6;:19:::0;;-1:-1:-1;;;;;;20696:19:0::1;::::0;;20575:148::o;30775:120::-;20144:6;;30827:4;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;-1:-1:-1;30843:14:0::1;:22:::0;;-1:-1:-1;;;;30843:22:0::1;::::0;;;30775:120;:::o;24448:215::-;20144:6;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;24562:15:::1;::::0;24530:48:::1;::::0;-1:-1:-1;;;;;24562:15:0;;::::1;::::0;24530:48;::::1;::::0;::::1;::::0;24562:15:::1;::::0;24530:48:::1;24589:30;24605:7;24614:4;24589:15;:30::i;:::-;24630:15;:25:::0;;-1:-1:-1;;;;;;24630:25:0::1;-1:-1:-1::0;;;;;24630:25:0;;;::::1;::::0;;;::::1;::::0;;24448:215::o;4730:104::-;4786:13;4819:7;4812:14;;;;;:::i;23951:245::-;20144:6;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;24058:13:::1;::::0;-1:-1:-1;;;;;24058:13:0;;::::1;24050:21:::0;;::::1;::::0;24042:91:::1;;;::::0;-1:-1:-1;;;24042:91:0;;4592:2:1;24042:91:0::1;::::0;::::1;4574:21:1::0;4631:2;4611:18;;;4604:30;4670:34;4650:18;;;4643:62;4741:27;4721:18;;;4714:55;4786:19;;24042:91:0::1;4390:421:1::0;24042:91:0::1;24147:41;24176:4;24182:5;24147:28;:41::i;:::-;23951:245:::0;;:::o;8822:269::-;8915:4;8932:129;308:10;8955:7;8964:96;9003:15;8964:96;;;;;;;;;;;;;;;;;308:10;8964:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8964:34:0;;;;;;;;;;;;:38;:96::i;6145:175::-;6231:4;6248:42;308:10;6272:9;6283:6;6248:9;:42::i;30013:182::-;20144:6;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30098:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30098:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30153:34;;1163:41:1;;;30153:34:0::1;::::0;1136:18:1;30153:34:0::1;;;;;;;30013:182:::0;;:::o;29025:556::-;20144:6;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;29086:14:::1;:22:::0;;-1:-1:-1;;;;29086:22:0::1;::::0;;29153:25:::1;::::0;;-1:-1:-1;;;29153:25:0;;;;-1:-1:-1;;;;;29153:15:0::1;:23;::::0;::::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:23;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29135:55:0::1;;29199:4;29206:15;-1:-1:-1::0;;;;;29206:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29135:94;::::0;-1:-1:-1;;;;;;29135:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5302:15:1;;;29135:94:0::1;::::0;::::1;5284:34:1::0;5354:15;;5334:18;;;5327:43;5219:18;;29135:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29119:13;:110:::0;;-1:-1:-1;;;;;;29119:110:0::1;-1:-1:-1::0;;;;;29119:110:0;;;::::1;::::0;;::::1;::::0;;29240:58:::1;::::0;-1:-1:-1;29240:28:0::1;:58::i;:::-;29309:15;-1:-1:-1::0;;;;;29309:31:0::1;;29348:9;29367:4;29373:24;29391:4;-1:-1:-1::0;;;;;5905:18:0;5878:7;5905:18;;;;;;;;;;;;5804:127;29373:24:::1;29398:1;29400::::0;29402:7:::1;19996:6:::0;;-1:-1:-1;;;;;19996:6:0;;19931:79;29402:7:::1;29309:117;::::0;::::1;::::0;;;-1:-1:-1;;;;;;29309:117:0;;;-1:-1:-1;;;;;5740:15:1;;;29309:117:0::1;::::0;::::1;5722:34:1::0;5772:18;;;5765:34;;;;5815:18;;;5808:34;;;;5858:18;;;5851:34;5922:15;;;5901:19;;;5894:44;29410:15:0::1;5954:19:1::0;;;5947:35;5656:19;;29309:117:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29444:13:0::1;::::0;29437:71:::1;::::0;-1:-1:-1;;;29437:71:0;;-1:-1:-1;;;;;29475:15:0::1;6496:32:1::0;;29437:71:0::1;::::0;::::1;6478:51:1::0;-1:-1:-1;;6545:18:1;;;6538:34;29444:13:0;;::::1;::::0;-1:-1:-1;29437:29:0::1;::::0;6451:18:1;;29437:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;29519:14:0::1;:21:::0;;-1:-1:-1;;;;29551:22:0;-1:-1:-1;;;29551:22:0;;;29025:556::o;29884:120::-;20144:6;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29965:24:0;;;::::1;;::::0;;;:16:::1;:24;::::0;;;;:31;;-1:-1:-1;;29965:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29884:120::o;30957:136::-;20144:6;;31017:4;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;-1:-1:-1;31033:22:0::1;:30:::0;;-1:-1:-1;;31033:30:0::1;::::0;;;30957:136;:::o;20879:244::-;20144:6;;-1:-1:-1;;;;;20144:6:0;308:10;20144:22;20136:67;;;;-1:-1:-1;;;20136:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20968:22:0;::::1;20960:73;;;::::0;-1:-1:-1;;;20960:73:0;;7035:2:1;20960:73:0::1;::::0;::::1;7017:21:1::0;7074:2;7054:18;;;7047:30;7113:34;7093:18;;;7086:62;-1:-1:-1;;;7164:18:1;;;7157:36;7210:19;;20960:73:0::1;6833:402:1::0;20960:73:0::1;21070:6;::::0;21049:38:::1;::::0;-1:-1:-1;;;;;21049:38:0;;::::1;::::0;21070:6:::1;::::0;21049:38:::1;::::0;21070:6:::1;::::0;21049:38:::1;21098:6;:17:::0;;-1:-1:-1;;;;;;21098:17:0::1;-1:-1:-1::0;;;;;21098:17:0;;;::::1;::::0;;;::::1;::::0;;20879:244::o;12018:381::-;-1:-1:-1;;;;;12154:19:0;;12146:68;;;;-1:-1:-1;;;12146:68:0;;7442:2:1;12146:68:0;;;7424:21:1;7481:2;7461:18;;;7454:30;7520:34;7500:18;;;7493:62;-1:-1:-1;;;7571:18:1;;;7564:34;7615:19;;12146:68:0;7240:400:1;12146:68:0;-1:-1:-1;;;;;12233:21:0;;12225:68;;;;-1:-1:-1;;;12225:68:0;;7847:2:1;12225:68:0;;;7829:21:1;7886:2;7866:18;;;7859:30;7925:34;7905:18;;;7898:62;-1:-1:-1;;;7976:18:1;;;7969:32;8018:19;;12225:68:0;7645:398:1;12225:68:0;-1:-1:-1;;;;;12307:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12359:32;;1595:25:1;;;12359:32:0;;1568:18:1;12359:32:0;;;;;;;;12018:381;;;:::o;24807:3608::-;-1:-1:-1;;;;;24939:18:0;;24931:68;;;;-1:-1:-1;;;24931:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25018:16:0;;25010:64;;;;-1:-1:-1;;;25010:64:0;;;;;;;:::i;:::-;19996:6;;-1:-1:-1;;;;;25099:15:0;;;19996:6;;25099:15;;:32;;-1:-1:-1;19996:6:0;;-1:-1:-1;;;;;25118:13:0;;;19996:6;;25118:13;25099:32;:47;;;-1:-1:-1;25135:11:0;;25099:47;25095:134;;;25163:33;25179:4;25185:2;25189:6;25163:15;:33::i;:::-;24807:3608;;;:::o;25095:134::-;25245:14;;-1:-1:-1;;;25245:14:0;;;;25242:1746;;;19996:6;;-1:-1:-1;;;;;25297:15:0;;;19996:6;;25297:15;;;;:49;;-1:-1:-1;19996:6:0;;-1:-1:-1;;;;;25333:13:0;;;19996:6;;25333:13;;25297:49;:86;;;;-1:-1:-1;;;;;;25367:16:0;;;;25297:86;:128;;;;-1:-1:-1;;;;;;25404:21:0;;25418:6;25404:21;;25297:128;:158;;;;-1:-1:-1;25447:8:0;;-1:-1:-1;;;25447:8:0;;;;25446:9;25297:158;25275:1702;;;25493:15;;-1:-1:-1;;;25493:15:0;;;;25489:150;;-1:-1:-1;;;;;25540:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;25569:23:0;;;;;;:19;:23;;;;;;;;25540:52;25532:87;;;;-1:-1:-1;;;25532:87:0;;9060:2:1;25532:87:0;;;9042:21:1;9099:2;9079:18;;;9072:30;-1:-1:-1;;;9118:18:1;;;9111:52;9180:18;;25532:87:0;8858:346:1;25532:87:0;25798:22;;;;25794:425;;;19996:6;;-1:-1:-1;;;;;25848:13:0;;;19996:6;;25848:13;;;;:47;;;25879:15;-1:-1:-1;;;;;25865:30:0;:2;-1:-1:-1;;;;;25865:30:0;;;25848:47;:79;;;;-1:-1:-1;25913:13:0;;-1:-1:-1;;;;;25899:28:0;;;25913:13;;25899:28;;25848:79;25844:356;;;25992:9;25963:39;;;;:28;:39;;;;;;26005:12;-1:-1:-1;25955:140:0;;;;-1:-1:-1;;;25955:140:0;;9411:2:1;25955:140:0;;;9393:21:1;9450:2;9430:18;;;9423:30;9489:34;9469:18;;;9462:62;9560:34;9540:18;;;9533:62;-1:-1:-1;;;9611:19:1;;;9604:40;9661:19;;25955:140:0;9209:477:1;25955:140:0;26151:9;26122:39;;;;:28;:39;;;;;26164:12;26122:54;;25844:356;-1:-1:-1;;;;;26272:31:0;;;;;;:25;:31;;;;;;;;:56;;;;-1:-1:-1;;;;;;26308:20:0;;;;;;:16;:20;;;;;;;;26307:21;26272:56;26268:694;;;26375:11;;26365:6;:21;;26357:78;;;;-1:-1:-1;;;26357:78:0;;9893:2:1;26357:78:0;;;9875:21:1;9932:2;9912:18;;;9905:30;9971:34;9951:18;;;9944:62;-1:-1:-1;;;10022:18:1;;;10015:42;10074:19;;26357:78:0;9691:408:1;26357:78:0;26496:15;;-1:-1:-1;;;;;5905:18:0;;5878:7;5905:18;;;;;;;;;;;26470:22;;:6;:22;:::i;:::-;:41;;26462:73;;;;-1:-1:-1;;;26462:73:0;;10568:2:1;26462:73:0;;;10550:21:1;10607:2;10587:18;;;10580:30;-1:-1:-1;;;10626:18:1;;;10619:49;10685:18;;26462:73:0;10366:343:1;26462:73:0;26268:694;;;-1:-1:-1;;;;;26614:29:0;;;;;;:25;:29;;;;;;;;:56;;;;-1:-1:-1;;;;;;26648:22:0;;;;;;:16;:22;;;;;;;;26647:23;26614:56;26610:352;;;26717:11;;26707:6;:21;;26699:79;;;;-1:-1:-1;;;26699:79:0;;10916:2:1;26699:79:0;;;10898:21:1;10955:2;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;-1:-1:-1;;;11045:18:1;;;11038:43;11098:19;;26699:79:0;10714:409:1;26610:352:0;-1:-1:-1;;;;;26825:20:0;;;;;;:16;:20;;;;;;;;26821:141;;26903:15;;-1:-1:-1;;;;;5905:18:0;;5878:7;5905:18;;;;;;;;;;;26877:22;;:6;:22;:::i;:::-;:41;;26869:73;;;;-1:-1:-1;;;26869:73:0;;10568:2:1;26869:73:0;;;10550:21:1;10607:2;10587:18;;;10580:30;-1:-1:-1;;;10626:18:1;;;10619:49;10685:18;;26869:73:0;10366:343:1;26869:73:0;27053:4;27004:28;5905:18;;;;;;;;;;;27070:25;27086:4;27092:2;27070:15;:25::i;:::-;27146:19;;27122:43;;;;;;;27195:37;;-1:-1:-1;27219:13:0;;-1:-1:-1;;;27219:13:0;;;;27195:37;:63;;;;-1:-1:-1;27250:8:0;;-1:-1:-1;;;27250:8:0;;;;27249:9;27195:63;:112;;;;-1:-1:-1;;;;;;27276:31:0;;;;;;:25;:31;;;;;;;;27275:32;27195:112;:155;;;;-1:-1:-1;;;;;;27325:25:0;;;;;;:19;:25;;;;;;;;27324:26;27195:155;:196;;;;-1:-1:-1;;;;;;27368:23:0;;;;;;:19;:23;;;;;;;;27367:24;27195:196;27177:330;;;27418:8;:15;;-1:-1:-1;;;;27418:15:0;-1:-1:-1;;;27418:15:0;;;27451:10;:8;:10::i;:::-;27479:8;:16;;-1:-1:-1;;;;27479:16:0;;;27177:330;27536:8;;-1:-1:-1;;;;;27646:25:0;;27520:12;27646:25;;;:19;:25;;;;;;27536:8;-1:-1:-1;;;27536:8:0;;;;;27535:9;;27646:25;;:52;;-1:-1:-1;;;;;;27675:23:0;;;;;;:19;:23;;;;;;;;27646:52;27643:99;;;-1:-1:-1;27725:5:0;27643:99;27755:12;27859:7;27856:505;;;-1:-1:-1;;;;;27910:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;27958:1;27943:12;;:16;27910:49;27906:300;;;27986:33;28015:3;27986:24;27997:12;;27986:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;27979:40;;27906:300;;;-1:-1:-1;;;;;28080:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;28129:1;28115:11;;:15;28080:50;28077:129;;;28158:32;28186:3;28158:23;28169:11;;28158:6;:10;;:23;;;;:::i;:32::-;28151:39;;28077:129;28226:8;;28223:95;;28258:44;28274:4;28288:6;28297:4;28258:15;:44::i;:::-;28335:14;28345:4;28335:14;;:::i;:::-;;;27856:505;28374:33;28390:4;28396:2;28400:6;28374:15;:33::i;:::-;24920:3495;;;;24807:3608;;;:::o;14305:193::-;14391:7;14427:12;14419:6;;;;14411:29;;;;-1:-1:-1;;;14411:29:0;;;;;;;;:::i;:::-;-1:-1:-1;14451:9:0;14463:5;14467:1;14463;:5;:::i;:::-;14451:17;14305:193;-1:-1:-1;;;;;14305:193:0:o;13399:182::-;13457:7;;13489:5;13493:1;13489;:5;:::i;:::-;13477:17;;13518:1;13513;:6;;13505:46;;;;-1:-1:-1;;;13505:46:0;;11463:2:1;13505:46:0;;;11445:21:1;11502:2;11482:18;;;11475:30;11541:29;11521:18;;;11514:57;11588:18;;13505:46:0;11261:351:1;13505:46:0;13572:1;13399:182;-1:-1:-1;;;13399:182:0:o;24205:234::-;-1:-1:-1;;;;;24288:31:0;;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;24288:39:0;;;;;;;24343:15;;24328:44;;24288:31;;24343:15;-1:-1:-1;;24328:8:0;:44::i;:::-;24391:40;;;;;;-1:-1:-1;;;;;24391:40:0;;;;;;;;24205:234;;:::o;9582:575::-;-1:-1:-1;;;;;9722:20:0;;9714:70;;;;-1:-1:-1;;;9714:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9803:23:0;;9795:71;;;;-1:-1:-1;;;9795:71:0;;;;;;;:::i;:::-;9961;9983:6;9961:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9961:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9941:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10066:20;;;;;;;:32;;10091:6;10066:24;:32::i;:::-;-1:-1:-1;;;;;10043:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10114:35;1595:25:1;;;10043:20:0;;10114:35;;;;;;1568:18:1;10114:35:0;1449:177:1;29591:285:0;29680:15;;29661:207;;-1:-1:-1;;;29661:207:0;;-1:-1:-1;;;;;11940:15:1;;;29661:207:0;;;11922:34:1;11992:15;;;11972:18;;;11965:43;29680:15:0;12024:18:1;;;12017:34;29822:4:0;12067:18:1;;;12060:43;29842:15:0;12119:19:1;;;12112:35;29680:15:0;;;;29661:86;;11856:19:1;;29661:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29591:285;;:::o;31102:432::-;31185:4;31141:23;5905:18;;;;;;;;;;;;31231:20;;;31228:34;;31254:7;;31102:432::o;31228:34::-;31296:19;;:24;;31318:2;31296:24;:::i;:::-;31278:15;:42;31275:113;;;31352:19;;:24;;31374:2;31352:24;:::i;:::-;31334:42;;31275:113;31401:33;31418:15;31401:16;:33::i;:::-;31471:15;;31463:63;;-1:-1:-1;;;;;31471:15:0;;;;31500:21;;31463:63;;;;31500:21;31471:15;31463:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31102:432:0:o;14758:473::-;14816:7;15061:1;15066;15061:6;15057:47;;-1:-1:-1;15091:1:0;15084:8;;15057:47;15117:9;15129:5;15133:1;15129;:5;:::i;:::-;15117:17;-1:-1:-1;15162:1:0;15153:5;15157:1;15117:17;15153:5;:::i;:::-;:10;15145:56;;;;-1:-1:-1;;;15145:56:0;;12965:2:1;15145:56:0;;;12947:21:1;13004:2;12984:18;;;12977:30;13043:34;13023:18;;;13016:62;-1:-1:-1;;;13094:18:1;;;13087:31;13135:19;;15145:56:0;12763:397:1;15708:132:0;15766:7;15793:39;15797:1;15800;15793:39;;;;;;;;;;;;;;;;;:3;:39::i;28423:594::-;28576:16;;;28590:1;28576:16;;;;;;;;28552:21;;28576:16;;;;;;;;;;-1:-1:-1;28576:16:0;28552:40;;28621:4;28603;28608:1;28603:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;28603:23:0;;;-1:-1:-1;;;;;28603:23:0;;;;;28647:15;-1:-1:-1;;;;;28647:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28637:4;28642:1;28637:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;28637:32:0;;;-1:-1:-1;;;;;28637:32:0;;;;;28683:62;28700:4;28715:15;28733:11;28683:8;:62::i;:::-;28785:224;;-1:-1:-1;;;28785:224:0;;-1:-1:-1;;;;;28785:15:0;:66;;;;:224;;28866:11;;28892:1;;28936:4;;28963;;28983:15;;28785:224;;;:::i;16337:279::-;16423:7;16458:12;16451:5;16443:28;;;;-1:-1:-1;;;16443:28:0;;;;;;;;:::i;:::-;-1:-1:-1;16482:9:0;16494:5;16498:1;16494;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;2741:118::-;2827:5;2820:13;2813:21;2806:5;2803:32;2793:60;;2849:1;2846;2839:12;2864:382;2929:6;2937;2990:2;2978:9;2969:7;2965:23;2961:32;2958:52;;;3006:1;3003;2996:12;2958:52;3045:9;3032:23;3064:31;3089:5;3064:31;:::i;:::-;3114:5;-1:-1:-1;3171:2:1;3156:18;;3143:32;3184:30;3143:32;3184:30;:::i;:::-;3233:7;3223:17;;;2864:382;;;;;:::o;3251:388::-;3319:6;3327;3380:2;3368:9;3359:7;3355:23;3351:32;3348:52;;;3396:1;3393;3386:12;3348:52;3435:9;3422:23;3454:31;3479:5;3454:31;:::i;:::-;3504:5;-1:-1:-1;3561:2:1;3546:18;;3533:32;3574:33;3533:32;3574:33;:::i;3644:380::-;3723:1;3719:12;;;;3766;;;3787:61;;3841:4;3833:6;3829:17;3819:27;;3787:61;3894:2;3886:6;3883:14;3863:18;3860:38;3857:161;;3940:10;3935:3;3931:20;3928:1;3921:31;3975:4;3972:1;3965:15;4003:4;4000:1;3993:15;3857:161;;3644:380;;;:::o;4029:356::-;4231:2;4213:21;;;4250:18;;;4243:30;4309:34;4304:2;4289:18;;4282:62;4376:2;4361:18;;4029:356::o;4816:251::-;4886:6;4939:2;4927:9;4918:7;4914:23;4910:32;4907:52;;;4955:1;4952;4945:12;4907:52;4987:9;4981:16;5006:31;5031:5;5006:31;:::i;5993:306::-;6081:6;6089;6097;6150:2;6138:9;6129:7;6125:23;6121:32;6118:52;;;6166:1;6163;6156:12;6118:52;6195:9;6189:16;6179:26;;6245:2;6234:9;6230:18;6224:25;6214:35;;6289:2;6278:9;6274:18;6268:25;6258:35;;5993:306;;;;;:::o;6583:245::-;6650:6;6703:2;6691:9;6682:7;6678:23;6674:32;6671:52;;;6719:1;6716;6709:12;6671:52;6751:9;6745:16;6770:28;6792:5;6770:28;:::i;8048:401::-;8250:2;8232:21;;;8289:2;8269:18;;;8262:30;8328:34;8323:2;8308:18;;8301:62;-1:-1:-1;;;8394:2:1;8379:18;;8372:35;8439:3;8424:19;;8048:401::o;8454:399::-;8656:2;8638:21;;;8695:2;8675:18;;;8668:30;8734:34;8729:2;8714:18;;8707:62;-1:-1:-1;;;8800:2:1;8785:18;;8778:33;8843:3;8828:19;;8454:399::o;10104:127::-;10165:10;10160:3;10156:20;10153:1;10146:31;10196:4;10193:1;10186:15;10220:4;10217:1;10210:15;10236:125;10301:9;;;10322:10;;;10319:36;;;10335:18;;:::i;11128:128::-;11195:9;;;11216:11;;;11213:37;;;11230:18;;:::i;12158:168::-;12231:9;;;12262;;12279:15;;;12273:22;;12259:37;12249:71;;12300:18;;:::i;12541:217::-;12581:1;12607;12597:132;;12651:10;12646:3;12642:20;12639:1;12632:31;12686:4;12683:1;12676:15;12714:4;12711:1;12704:15;12597:132;-1:-1:-1;12743:9:1;;12541:217::o;13297:127::-;13358:10;13353:3;13349:20;13346:1;13339:31;13389:4;13386:1;13379:15;13413:4;13410:1;13403:15;13429:980;13691:4;13739:3;13728:9;13724:19;13770:6;13759:9;13752:25;13796:2;13834:6;13829:2;13818:9;13814:18;13807:34;13877:3;13872:2;13861:9;13857:18;13850:31;13901:6;13936;13930:13;13967:6;13959;13952:22;14005:3;13994:9;13990:19;13983:26;;14044:2;14036:6;14032:15;14018:29;;14065:1;14075:195;14089:6;14086:1;14083:13;14075:195;;;14154:13;;-1:-1:-1;;;;;14150:39:1;14138:52;;14245:15;;;;14210:12;;;;14186:1;14104:9;14075:195;;;-1:-1:-1;;;;;;;14326:32:1;;;;14321:2;14306:18;;14299:60;-1:-1:-1;;;14390:3:1;14375:19;14368:35;14287:3;13429:980;-1:-1:-1;;;13429:980:1:o

Swarm Source

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