ETH Price: $2,964.71 (-1.84%)
Gas: 3 Gwei

Token

Dark Protocol (DARK)
 

Overview

Max Total Supply

1,000,000,000 DARK

Holders

149

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
354,686.012650100928622693 DARK

Value
$0.00
0x3f1867f5105c4cf0ad4e91cde4775f2ce4499d17
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:
DARK

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/

// SPDX-License-Identifier: Unlicensed

/*
▓█████▄  ▄▄▄       ██▀███   ██ ▄█▀    ██▓███   ██▀███   ▒█████  ▄▄▄█████▓ ▒█████   ▄████▄   ▒█████   ██▓    
▒██▀ ██▌▒████▄    ▓██ ▒ ██▒ ██▄█▒    ▓██░  ██▒▓██ ▒ ██▒▒██▒  ██▒▓  ██▒ ▓▒▒██▒  ██▒▒██▀ ▀█  ▒██▒  ██▒▓██▒    
░██   █▌▒██  ▀█▄  ▓██ ░▄█ ▒▓███▄░    ▓██░ ██▓▒▓██ ░▄█ ▒▒██░  ██▒▒ ▓██░ ▒░▒██░  ██▒▒▓█    ▄ ▒██░  ██▒▒██░    
░▓█▄   ▌░██▄▄▄▄██ ▒██▀▀█▄  ▓██ █▄    ▒██▄█▓▒ ▒▒██▀▀█▄  ▒██   ██░░ ▓██▓ ░ ▒██   ██░▒▓▓▄ ▄██▒▒██   ██░▒██░    
░▒████▓  ▓█   ▓██▒░██▓ ▒██▒▒██▒ █▄   ▒██▒ ░  ░░██▓ ▒██▒░ ████▓▒░  ▒██▒ ░ ░ ████▓▒░▒ ▓███▀ ░░ ████▓▒░░██████▒
 ▒▒▓  ▒  ▒▒   ▓▒█░░ ▒▓ ░▒▓░▒ ▒▒ ▓▒   ▒▓▒░ ░  ░░ ▒▓ ░▒▓░░ ▒░▒░▒░   ▒ ░░   ░ ▒░▒░▒░ ░ ░▒ ▒  ░░ ▒░▒░▒░ ░ ▒░▓  ░
 ░ ▒  ▒   ▒   ▒▒ ░  ░▒ ░ ▒░░ ░▒ ▒░   ░▒ ░       ░▒ ░ ▒░  ░ ▒ ▒░     ░      ░ ▒ ▒░   ░  ▒     ░ ▒ ▒░ ░ ░ ▒  ░
 ░ ░  ░   ░   ▒     ░░   ░ ░ ░░ ░    ░░         ░░   ░ ░ ░ ░ ▒    ░      ░ ░ ░ ▒  ░        ░ ░ ░ ▒    ░ ░   
   ░          ░  ░   ░     ░  ░                  ░         ░ ░               ░ ░  ░ ░          ░ ░      ░  ░
 ░                                                                                ░                         

Website: https://www.dark-protocol.com/
Twitter: https://twitter.com/DarkProtocolERC
TG: https://t.me/DarkProtocolPortal

*/

pragma solidity 0.8.17;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using this function
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _createSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

     /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }


    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    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(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

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

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

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

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

contract DARK is ERC20, Ownable {
    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 public swapTokensAtAmount = 5000000 * (10**18); // 0.5%
    uint256 public maxTransactionAmount = 20000000 * (10**18); // 2%
    uint256 public maxWalletToken = 30000000 * (10**18); // 3%

    uint256 public liquidityBuyFee = 1;
    uint256 public marketingBuyFee = 4;
    uint256 public teamBuyFee = 2;
    uint256 public burnBuyFee = 0;
    uint256 private totalBuyFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee;

    uint256 public liquiditySellFee = 1;
    uint256 public marketingSellFee = 13;
    uint256 public teamSellFee = 5;
    uint256 public burnSellFee = 0;
    uint256 private totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee;

    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    address payable public marketingWallet = payable(0x9B902Fb60C2AEc9A3B09C4841F1D1Ac56cA5Eaac);
    address payable public teamWallet = payable(0xeFdDA292e2cbA7FB09EFd9EED057eFD16b22501a);
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    // Blacklist bots
    mapping(address => bool) public _isBlacklisted;

    // exlcude from fees and max wallet
    mapping (address => bool) private _isExcludedFromFees;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived);
    event ExcludeFromFees(address indexed account, bool isExcluded);
   
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() ERC20("Dark Protocol", "DARK") {
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        // exclude from paying fees or having max wallet limit
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(teamWallet, true);
        excludeFromFees(address(this), true);
        
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createSupply(owner(), 1000000000 * (10**18));
    }

    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");
        require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address');

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(amount <= maxTransactionAmount, "amount must be less than or equal to maxTx limit");
        }

        if(from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount.");
        }

    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            to==uniswapV2Pair && 
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);
        }

         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 fees;
            uint256 burnShare;
            
            if(from==uniswapV2Pair) {
                fees = amount*(totalBuyFees-burnBuyFee)/100;
                burnShare = amount*(burnBuyFee)/100;
            }

            if(to==uniswapV2Pair) {
                fees = amount*(totalSellFees-burnSellFee)/100;
                burnShare = amount*(burnSellFee)/100;
            }

            amount = amount-(fees+burnShare);

            if(burnShare > 0) {
                super._burn(from, burnShare); 
            }

            if(fees > 0) {
                super._transfer(from, address(this), fees); 
            }
             
        }

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance*liquiditySellFee/(totalSellFees-burnSellFee);
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity/2;
        uint256 otherHalf = tokensForLiquidity-half;

        // capture the contract's current ETH balance.
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); 

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance-initialBalance;

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance);

        // swap and Send ether to wallets
        swapTokensForEth(contractTokenBalance-tokensForLiquidity);
        uint256 teamShare = address(this).balance*teamSellFee/(totalSellFees-burnSellFee-liquiditySellFee);
        
        teamWallet.transfer(teamShare);
        marketingWallet.transfer(address(this).balance);
        

    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
        
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
   
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

    function updateBuyFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner {
        liquidityBuyFee = _liqFee;
        marketingBuyFee = _markFee;
        teamBuyFee = _teamFee;
        burnBuyFee = _burnFee;
        totalBuyFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee;
    }

    function updateSellFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner {
        liquiditySellFee = _liqFee;
        marketingSellFee = _markFee;
        teamSellFee = _teamFee;
        burnSellFee = _burnFee;
        totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee;
    }

    function setWallets(address payable _marketing, address payable _team) public onlyOwner {
        marketingWallet = _marketing;
        teamWallet = _team;
    }

    function setMaxTxAmount(uint256 _percent) public onlyOwner {
        require(_percent > 0 && _percent <= 100);
        maxTransactionAmount = _percent*totalSupply()/100;
    }

    function setMaxWalletLimit(uint256 _percent) public onlyOwner {
        require(_percent > 0 && _percent <= 100);
        maxWalletToken = _percent*totalSupply()/100;
    }

    function blacklistBots(address account, bool value) external onlyOwner{
        _isBlacklisted[account] = value;
    }

    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":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketing","type":"address"},{"internalType":"address payable","name":"_team","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"teamBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526a0422ca8b0a00a4250000006007556a108b2a2c280290940000006008556a18d0bf423c03d8de0000006009556001600a556004600b556002600c556000600d55600d54600c54600b54600a546200005d919062000657565b62000069919062000657565b62000075919062000657565b600e556001600f55600d60105560056011556000601255601254601154601054600f54620000a4919062000657565b620000b0919062000657565b620000bc919062000657565b60135560148054759b902fb60c2aec9a3b09c4841f1d1ac56ca5eaac0100610100600160b01b0319909116179055601580546001600160a01b031990811673efdda292e2cba7fb09efd9eed057efd16b22501a179091556016805490911661dead1790553480156200012d57600080fd5b506040518060400160405280600d81526020016c11185c9ac8141c9bdd1bd8dbdb609a1b815250604051806040016040528060048152602001634441524b60e01b815250816003908162000182919062000723565b50600462000191828262000723565b505050620001ae620001a8620003d360201b60201c565b620003d7565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e9190620007ef565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a29190620007ef565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003169190620007ef565b600680546001600160a01b0319166001600160a01b0385811691909117909155811660805290506200035c620003546005546001600160a01b031690565b600162000429565b6014546200037b906201000090046001600160a01b0316600162000429565b60155462000394906001600160a01b0316600162000429565b620003a130600162000429565b620003cb620003b86005546001600160a01b031690565b6b033b2e3c9fd0803ce80000006200056d565b505062000821565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526018602052604090205481151560ff9091161515036200050e5760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840162000480565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005c55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000480565b8060026000828254620005d9919062000657565b90915550506001600160a01b038216600090815260208190526040812080548392906200060890849062000657565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b808201808211156200067957634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006aa57607f821691505b602082108103620006cb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065257600081815260208120601f850160051c81016020861015620006fa5750805b601f850160051c820191505b818110156200071b5782815560010162000706565b505050505050565b81516001600160401b038111156200073f576200073f6200067f565b620007578162000750845462000695565b84620006d1565b602080601f8311600181146200078f5760008415620007765750858301515b600019600386901b1c1916600185901b1785556200071b565b600085815260208120601f198616915b82811015620007c0578886015182559484019460019091019084016200079f565b5085821015620007df5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200080257600080fd5b81516001600160a01b03811681146200081a57600080fd5b9392505050565b608051611fce6200085960003960008181610419015281816111ba015281816112ee0152818161139401526114120152611fce6000f3fe6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b7d565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611be0565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611c0c565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c30565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611be0565b610925565b3480156103f157600080fd5b50610405610400366004611c71565b610961565b005b34801561041357600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000000081565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611c0c565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611c0c565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c71565b6109fe565b34801561054057600080fd5b5061040561054f366004611ca3565b610a65565b34801561056057600080fd5b5061040561056f366004611ca3565b610ace565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610afd565b34801561062557600080fd5b506102ac610634366004611be0565b610b0c565b34801561064557600080fd5b506102ac610654366004611be0565b610ba5565b34801561066557600080fd5b50610405610674366004611cd1565b610bb2565b34801561068557600080fd5b50610405610694366004611cd1565b610c07565b3480156106a557600080fd5b506104056106b4366004611d06565b610d13565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d21565b610d91565b34801561071157600080fd5b506102d2610720366004611d21565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611ca3565b610df5565b3480156107b957600080fd5b506104056107c8366004611c0c565b610e5e565b6060600380546107dc90611d5a565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d5a565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610ef9565b5060015b92915050565b600061088384848461101d565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610ef9565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611daa565b610ef9565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611dbd565b600a849055600b839055600c829055600d81905580826109ab8587611daa565b6109b59190611daa565b6109bf9190611daa565b600e5550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611dbd565b6109fc60006114da565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611dbd565b600f8490556010839055601182905560128190558082610a488587611daa565b610a529190611daa565b610a5c9190611daa565b60135550505050565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610aa0575060648111155b610aa957600080fd5b6064610ab460025490565b610abe9083611df2565b610ac89190611e09565b60095550565b6005546001600160a01b03163314610af85760405162461bcd60e51b815260040161090490611dbd565b600755565b6060600480546107dc90611d5a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b9b3385858403610ef9565b5060019392505050565b600061086c33848461101d565b6005546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c315760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610cb45760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d3d5760405162461bcd60e51b815260040161090490611dbd565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d8690831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610dbb5760405162461bcd60e51b815260040161090490611dbd565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610e30575060648111155b610e3957600080fd5b6064610e4460025490565b610e4e9083611df2565b610e589190611e09565b60085550565b6005546001600160a01b03163314610e885760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b038116610eed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ef6816114da565b50565b6001600160a01b038316610f5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110435760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166110695760405162461bcd60e51b815260040161090490611e70565b6001600160a01b03831660009081526017602052604090205460ff161580156110ab57506001600160a01b03821660009081526017602052604090205460ff16155b6110ed5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b80600003611106576111018383600061152c565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561114857506001600160a01b03821660009081526018602052604090205460ff16155b156111b8576008548111156111b85760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561121257506001600160a01b03831660009081526018602052604090205460ff16155b801561123757506001600160a01b03821660009081526018602052604090205460ff16155b156112be576001600160a01b0382166000908152602081905260409020546009546112628383611daa565b11156112bc5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112e5575060145460ff16155b801561132257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156113355750601454610100900460ff165b1561134857600754915061134882611681565b6001600160a01b03851660009081526018602052604090205460ff1615801561138a57506001600160a01b03841660009081526018602052604090205460ff16155b156114c8576000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031603611410576064600d54600e546113dd9190611eb3565b6113e79087611df2565b6113f19190611e09565b91506064600d54866114039190611df2565b61140d9190611e09565b90505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03160361148e57606460125460135461145b9190611eb3565b6114659087611df2565b61146f9190611e09565b91506064601254866114819190611df2565b61148b9190611e09565b90505b6114988183611daa565b6114a29086611eb3565b945080156114b4576114b4878261180a565b81156114c5576114c587308461152c565b50505b6114d385858561152c565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115525760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166115785760405162461bcd60e51b815260040161090490611e70565b6001600160a01b038316600090815260208190526040902054818110156115f05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611627908490611daa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161167391815260200190565b60405180910390a350505050565b6014805460ff191660011790556012546013546000916116a091611eb3565b600f546116ad9084611df2565b6116b79190611e09565b905060006116c6600283611e09565b905060006116d48284611eb3565b9050476116e08361193c565b60006116ec8247611eb3565b90506116f88382611ac7565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a161174361173e8688611eb3565b61193c565b6000600f546012546013546117589190611eb3565b6117629190611eb3565b60115461176f9047611df2565b6117799190611e09565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156117b4573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117f6573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661186a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061197157611971611ec6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ee9190611edc565b81600181518110611a0157611a01611ec6565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a5857600654611a589030906001600160a01b0316600019610ef9565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a91908590600090869030904290600401611ef9565b600060405180830381600087803b158015611aab57600080fd5b505af1158015611abf573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611af06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b58573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d39190611f6a565b600060208083528351808285015260005b81811015611baa57858101830151858201604001528201611b8e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ef657600080fd5b60008060408385031215611bf357600080fd5b8235611bfe81611bcb565b946020939093013593505050565b600060208284031215611c1e57600080fd5b8135611c2981611bcb565b9392505050565b600080600060608486031215611c4557600080fd5b8335611c5081611bcb565b92506020840135611c6081611bcb565b929592945050506040919091013590565b60008060008060808587031215611c8757600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611cb557600080fd5b5035919050565b80358015158114611ccc57600080fd5b919050565b60008060408385031215611ce457600080fd5b8235611cef81611bcb565b9150611cfd60208401611cbc565b90509250929050565b600060208284031215611d1857600080fd5b611c2982611cbc565b60008060408385031215611d3457600080fd5b8235611d3f81611bcb565b91506020830135611d4f81611bcb565b809150509250929050565b600181811c90821680611d6e57607f821691505b602082108103611d8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d94565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d94565b600082611e2657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eee57600080fd5b8151611c2981611bcb565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f495784516001600160a01b031683529383019391830191600101611f24565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f7f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209d98601ea296f1fc55e2b5534bc1927812237cd1b8adfe711715ea3dbc134da464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b7d565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611be0565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611c0c565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c30565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611be0565b610925565b3480156103f157600080fd5b50610405610400366004611c71565b610961565b005b34801561041357600080fd5b506103007f0000000000000000000000008ecd85e9f2e67c4415f5ded323a81942d6d43d8081565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611c0c565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611c0c565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c71565b6109fe565b34801561054057600080fd5b5061040561054f366004611ca3565b610a65565b34801561056057600080fd5b5061040561056f366004611ca3565b610ace565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610afd565b34801561062557600080fd5b506102ac610634366004611be0565b610b0c565b34801561064557600080fd5b506102ac610654366004611be0565b610ba5565b34801561066557600080fd5b50610405610674366004611cd1565b610bb2565b34801561068557600080fd5b50610405610694366004611cd1565b610c07565b3480156106a557600080fd5b506104056106b4366004611d06565b610d13565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d21565b610d91565b34801561071157600080fd5b506102d2610720366004611d21565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611ca3565b610df5565b3480156107b957600080fd5b506104056107c8366004611c0c565b610e5e565b6060600380546107dc90611d5a565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d5a565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610ef9565b5060015b92915050565b600061088384848461101d565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610ef9565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611daa565b610ef9565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611dbd565b600a849055600b839055600c829055600d81905580826109ab8587611daa565b6109b59190611daa565b6109bf9190611daa565b600e5550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611dbd565b6109fc60006114da565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611dbd565b600f8490556010839055601182905560128190558082610a488587611daa565b610a529190611daa565b610a5c9190611daa565b60135550505050565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610aa0575060648111155b610aa957600080fd5b6064610ab460025490565b610abe9083611df2565b610ac89190611e09565b60095550565b6005546001600160a01b03163314610af85760405162461bcd60e51b815260040161090490611dbd565b600755565b6060600480546107dc90611d5a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b9b3385858403610ef9565b5060019392505050565b600061086c33848461101d565b6005546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c315760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610cb45760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d3d5760405162461bcd60e51b815260040161090490611dbd565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d8690831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610dbb5760405162461bcd60e51b815260040161090490611dbd565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610e30575060648111155b610e3957600080fd5b6064610e4460025490565b610e4e9083611df2565b610e589190611e09565b60085550565b6005546001600160a01b03163314610e885760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b038116610eed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ef6816114da565b50565b6001600160a01b038316610f5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110435760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166110695760405162461bcd60e51b815260040161090490611e70565b6001600160a01b03831660009081526017602052604090205460ff161580156110ab57506001600160a01b03821660009081526017602052604090205460ff16155b6110ed5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b80600003611106576111018383600061152c565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561114857506001600160a01b03821660009081526018602052604090205460ff16155b156111b8576008548111156111b85760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f0000000000000000000000008ecd85e9f2e67c4415f5ded323a81942d6d43d806001600160a01b0316836001600160a01b031614801561121257506001600160a01b03831660009081526018602052604090205460ff16155b801561123757506001600160a01b03821660009081526018602052604090205460ff16155b156112be576001600160a01b0382166000908152602081905260409020546009546112628383611daa565b11156112bc5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112e5575060145460ff16155b801561132257507f0000000000000000000000008ecd85e9f2e67c4415f5ded323a81942d6d43d806001600160a01b0316846001600160a01b0316145b80156113355750601454610100900460ff165b1561134857600754915061134882611681565b6001600160a01b03851660009081526018602052604090205460ff1615801561138a57506001600160a01b03841660009081526018602052604090205460ff16155b156114c8576000807f0000000000000000000000008ecd85e9f2e67c4415f5ded323a81942d6d43d806001600160a01b0316876001600160a01b031603611410576064600d54600e546113dd9190611eb3565b6113e79087611df2565b6113f19190611e09565b91506064600d54866114039190611df2565b61140d9190611e09565b90505b7f0000000000000000000000008ecd85e9f2e67c4415f5ded323a81942d6d43d806001600160a01b0316866001600160a01b03160361148e57606460125460135461145b9190611eb3565b6114659087611df2565b61146f9190611e09565b91506064601254866114819190611df2565b61148b9190611e09565b90505b6114988183611daa565b6114a29086611eb3565b945080156114b4576114b4878261180a565b81156114c5576114c587308461152c565b50505b6114d385858561152c565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115525760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166115785760405162461bcd60e51b815260040161090490611e70565b6001600160a01b038316600090815260208190526040902054818110156115f05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611627908490611daa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161167391815260200190565b60405180910390a350505050565b6014805460ff191660011790556012546013546000916116a091611eb3565b600f546116ad9084611df2565b6116b79190611e09565b905060006116c6600283611e09565b905060006116d48284611eb3565b9050476116e08361193c565b60006116ec8247611eb3565b90506116f88382611ac7565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a161174361173e8688611eb3565b61193c565b6000600f546012546013546117589190611eb3565b6117629190611eb3565b60115461176f9047611df2565b6117799190611e09565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156117b4573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117f6573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661186a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061197157611971611ec6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ee9190611edc565b81600181518110611a0157611a01611ec6565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a5857600654611a589030906001600160a01b0316600019610ef9565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a91908590600090869030904290600401611ef9565b600060405180830381600087803b158015611aab57600080fd5b505af1158015611abf573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611af06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b58573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d39190611f6a565b600060208083528351808285015260005b81811015611baa57858101830151858201604001528201611b8e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ef657600080fd5b60008060408385031215611bf357600080fd5b8235611bfe81611bcb565b946020939093013593505050565b600060208284031215611c1e57600080fd5b8135611c2981611bcb565b9392505050565b600080600060608486031215611c4557600080fd5b8335611c5081611bcb565b92506020840135611c6081611bcb565b929592945050506040919091013590565b60008060008060808587031215611c8757600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611cb557600080fd5b5035919050565b80358015158114611ccc57600080fd5b919050565b60008060408385031215611ce457600080fd5b8235611cef81611bcb565b9150611cfd60208401611cbc565b90509250929050565b600060208284031215611d1857600080fd5b611c2982611cbc565b60008060408385031215611d3457600080fd5b8235611d3f81611bcb565b91506020830135611d4f81611bcb565b809150509250929050565b600181811c90821680611d6e57607f821691505b602082108103611d8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d94565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d94565b600082611e2657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eee57600080fd5b8151611c2981611bcb565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f495784516001600160a01b031683529383019391830191600101611f24565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f7f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209d98601ea296f1fc55e2b5534bc1927812237cd1b8adfe711715ea3dbc134da464736f6c63430008110033

Deployed Bytecode Sourcemap

25678:9272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10107:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12274:169;;;;;;;;;;-1:-1:-1;12274:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12274:169:0;1023:187:1;26264:35:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;26264:35:0;1215:177:1;25717:41:0;;;;;;;;;;-1:-1:-1;25717:41:0;;;;-1:-1:-1;;;;;25717:41:0;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;25717:41:0;1397:230:1;11227:108:0;;;;;;;;;;-1:-1:-1;11315:12:0;;11227:108;;26349:30;;;;;;;;;;;;;;;;26901:46;;;;;;;;;;-1:-1:-1;26901:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26099:29;;;;;;;;;;;;;;;;12925:492;;;;;;;;;;-1:-1:-1;12925:492:0;;;;;:::i;:::-;;:::i;11069:93::-;;;;;;;;;;-1:-1:-1;11069:93:0;;11152:2;2487:36:1;;2475:2;2460:18;11069:93:0;2345:184:1;13826:215:0;;;;;;;;;;-1:-1:-1;13826:215:0;;;;;:::i;:::-;;:::i;33544:334::-;;;;;;;;;;-1:-1:-1;33544:334:0;;;;;:::i;:::-;;:::i;:::-;;25765:38;;;;;;;;;;;;;;;26557:40;;;;;;;;;;-1:-1:-1;26557:40:0;;;;;;;;;;;33102:125;;;;;;;;;;-1:-1:-1;33102:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;33191:28:0;33167:4;33191:28;;;:19;:28;;;;;;;;;33102:125;26705:87;;;;;;;;;;-1:-1:-1;26705:87:0;;;;-1:-1:-1;;;;;26705:87:0;;;26058:34;;;;;;;;;;;;;;;;11398:127;;;;;;;;;;-1:-1:-1;11398:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11499:18:0;11472:7;11499:18;;;;;;;;;;;;11398:127;4211:94;;;;;;;;;;;;;:::i;33886:344::-;;;;;;;;;;-1:-1:-1;33886:344:0;;;;;:::i;:::-;;:::i;34596:175::-;;;;;;;;;;-1:-1:-1;34596:175:0;;;;;:::i;:::-;;:::i;33417:119::-;;;;;;;;;;-1:-1:-1;33417:119:0;;;;;:::i;:::-;;:::i;26606:92::-;;;;;;;;;;-1:-1:-1;26606:92:0;;;;;;;-1:-1:-1;;;;;26606:92:0;;;26135:29;;;;;;;;;;;;;;;;26386:30;;;;;;;;;;;;;;;;26799:70;;;;;;;;;;-1:-1:-1;26799:70:0;;;;-1:-1:-1;;;;;26799:70:0;;;3560:87;;;;;;;;;;-1:-1:-1;3633:6:0;;-1:-1:-1;;;;;3633:6:0;3560:87;;10326:104;;;;;;;;;;;;;:::i;14544:413::-;;;;;;;;;;-1:-1:-1;14544:413:0;;;;;:::i;:::-;;:::i;11738:175::-;;;;;;;;;;-1:-1:-1;11738:175:0;;;;;:::i;:::-;;:::i;34779:120::-;;;;;;;;;;-1:-1:-1;34779:120:0;;;;;:::i;:::-;;:::i;32800:290::-;;;;;;;;;;-1:-1:-1;32800:290:0;;;;;:::i;:::-;;:::i;33238:171::-;;;;;;;;;;-1:-1:-1;33238:171:0;;;;;:::i;:::-;;:::i;25881:57::-;;;;;;;;;;;;;;;;26017:34;;;;;;;;;;;;;;;;34238:164;;;;;;;;;;-1:-1:-1;34238:164:0;;;;;:::i;:::-;;:::i;11976:151::-;;;;;;;;;;-1:-1:-1;11976:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;12092:18:0;;;12065:7;12092:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11976:151;25812:54;;;;;;;;;;;;;;;;25951:51;;;;;;;;;;;;;;;;26306:36;;;;;;;;;;;;;;;;34410:178;;;;;;;;;;-1:-1:-1;34410:178:0;;;;;:::i;:::-;;:::i;4460:192::-;;;;;;;;;;-1:-1:-1;4460:192:0;;;;;:::i;:::-;;:::i;10107:100::-;10161:13;10194:5;10187:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10107:100;:::o;12274:169::-;12357:4;12374:39;2514:10;12397:7;12406:6;12374:8;:39::i;:::-;-1:-1:-1;12431:4:0;12274:169;;;;;:::o;12925:492::-;13065:4;13082:36;13092:6;13100:9;13111:6;13082:9;:36::i;:::-;-1:-1:-1;;;;;13158:19:0;;13131:24;13158:19;;;:11;:19;;;;;;;;2514:10;13158:33;;;;;;;;13210:26;;;;13202:79;;;;-1:-1:-1;;;13202:79:0;;5600:2:1;13202:79:0;;;5582:21:1;5639:2;5619:18;;;5612:30;5678:34;5658:18;;;5651:62;-1:-1:-1;;;5729:18:1;;;5722:38;5777:19;;13202:79:0;;;;;;;;;13317:57;13326:6;2514:10;13367:6;13348:16;:25;13317:8;:57::i;:::-;-1:-1:-1;13405:4:0;;12925:492;-1:-1:-1;;;;12925:492:0:o;13826:215::-;2514:10;13914:4;13963:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13963:34:0;;;;;;;;;;13914:4;;13931:80;;13954:7;;13963:47;;14000:10;;13963:47;:::i;:::-;13931:8;:80::i;33544:334::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;33665:15:::1;:25:::0;;;33701:15:::1;:26:::0;;;33738:10:::1;:21:::0;;;33770:10:::1;:21:::0;;;33783:8;33751;33817:31:::1;33719:8:::0;33683:7;33817:31:::1;:::i;:::-;:42;;;;:::i;:::-;:53;;;;:::i;:::-;33802:12;:68:::0;-1:-1:-1;;;;33544:334:0:o;4211:94::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;4276:21:::1;4294:1;4276:9;:21::i;:::-;4211:94::o:0;33886:344::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;34008:16:::1;:26:::0;;;34045:16:::1;:27:::0;;;34083:11:::1;:22:::0;;;34116:11:::1;:22:::0;;;34130:8;34097;34165:33:::1;34064:8:::0;34027:7;34165:33:::1;:::i;:::-;:45;;;;:::i;:::-;:57;;;;:::i;:::-;34149:13;:73:::0;-1:-1:-1;;;;33886:344:0:o;34596:175::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;34688:1:::1;34677:8;:12;:31;;;;;34705:3;34693:8;:15;;34677:31;34669:40;;;::::0;::::1;;34760:3;34746:13;11315:12:::0;;;11227:108;34746:13:::1;34737:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;34720:14;:43:::0;-1:-1:-1;34596:175:0:o;33417:119::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;33497:18:::1;:31:::0;33417:119::o;10326:104::-;10382:13;10415:7;10408:14;;;;;:::i;14544:413::-;2514:10;14637:4;14681:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14681:34:0;;;;;;;;;;14734:35;;;;14726:85;;;;-1:-1:-1;;;14726:85:0;;7027:2:1;14726:85:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;-1:-1:-1;;;7156:18:1;;;7149:35;7201:19;;14726:85:0;6825:401:1;14726:85:0;14847:67;2514:10;14870:7;14898:15;14879:16;:34;14847:8;:67::i;:::-;-1:-1:-1;14945:4:0;;14544:413;-1:-1:-1;;;14544:413:0:o;11738:175::-;11824:4;11841:42;2514:10;11865:9;11876:6;11841:9;:42::i;34779:120::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34860:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;34860:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34779:120::o;32800:290::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32893:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;32885:95:::1;;;::::0;-1:-1:-1;;;32885:95:0;;7433:2:1;32885:95:0::1;::::0;::::1;7415:21:1::0;7472:2;7452:18;;;7445:30;7511:34;7491:18;;;7484:62;-1:-1:-1;;;7562:18:1;;;7555:40;7612:19;;32885:95:0::1;7231:406:1::0;32885:95:0::1;-1:-1:-1::0;;;;;32991:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32991:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33048:34;;1163:41:1;;;33048:34:0::1;::::0;1136:18:1;33048:34:0::1;;;;;;;32800:290:::0;;:::o;33238:171::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;33315:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;33315:32:0;;::::1;;::::0;;33363:38:::1;::::0;::::1;::::0;::::1;::::0;33339:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;33363:38:0::1;;;;;;;;33238:171:::0;:::o;34238:164::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;34337:15:::1;:28:::0;;-1:-1:-1;;;;;;34337:28:0::1;::::0;-1:-1:-1;;;;;34337:28:0;;::::1;;;::::0;;34376:10:::1;:18:::0;;-1:-1:-1;;;;;;34376:18:0::1;::::0;;;::::1;;::::0;;34238:164::o;34410:178::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;34499:1:::1;34488:8;:12;:31;;;;;34516:3;34504:8;:15;;34488:31;34480:40;;;::::0;::::1;;34577:3;34563:13;11315:12:::0;;;11227:108;34563:13:::1;34554:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;34531:20;:49:::0;-1:-1:-1;34410:178:0:o;4460:192::-;3633:6;;-1:-1:-1;;;;;3633:6:0;2514:10;3780:23;3772:68;;;;-1:-1:-1;;;3772:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4549:22:0;::::1;4541:73;;;::::0;-1:-1:-1;;;4541:73:0;;7844:2:1;4541:73:0::1;::::0;::::1;7826:21:1::0;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;-1:-1:-1;;;7973:18:1;;;7966:36;8019:19;;4541:73:0::1;7642:402:1::0;4541:73:0::1;4625:19;4635:8;4625:9;:19::i;:::-;4460:192:::0;:::o;18323:380::-;-1:-1:-1;;;;;18459:19:0;;18451:68;;;;-1:-1:-1;;;18451:68:0;;8251:2:1;18451:68:0;;;8233:21:1;8290:2;8270:18;;;8263:30;8329:34;8309:18;;;8302:62;-1:-1:-1;;;8380:18:1;;;8373:34;8424:19;;18451:68:0;8049:400:1;18451:68:0;-1:-1:-1;;;;;18538:21:0;;18530:68;;;;-1:-1:-1;;;18530:68:0;;8656:2:1;18530:68:0;;;8638:21:1;8695:2;8675:18;;;8668:30;8734:34;8714:18;;;8707:62;-1:-1:-1;;;8785:18:1;;;8778:32;8827:19;;18530:68:0;8454:398:1;18530:68:0;-1:-1:-1;;;;;18611:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18663:32;;1361:25:1;;;18663:32:0;;1334:18:1;18663:32:0;;;;;;;18323:380;;;:::o;28282:2288::-;-1:-1:-1;;;;;28414:18:0;;28406:68;;;;-1:-1:-1;;;28406:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28493:16:0;;28485:64;;;;-1:-1:-1;;;28485:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28569:20:0;;;;;;:14;:20;;;;;;;;28568:21;:44;;;;-1:-1:-1;;;;;;28594:18:0;;;;;;:14;:18;;;;;;;;28593:19;28568:44;28560:76;;;;-1:-1:-1;;;28560:76:0;;9869:2:1;28560:76:0;;;9851:21:1;9908:2;9888:18;;;9881:30;-1:-1:-1;;;9927:18:1;;;9920:49;9986:18;;28560:76:0;9667:343:1;28560:76:0;28652:6;28662:1;28652:11;28649:92;;28680:28;28696:4;28702:2;28706:1;28680:15;:28::i;:::-;28282:2288;;;:::o;28649:92::-;-1:-1:-1;;;;;28757:25:0;;;;;;:19;:25;;;;;;;;28756:26;:54;;;;-1:-1:-1;;;;;;28787:23:0;;;;;;:19;:23;;;;;;;;28786:24;28756:54;28753:177;;;28845:20;;28835:6;:30;;28827:91;;;;-1:-1:-1;;;28827:91:0;;10217:2:1;28827:91:0;;;10199:21:1;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;-1:-1:-1;;;10346:18:1;;;10339:46;10402:19;;28827:91:0;10015:412:1;28827:91:0;28951:13;-1:-1:-1;;;;;28945:19:0;:4;-1:-1:-1;;;;;28945:19:0;;:49;;;;-1:-1:-1;;;;;;28969:25:0;;;;;;:19;:25;;;;;;;;28968:26;28945:49;:77;;;;-1:-1:-1;;;;;;28999:23:0;;;;;;:19;:23;;;;;;;;28998:24;28945:77;28942:271;;;-1:-1:-1;;;;;11499:18:0;;29038:32;11499:18;;;;;;;;;;;29146:14;;29109:33;29136:6;11499:18;29109:33;:::i;:::-;:51;;29101:100;;;;-1:-1:-1;;;29101:100:0;;10634:2:1;29101:100:0;;;10616:21:1;10673:2;10653:18;;;10646:30;10712:34;10692:18;;;10685:62;-1:-1:-1;;;10763:18:1;;;10756:34;10807:19;;29101:100:0;10432:400:1;29101:100:0;29023:190;28942:271;29271:4;29222:28;11499:18;;;;;;;;;;;29349;;29325:42;;;;;;;29404:53;;-1:-1:-1;29441:16:0;;;;29440:17;29404:53;:87;;;;;29478:13;-1:-1:-1;;;;;29474:17:0;:2;-1:-1:-1;;;;;29474:17:0;;29404:87;:126;;;;-1:-1:-1;29509:21:0;;;;;;;29404:126;29387:274;;;29580:18;;29557:41;;29613:36;29628:20;29613:14;:36::i;:::-;-1:-1:-1;;;;;29763:25:0;;;;;;:19;:25;;;;;;;;29762:26;:54;;;;-1:-1:-1;;;;;;29793:23:0;;;;;;:19;:23;;;;;;;;29792:24;29762:54;29759:756;;;29833:12;29860:17;29915:13;-1:-1:-1;;;;;29909:19:0;:4;-1:-1:-1;;;;;29909:19:0;;29906:156;;29989:3;29977:10;;29964:12;;:23;;;;:::i;:::-;29956:32;;:6;:32;:::i;:::-;:36;;;;:::i;:::-;29949:43;;30043:3;30031:10;;30023:6;:19;;;;:::i;:::-;:23;;;;:::i;:::-;30011:35;;29906:156;30085:13;-1:-1:-1;;;;;30081:17:0;:2;-1:-1:-1;;;;;30081:17:0;;30078:157;;30161:3;30148:11;;30134:13;;:25;;;;:::i;:::-;30126:34;;:6;:34;:::i;:::-;:38;;;;:::i;:::-;30119:45;;30216:3;30203:11;;30195:6;:20;;;;:::i;:::-;:24;;;;:::i;:::-;30183:36;;30078:157;30268:14;30273:9;30268:4;:14;:::i;:::-;30260:23;;:6;:23;:::i;:::-;30251:32;-1:-1:-1;30303:13:0;;30300:82;;30337:28;30349:4;30355:9;30337:11;:28::i;:::-;30401:8;;30398:91;;30430:42;30446:4;30460;30467;30430:15;:42::i;:::-;29818:697;;29759:756;30527:33;30543:4;30549:2;30553:6;30527:15;:33::i;:::-;28395:2175;;28282:2288;;;:::o;4660:173::-;4735:6;;;-1:-1:-1;;;;;4752:17:0;;;-1:-1:-1;;;;;;4752:17:0;;;;;;;4785:40;;4735:6;;;4752:17;4735:6;;4785:40;;4716:16;;4785:40;4705:128;4660:173;:::o;15447:733::-;-1:-1:-1;;;;;15587:20:0;;15579:70;;;;-1:-1:-1;;;15579:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15668:23:0;;15660:71;;;;-1:-1:-1;;;15660:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15828:17:0;;15804:21;15828:17;;;;;;;;;;;15864:23;;;;15856:74;;;;-1:-1:-1;;;15856:74:0;;11172:2:1;15856:74:0;;;11154:21:1;11211:2;11191:18;;;11184:30;11250:34;11230:18;;;11223:62;-1:-1:-1;;;11301:18:1;;;11294:36;11347:19;;15856:74:0;10970:402:1;15856:74:0;-1:-1:-1;;;;;15966:17:0;;;:9;:17;;;;;;;;;;;15986:22;;;15966:42;;16030:20;;;;;;;;:30;;16002:6;;15966:9;16030:30;;16002:6;;16030:30;:::i;:::-;;;;;;;;16095:9;-1:-1:-1;;;;;16078:35:0;16087:6;-1:-1:-1;;;;;16078:35:0;;16106:6;16078:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;16078:35:0;;;;;;;;15568:612;15447:733;;;:::o;30579:1124::-;27297:16;:23;;-1:-1:-1;;27297:23:0;27316:4;27297:23;;;30746:11:::1;::::0;30732:13:::1;::::0;27297:16;;30732:25:::1;::::0;::::1;:::i;:::-;30714:16;::::0;30693:37:::1;::::0;:20;:37:::1;:::i;:::-;:65;;;;:::i;:::-;30664:94:::0;-1:-1:-1;30827:12:0::1;30842:20;30861:1;30664:94:::0;30842:20:::1;:::i;:::-;30827:35:::0;-1:-1:-1;30873:17:0::1;30893:23;30827:35:::0;30893:18;:23:::1;:::i;:::-;30873:43:::0;-1:-1:-1;31010:21:0::1;31076:22;31093:4:::0;31076:16:::1;:22::i;:::-;31160:18;31181:36;31203:14:::0;31181:21:::1;:36;:::i;:::-;31160:57;;31267:35;31280:9;31291:10;31267:12;:35::i;:::-;31320:32;::::0;;11551:25:1;;;11607:2;11592:18;;11585:34;;;31320:32:0::1;::::0;11524:18:1;31320:32:0::1;;;;;;;31408:57;31425:39;31446:18:::0;31425:20;:39:::1;:::i;:::-;31408:16;:57::i;:::-;31476:17;31557:16;;31545:11;;31531:13;;:25;;;;:::i;:::-;:42;;;;:::i;:::-;31518:11;::::0;31496:33:::1;::::0;:21:::1;:33;:::i;:::-;:78;;;;:::i;:::-;31595:10;::::0;:30:::1;::::0;31476:98;;-1:-1:-1;;;;;;31595:10:0::1;::::0;:30;::::1;;;::::0;31476:98;;31595:10:::1;:30:::0;:10;:30;31476:98;31595:10;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;31636:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;31636:15:0;;;::::1;::::0;;;::::1;::::0;31661:21:::1;31636:47:::0;::::1;;;::::0;::::1;::::0;;;31661:21;31636:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27343:16:0;:24;;-1:-1:-1;;27343:24:0;;;-1:-1:-1;;;;;;30579:1124:0:o;17208:675::-;-1:-1:-1;;;;;17292:21:0;;17284:67;;;;-1:-1:-1;;;17284:67:0;;11832:2:1;17284:67:0;;;11814:21:1;11871:2;11851:18;;;11844:30;11910:34;11890:18;;;11883:62;-1:-1:-1;;;11961:18:1;;;11954:31;12002:19;;17284:67:0;11630:397:1;17284:67:0;-1:-1:-1;;;;;17451:18:0;;17426:22;17451:18;;;;;;;;;;;17488:24;;;;17480:71;;;;-1:-1:-1;;;17480:71:0;;12234:2:1;17480:71:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:34;12292:18;;;12285:62;-1:-1:-1;;;12363:18:1;;;12356:32;12405:19;;17480:71:0;12032:398:1;17480:71:0;-1:-1:-1;;;;;17587:18:0;;:9;:18;;;;;;;;;;;17608:23;;;17587:44;;17726:12;:22;;;;;;;17777:37;1361:25:1;;;17587:9:0;;:18;17777:37;;1334:18:1;17777:37:0;;;;;;;28282:2288;;;:::o;31711:692::-;31861:16;;;31875:1;31861:16;;;;;;;;31837:21;;31861:16;;;;;;;;;;-1:-1:-1;31861:16:0;31837:40;;31906:4;31888;31893:1;31888:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31888:23:0;;;:7;;;;;;;;;;:23;;;;31932:15;;:22;;;-1:-1:-1;;;31932:22:0;;;;:15;;;;;:20;;:22;;;;;31888:7;;31932:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31922:4;31927:1;31922:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31922:32:0;;;:7;;;;;;;;;;:32;;;;32003:15;;31988:4;12065:7;12092:18;;;:11;:18;;;;;;32003:15;;;;12092:27;;;;;;32023:11;-1:-1:-1;31967:156:0;;;32081:15;;32049:62;;32066:4;;-1:-1:-1;;;;;32081:15:0;-1:-1:-1;;32049:8:0;:62::i;:::-;32161:15;;:224;;-1:-1:-1;;;32161:224:0;;-1:-1:-1;;;;;32161:15:0;;;;:66;;:224;;32242:11;;32161:15;;32312:4;;32339;;32359:15;;32161:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31766:637;31711:692;:::o;32411:381::-;32522:15;;-1:-1:-1;;;;;32522:15:0;:31;32561:9;32594:4;32614:11;32522:15;;32726:7;3633:6;;-1:-1:-1;;;;;3633:6:0;;3560:87;32726:7;32522:252;;;;;;-1:-1:-1;;;;;;32522:252:0;;;-1:-1:-1;;;;;14299:15:1;;;32522:252:0;;;14281:34:1;14331:18;;;14324:34;;;;14374:18;;;14367:34;;;;14417:18;;;14410:34;14481:15;;;14460:19;;;14453:44;32748:15:0;14513:19:1;;;14506:35;14215:19;;32522:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;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;1632:247::-;1691:6;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;1799:9;1786:23;1818:31;1843:5;1818:31;:::i;:::-;1868:5;1632:247;-1:-1:-1;;;1632:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2534:385::-;2620:6;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:53;;;2714:1;2711;2704:12;2665:53;-1:-1:-1;;2737:23:1;;;2807:2;2792:18;;2779:32;;-1:-1:-1;2858:2:1;2843:18;;2830:32;;2909:2;2894:18;2881:32;;-1:-1:-1;2534:385:1;-1:-1:-1;2534:385:1:o;3356:180::-;3415:6;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;-1:-1:-1;3507:23:1;;3356:180;-1:-1:-1;3356:180:1:o;3541:160::-;3606:20;;3662:13;;3655:21;3645:32;;3635:60;;3691:1;3688;3681:12;3635:60;3541:160;;;:::o;3706:315::-;3771:6;3779;3832:2;3820:9;3811:7;3807:23;3803:32;3800:52;;;3848:1;3845;3838:12;3800:52;3887:9;3874:23;3906:31;3931:5;3906:31;:::i;:::-;3956:5;-1:-1:-1;3980:35:1;4011:2;3996:18;;3980:35;:::i;:::-;3970:45;;3706:315;;;;;:::o;4026:180::-;4082:6;4135:2;4123:9;4114:7;4110:23;4106:32;4103:52;;;4151:1;4148;4141:12;4103:52;4174:26;4190:9;4174:26;:::i;4211:404::-;4295:6;4303;4356:2;4344:9;4335:7;4331:23;4327:32;4324:52;;;4372:1;4369;4362:12;4324:52;4411:9;4398:23;4430:31;4455:5;4430:31;:::i;:::-;4480:5;-1:-1:-1;4537:2:1;4522:18;;4509:32;4550:33;4509:32;4550:33;:::i;:::-;4602:7;4592:17;;;4211:404;;;;;:::o;5013:380::-;5092:1;5088:12;;;;5135;;;5156:61;;5210:4;5202:6;5198:17;5188:27;;5156:61;5263:2;5255:6;5252:14;5232:18;5229:38;5226:161;;5309:10;5304:3;5300:20;5297:1;5290:31;5344:4;5341:1;5334:15;5372:4;5369:1;5362:15;5226:161;;5013:380;;;:::o;5807:127::-;5868:10;5863:3;5859:20;5856:1;5849:31;5899:4;5896:1;5889:15;5923:4;5920:1;5913:15;5939:125;6004:9;;;6025:10;;;6022:36;;;6038:18;;:::i;6069:356::-;6271:2;6253:21;;;6290:18;;;6283:30;6349:34;6344:2;6329:18;;6322:62;6416:2;6401:18;;6069:356::o;6430:168::-;6503:9;;;6534;;6551:15;;;6545:22;;6531:37;6521:71;;6572:18;;:::i;6603:217::-;6643:1;6669;6659:132;;6713:10;6708:3;6704:20;6701:1;6694:31;6748:4;6745:1;6738:15;6776:4;6773:1;6766:15;6659:132;-1:-1:-1;6805:9:1;;6603:217::o;8857:401::-;9059:2;9041:21;;;9098:2;9078:18;;;9071:30;9137:34;9132:2;9117:18;;9110:62;-1:-1:-1;;;9203:2:1;9188:18;;9181:35;9248:3;9233:19;;8857:401::o;9263:399::-;9465:2;9447:21;;;9504:2;9484:18;;;9477:30;9543:34;9538:2;9523:18;;9516:62;-1:-1:-1;;;9609:2:1;9594:18;;9587:33;9652:3;9637:19;;9263:399::o;10837:128::-;10904:9;;;10925:11;;;10922:37;;;10939:18;;:::i;12567:127::-;12628:10;12623:3;12619:20;12616:1;12609:31;12659:4;12656:1;12649:15;12683:4;12680:1;12673:15;12699:251;12769:6;12822:2;12810:9;12801:7;12797:23;12793:32;12790:52;;;12838:1;12835;12828:12;12790:52;12870:9;12864:16;12889:31;12914:5;12889:31;:::i;12955:980::-;13217:4;13265:3;13254:9;13250:19;13296:6;13285:9;13278:25;13322:2;13360:6;13355:2;13344:9;13340:18;13333:34;13403:3;13398:2;13387:9;13383:18;13376:31;13427:6;13462;13456:13;13493:6;13485;13478:22;13531:3;13520:9;13516:19;13509:26;;13570:2;13562:6;13558:15;13544:29;;13591:1;13601:195;13615:6;13612:1;13609:13;13601:195;;;13680:13;;-1:-1:-1;;;;;13676:39:1;13664:52;;13771:15;;;;13736:12;;;;13712:1;13630:9;13601:195;;;-1:-1:-1;;;;;;;13852:32:1;;;;13847:2;13832:18;;13825:60;-1:-1:-1;;;13916:3:1;13901:19;13894:35;13813:3;12955:980;-1:-1:-1;;;12955:980:1:o;14552:306::-;14640:6;14648;14656;14709:2;14697:9;14688:7;14684:23;14680:32;14677:52;;;14725:1;14722;14715:12;14677:52;14754:9;14748:16;14738:26;;14804:2;14793:9;14789:18;14783:25;14773:35;;14848:2;14837:9;14833:18;14827:25;14817:35;;14552:306;;;;;:::o

Swarm Source

ipfs://9d98601ea296f1fc55e2b5534bc1927812237cd1b8adfe711715ea3dbc134da4
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.