ETH Price: $2,523.65 (-0.06%)

Token

Proof of Tsuka (Tsuka 2.0)
 

Overview

Max Total Supply

100,000,000 Tsuka 2.0

Holders

134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
295,338.427154613096960566 Tsuka 2.0

Value
$0.00
0xda1a473f62bc23eb427d4974401bf931558314ef
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:
Tsuka2

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/******


The Tsuka 2.0 will be DEX with 100% slippage, it will help you snipe into projects launching on Uniswap because of its slippage. 
With its infinite wisdom, Tsuka 2.0 brings new and improved tokenomics to face an ever evolving degen space.


Tokenomics
Supply: 100000000
Max Buy: 1%
Max Wallet: 2%
Tax:
Buy: 3%
Sell: 4% 
TG: https:https://t.me/Tsuka2join
Twitter: https://twitter.com/Tsuka2_0
Website: https://tsuka2.org/


**************/

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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 substraction 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 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 IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

    function burn(address to) external returns (uint amount0, uint amount1);

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(uint amountIn, address[] calldata path)
        external
        view
        returns (uint[] memory amounts);

    function getAmountsIn(uint amountOut, address[] calldata path)
        external
        view
        returns (uint[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract USDCManager is Ownable {
    address public immutable USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    function transferUSDC(address _to) external onlyOwner {
        IERC20 usdcContract = IERC20(USDC);
        uint256 _balance = usdcContract.balanceOf(address(this));
        require(usdcContract.transfer(_to, _balance) == true);
    }
}

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;
    USDCManager public usdcManager;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Proof of Tsuka", "Tsuka 2.0") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), USDC);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);


        uint256 _buyDevFee = 4;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 8;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;
        usdcManager = new USDCManager();

        maxTransactionAmount =  totalSupply * 1 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0x157236a704038C9af18dbF9ba03E415061083bCF); // Dev Wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


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

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;

            }

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


            amount -= fees;
        }

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

    function addLiquidity(uint256 tokenAmount, uint256 usdcAmount) private {
        // approve token transfer to cover all possible scenarios
        IERC20 USDCcontract = IERC20(USDC);
        USDCcontract.approve(address(uniswapV2Router), usdcAmount);

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidity(
            address(this),
            USDC,
            tokenAmount,
            usdcAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp.add(300)
        );
    }

    function swapAndLiquify(uint256 tokens) private {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);
        IERC20 USDCcontract = IERC20(USDC);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = USDCcontract.balanceOf(address(this));

        // swap tokens for ETH
        swapTokensForUSDC(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
        usdcManager.transferUSDC(address(this)); 
        // how much ETH did we just swap into?
        uint256 newBalance = USDCcontract.balanceOf(address(this)).sub(
            initialBalance
        );

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

        
    }
    function swapTokensForUSDC(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = USDC;

        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

        _approve(address(this), address(uniswapV2Router), tokenAmount);

       // make the swap
        uniswapV2Router.swapExactTokensForTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            devWallet,
            block.timestamp.add(3000)
        );
    }
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
 
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        if (tokensForLiquidity > 0) {
           swapAndLiquify(tokensForLiquidity);
           tokensForLiquidity = 0;
        }
         
        if (tokensForDev > 0){
            swapTokensForUSDCWally(tokensForDev);
            tokensForDev = 0;     
        }   

    
        }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdcManager","outputs":[{"internalType":"contract USDCManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b80546201000162ffffff199091161790553480156200004a57600080fd5b506040518060400160405280600e81526020016d50726f6f66206f66205473756b6160901b8152506040518060400160405280600981526020016805473756b6120322e360bc1b8152508160039081620000a59190620006b2565b506004620000b48282620006b2565b505050620000d1620000cb6200039c60201b60201c565b620003a0565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f3816001620003f2565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016491906200077e565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc91906200077e565b6001600160a01b031660a0819052620001f7906001620003f2565b60405160049060009060089082906a52b7d2dcc80cd2e4000000906200021d9062000600565b604051809103906000f0801580156200023a573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b039290921691909117905560646200026a826001620007c6565b620002769190620007e8565b600855606462000288826002620007c6565b620002949190620007e8565b600a55612710620002a7826005620007c6565b620002b39190620007e8565b600955600d859055600e849055620002cc84866200080b565b600c5560118390556012829055620002e582846200080b565b601055600780546001600160a01b03191673157236a704038c9af18dbf9ba03e415061083bcf1790556200032d620003256005546001600160a01b031690565b60016200046c565b6200033a3060016200046c565b6200034961dead60016200046c565b62000368620003606005546001600160a01b031690565b6001620003f2565b62000375306001620003f2565b6200038461dead6001620003f2565b62000390338262000516565b50505050505062000826565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004415760405162461bcd60e51b81526020600482018190526024820152600080516020620032c683398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004b75760405162461bcd60e51b81526020600482018190526024820152600080516020620032c6833981519152604482015260640162000438565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200056e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000438565b80600260008282546200058291906200080b565b90915550506001600160a01b03821660009081526020819052604081208054839290620005b19084906200080b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6104c98062002dfd83390190565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200063957607f821691505b6020821081036200065a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005fb57600081815260208120601f850160051c81016020861015620006895750805b601f850160051c820191505b81811015620006aa5782815560010162000695565b505050505050565b81516001600160401b03811115620006ce57620006ce6200060e565b620006e681620006df845462000624565b8462000660565b602080601f8311600181146200071e5760008415620007055750858301515b600019600386901b1c1916600185901b178555620006aa565b600085815260208120601f198616915b828110156200074f578886015182559484019460019091019084016200072e565b50858210156200076e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200079157600080fd5b81516001600160a01b0381168114620007a957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007e357620007e3620007b0565b500290565b6000826200080657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008215762000821620007b0565b500190565b60805160a0516125646200089960003960008181610454015281816113690152818161157a01528181611687015261175801526000818161034101528181611c9501528181611cc701528181611e0201528181611e3401528181611e8a01528181611f100152611f4501526125646000f3fe6080604052600436106102765760003560e01c806376d8039a1161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e14610774578063e2f45605146107ba578063f11a24d3146107d0578063f2fde38b146107e6578063f637434214610806578063f8b45b051461081c57600080fd5b8063bbc0c742146106c9578063c0246668146106e8578063c18bc19514610708578063c8c8ebe414610728578063d257b34f1461073e578063d85ba0631461075e57600080fd5b8063924de9b711610113578063924de9b71461063257806395d89b41146106525780639c3b4fdc146106675780639fccce321461067d578063a0d82dc514610693578063a9059cbb146106a957600080fd5b806376d8039a1461059f57806389a30271146105bf5780638a8c523c146105df5780638da5cb5b146105f45780638ea5220f1461061257600080fd5b8063313ce567116101e85780636a486a8e116101ac5780636a486a8e146104e95780636ddd1713146104ff57806370a082311461051f578063715018a614610555578063751039fc1461056a5780637571336a1461057f57600080fd5b8063313ce5671461042657806349bd5a5e146104425780634a62bb65146104765780634fbee1931461049057806366ca9b83146104c957600080fd5b806318160ddd1161023a57806318160ddd1461037b5780631816467f1461039a5780631a8145bb146103ba578063203e727e146103d057806323b872dd146103f057806327c8f8351461041057600080fd5b806302dbd8f81461028257806306fdde03146102a4578063095ea7b3146102cf57806310d5de53146102ff5780631694505e1461032f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612035565b610832565b005b3480156102b057600080fd5b506102b96108d2565b6040516102c69190612057565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046120c3565b610964565b60405190151581526020016102c6565b34801561030b57600080fd5b506102ef61031a3660046120ed565b60166020526000908152604090205460ff1681565b34801561033b57600080fd5b506103637f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c6565b34801561038757600080fd5b506002545b6040519081526020016102c6565b3480156103a657600080fd5b506102a26103b53660046120ed565b61097a565b3480156103c657600080fd5b5061038c60135481565b3480156103dc57600080fd5b506102a26103eb366004612108565b610a01565b3480156103fc57600080fd5b506102ef61040b366004612121565b610ade565b34801561041c57600080fd5b5061036361dead81565b34801561043257600080fd5b50604051601281526020016102c6565b34801561044e57600080fd5b506103637f000000000000000000000000000000000000000000000000000000000000000081565b34801561048257600080fd5b50600b546102ef9060ff1681565b34801561049c57600080fd5b506102ef6104ab3660046120ed565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104d557600080fd5b506102a26104e4366004612035565b610b88565b3480156104f557600080fd5b5061038c60105481565b34801561050b57600080fd5b50600b546102ef9062010000900460ff1681565b34801561052b57600080fd5b5061038c61053a3660046120ed565b6001600160a01b031660009081526020819052604090205490565b34801561056157600080fd5b506102a2610c1b565b34801561057657600080fd5b506102ef610c51565b34801561058b57600080fd5b506102a261059a36600461216b565b610c8e565b3480156105ab57600080fd5b50600f54610363906001600160a01b031681565b3480156105cb57600080fd5b50600654610363906001600160a01b031681565b3480156105eb57600080fd5b506102a2610ce3565b34801561060057600080fd5b506005546001600160a01b0316610363565b34801561061e57600080fd5b50600754610363906001600160a01b031681565b34801561063e57600080fd5b506102a261064d3660046121a2565b610d20565b34801561065e57600080fd5b506102b9610d66565b34801561067357600080fd5b5061038c600d5481565b34801561068957600080fd5b5061038c60145481565b34801561069f57600080fd5b5061038c60115481565b3480156106b557600080fd5b506102ef6106c43660046120c3565b610d75565b3480156106d557600080fd5b50600b546102ef90610100900460ff1681565b3480156106f457600080fd5b506102a261070336600461216b565b610d82565b34801561071457600080fd5b506102a2610723366004612108565b610e0b565b34801561073457600080fd5b5061038c60085481565b34801561074a57600080fd5b506102ef610759366004612108565b610edc565b34801561076a57600080fd5b5061038c600c5481565b34801561078057600080fd5b5061038c61078f3660046121bf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107c657600080fd5b5061038c60095481565b3480156107dc57600080fd5b5061038c600e5481565b3480156107f257600080fd5b506102a26108013660046120ed565b611033565b34801561081257600080fd5b5061038c60125481565b34801561082857600080fd5b5061038c600a5481565b6005546001600160a01b031633146108655760405162461bcd60e51b815260040161085c906121f2565b60405180910390fd5b60118290556012819055610879818361223d565b6010819055600a10156108ce5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085c565b5050565b6060600380546108e190612255565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612255565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b60006109713384846110ce565b50600192915050565b6005546001600160a01b031633146109a45760405162461bcd60e51b815260040161085c906121f2565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161085c906121f2565b670de0b6b3a76400006103e8610a4060025490565b610a4b90600161228f565b610a5591906122ae565b610a5f91906122ae565b811015610ac65760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161085c565b610ad881670de0b6b3a764000061228f565b60085550565b6000610aeb8484846111f2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b705760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161085c565b610b7d85338584036110ce565b506001949350505050565b6005546001600160a01b03163314610bb25760405162461bcd60e51b815260040161085c906121f2565b600d829055600e819055610bc6818361223d565b600c819055600a10156108ce5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085c565b6005546001600160a01b03163314610c455760405162461bcd60e51b815260040161085c906121f2565b610c4f600061184e565b565b6005546000906001600160a01b03163314610c7e5760405162461bcd60e51b815260040161085c906121f2565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cb85760405162461bcd60e51b815260040161085c906121f2565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d0d5760405162461bcd60e51b815260040161085c906121f2565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161085c906121f2565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108e190612255565b60006109713384846111f2565b6005546001600160a01b03163314610dac5760405162461bcd60e51b815260040161085c906121f2565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e355760405162461bcd60e51b815260040161085c906121f2565b670de0b6b3a76400006103e8610e4a60025490565b610e5590600561228f565b610e5f91906122ae565b610e6991906122ae565b811015610ec45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161085c565b610ed681670de0b6b3a764000061228f565b600a5550565b6005546000906001600160a01b03163314610f095760405162461bcd60e51b815260040161085c906121f2565b620186a0610f1660025490565b610f2190600161228f565b610f2b91906122ae565b821015610f985760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085c565b6103e8610fa460025490565b610faf90600561228f565b610fb991906122ae565b8211156110255760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085c565b50600981905560015b919050565b6005546001600160a01b0316331461105d5760405162461bcd60e51b815260040161085c906121f2565b6001600160a01b0381166110c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085c565b6110cb8161184e565b50565b6001600160a01b0383166111305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085c565b6001600160a01b0382166111915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112185760405162461bcd60e51b815260040161085c906122d0565b6001600160a01b03821661123e5760405162461bcd60e51b815260040161085c90612315565b8060000361125757611252838360006118a0565b505050565b600b5460ff161561152f576005546001600160a01b0384811691161480159061128e57506005546001600160a01b03838116911614155b80156112a257506001600160a01b03821615155b80156112b957506001600160a01b03821661dead14155b80156112cf5750600654600160a01b900460ff16155b1561152f57600b54610100900460ff16611367576001600160a01b03831660009081526015602052604090205460ff168061132257506001600160a01b03821660009081526015602052604090205460ff165b6113675760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113c157506001600160a01b03821660009081526016602052604090205460ff16155b156114a5576008548111156114365760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085c565b600a546001600160a01b03831660009081526020819052604090205461145c908361223d565b11156114a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b61152f565b6001600160a01b03821660009081526016602052604090205460ff1661152f57600a546001600160a01b0383166000908152602081905260409020546114eb908361223d565b111561152f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b306000908152602081905260409020546009548110801590819061155b5750600b5462010000900460ff165b80156115715750600654600160a01b900460ff16155b80156115ae57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156115d357506001600160a01b03851660009081526015602052604090205460ff16155b80156115f857506001600160a01b03841660009081526015602052604090205460ff16155b15611626576006805460ff60a01b1916600160a01b1790556116186119f5565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526015602052604090205460ff600160a01b90920482161591168061167457506001600160a01b03851660009081526015602052604090205460ff165b1561167d575060005b6000811561183a577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156116c857506000601054115b15611756576116ed60646116e760105488611a6a90919063ffffffff16565b90611a7d565b905060105460125482611700919061228f565b61170a91906122ae565b6013600082825461171b919061223d565b9091555050601054601154611730908361228f565b61173a91906122ae565b6014600082825461174b919061223d565b9091555061181c9050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561179957506000600c54115b1561181c576117b860646116e7600c5488611a6a90919063ffffffff16565b9050600c54600e54826117cb919061228f565b6117d591906122ae565b601360008282546117e6919061223d565b9091555050600c54600d546117fb908361228f565b61180591906122ae565b60146000828254611816919061223d565b90915550505b801561182d5761182d8730836118a0565b6118378186612358565b94505b6118458787876118a0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118c65760405162461bcd60e51b815260040161085c906122d0565b6001600160a01b0382166118ec5760405162461bcd60e51b815260040161085c90612315565b6001600160a01b038316600090815260208190526040902054818110156119645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085c565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061199b90849061223d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611a105750565b600954611a1e90601461228f565b811115611a3657600954611a3390601461228f565b90505b60135415611a4f57611a49601354611a89565b60006013555b601454156110cb57611a62601454611c09565b600060145550565b6000611a76828461228f565b9392505050565b6000611a7682846122ae565b6000611a96826002611a7d565b90506000611aa48383611d6a565b6006546040516370a0823160e01b81523060048201529192506001600160a01b03169060009082906370a0823190602401602060405180830381865afa158015611af2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b16919061236f565b9050611b2184611d76565b600f546040516305f1261360e21b81523060048201526001600160a01b03909116906317c4984c90602401600060405180830381600087803b158015611b6657600080fd5b505af1158015611b7a573d6000803e3d6000fd5b50506040516370a0823160e01b815230600482015260009250611bf5915083906001600160a01b038616906370a0823190602401602060405180830381865afa158015611bcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bef919061236f565b90611d6a565b9050611c018482611e70565b505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c3e57611c3e61239e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611c6f57611c6f61239e565b60200260200101906001600160a01b031690816001600160a01b031681525050611cba307f0000000000000000000000000000000000000000000000000000000000000000846110ce565b6007546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116916338ed1739918591600091869116611d0342610bb8612029565b6040518663ffffffff1660e01b8152600401611d239594939291906123b4565b6000604051808303816000875af1158015611d42573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112529190810190612425565b6000611a768284612358565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dab57611dab61239e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611ddc57611ddc61239e565b60200260200101906001600160a01b031690816001600160a01b031681525050611e27307f0000000000000000000000000000000000000000000000000000000000000000846110ce565b600f546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116916338ed1739918591600091869116611d0342610bb8612029565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905290911690819063095ea7b3906044016020604051808303816000875af1158015611ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0991906124e3565b50611f35307f0000000000000000000000000000000000000000000000000000000000000000856110ce565b6006546007546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263e8e337009230929182169188918891600091829116611f894261012c612029565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af1158015612005573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c019190612500565b6000611a76828461223d565b6000806040838503121561204857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561208457858101830151858201604001528201612068565b81811115612096576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461102e57600080fd5b600080604083850312156120d657600080fd5b6120df836120ac565b946020939093013593505050565b6000602082840312156120ff57600080fd5b611a76826120ac565b60006020828403121561211a57600080fd5b5035919050565b60008060006060848603121561213657600080fd5b61213f846120ac565b925061214d602085016120ac565b9150604084013590509250925092565b80151581146110cb57600080fd5b6000806040838503121561217e57600080fd5b612187836120ac565b915060208301356121978161215d565b809150509250929050565b6000602082840312156121b457600080fd5b8135611a768161215d565b600080604083850312156121d257600080fd5b6121db836120ac565b91506121e9602084016120ac565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561225057612250612227565b500190565b600181811c9082168061226957607f821691505b60208210810361228957634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156122a9576122a9612227565b500290565b6000826122cb57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561236a5761236a612227565b500390565b60006020828403121561238157600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124045784516001600160a01b0316835293830193918301916001016123df565b50506001600160a01b03969096166060850152505050608001529392505050565b6000602080838503121561243857600080fd5b825167ffffffffffffffff8082111561245057600080fd5b818501915085601f83011261246457600080fd5b81518181111561247657612476612388565b8060051b604051601f19603f8301168101818110858211171561249b5761249b612388565b6040529182528482019250838101850191888311156124b957600080fd5b938501935b828510156124d7578451845293850193928501926124be565b98975050505050505050565b6000602082840312156124f557600080fd5b8151611a768161215d565b60008060006060848603121561251557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220825380f03942fe5ec9956e0ebcd6aeff9146484c4b5b71aeb10dc3ab11a5536c64736f6c634300080f003360a060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860805234801561002857600080fd5b5061003233610037565b610087565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6080516104216100a860003960008181607e015261012801526104216000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c806317c4984c1461005c578063715018a61461007157806389a30271146100795780638da5cb5b146100bc578063f2fde38b146100cd575b600080fd5b61006f61006a36600461034b565b6100e0565b005b61006f61022a565b6100a07f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200160405180910390f35b6000546001600160a01b03166100a0565b61006f6100db36600461034b565b610260565b6000546001600160a01b031633146101135760405162461bcd60e51b815260040161010a9061037b565b60405180910390fd5b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561017c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101a091906103b0565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509083169063a9059cbb906044016020604051808303816000875af11580156101f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061021791906103c9565b151560011461022557600080fd5b505050565b6000546001600160a01b031633146102545760405162461bcd60e51b815260040161010a9061037b565b61025e60006102fb565b565b6000546001600160a01b0316331461028a5760405162461bcd60e51b815260040161010a9061037b565b6001600160a01b0381166102ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161010a565b6102f8816102fb565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561035d57600080fd5b81356001600160a01b038116811461037457600080fd5b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156103c257600080fd5b5051919050565b6000602082840312156103db57600080fd5b8151801515811461037457600080fdfea26469706673582212205de6f3654b8224824150a664d516dd766f2207538f6763272b4c1cb1bf6f8a0664736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c806376d8039a1161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e14610774578063e2f45605146107ba578063f11a24d3146107d0578063f2fde38b146107e6578063f637434214610806578063f8b45b051461081c57600080fd5b8063bbc0c742146106c9578063c0246668146106e8578063c18bc19514610708578063c8c8ebe414610728578063d257b34f1461073e578063d85ba0631461075e57600080fd5b8063924de9b711610113578063924de9b71461063257806395d89b41146106525780639c3b4fdc146106675780639fccce321461067d578063a0d82dc514610693578063a9059cbb146106a957600080fd5b806376d8039a1461059f57806389a30271146105bf5780638a8c523c146105df5780638da5cb5b146105f45780638ea5220f1461061257600080fd5b8063313ce567116101e85780636a486a8e116101ac5780636a486a8e146104e95780636ddd1713146104ff57806370a082311461051f578063715018a614610555578063751039fc1461056a5780637571336a1461057f57600080fd5b8063313ce5671461042657806349bd5a5e146104425780634a62bb65146104765780634fbee1931461049057806366ca9b83146104c957600080fd5b806318160ddd1161023a57806318160ddd1461037b5780631816467f1461039a5780631a8145bb146103ba578063203e727e146103d057806323b872dd146103f057806327c8f8351461041057600080fd5b806302dbd8f81461028257806306fdde03146102a4578063095ea7b3146102cf57806310d5de53146102ff5780631694505e1461032f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612035565b610832565b005b3480156102b057600080fd5b506102b96108d2565b6040516102c69190612057565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046120c3565b610964565b60405190151581526020016102c6565b34801561030b57600080fd5b506102ef61031a3660046120ed565b60166020526000908152604090205460ff1681565b34801561033b57600080fd5b506103637f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c6565b34801561038757600080fd5b506002545b6040519081526020016102c6565b3480156103a657600080fd5b506102a26103b53660046120ed565b61097a565b3480156103c657600080fd5b5061038c60135481565b3480156103dc57600080fd5b506102a26103eb366004612108565b610a01565b3480156103fc57600080fd5b506102ef61040b366004612121565b610ade565b34801561041c57600080fd5b5061036361dead81565b34801561043257600080fd5b50604051601281526020016102c6565b34801561044e57600080fd5b506103637f0000000000000000000000002eda072ab9203cfdf22c8793602f2e1020fabec281565b34801561048257600080fd5b50600b546102ef9060ff1681565b34801561049c57600080fd5b506102ef6104ab3660046120ed565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104d557600080fd5b506102a26104e4366004612035565b610b88565b3480156104f557600080fd5b5061038c60105481565b34801561050b57600080fd5b50600b546102ef9062010000900460ff1681565b34801561052b57600080fd5b5061038c61053a3660046120ed565b6001600160a01b031660009081526020819052604090205490565b34801561056157600080fd5b506102a2610c1b565b34801561057657600080fd5b506102ef610c51565b34801561058b57600080fd5b506102a261059a36600461216b565b610c8e565b3480156105ab57600080fd5b50600f54610363906001600160a01b031681565b3480156105cb57600080fd5b50600654610363906001600160a01b031681565b3480156105eb57600080fd5b506102a2610ce3565b34801561060057600080fd5b506005546001600160a01b0316610363565b34801561061e57600080fd5b50600754610363906001600160a01b031681565b34801561063e57600080fd5b506102a261064d3660046121a2565b610d20565b34801561065e57600080fd5b506102b9610d66565b34801561067357600080fd5b5061038c600d5481565b34801561068957600080fd5b5061038c60145481565b34801561069f57600080fd5b5061038c60115481565b3480156106b557600080fd5b506102ef6106c43660046120c3565b610d75565b3480156106d557600080fd5b50600b546102ef90610100900460ff1681565b3480156106f457600080fd5b506102a261070336600461216b565b610d82565b34801561071457600080fd5b506102a2610723366004612108565b610e0b565b34801561073457600080fd5b5061038c60085481565b34801561074a57600080fd5b506102ef610759366004612108565b610edc565b34801561076a57600080fd5b5061038c600c5481565b34801561078057600080fd5b5061038c61078f3660046121bf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107c657600080fd5b5061038c60095481565b3480156107dc57600080fd5b5061038c600e5481565b3480156107f257600080fd5b506102a26108013660046120ed565b611033565b34801561081257600080fd5b5061038c60125481565b34801561082857600080fd5b5061038c600a5481565b6005546001600160a01b031633146108655760405162461bcd60e51b815260040161085c906121f2565b60405180910390fd5b60118290556012819055610879818361223d565b6010819055600a10156108ce5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085c565b5050565b6060600380546108e190612255565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612255565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b60006109713384846110ce565b50600192915050565b6005546001600160a01b031633146109a45760405162461bcd60e51b815260040161085c906121f2565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161085c906121f2565b670de0b6b3a76400006103e8610a4060025490565b610a4b90600161228f565b610a5591906122ae565b610a5f91906122ae565b811015610ac65760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161085c565b610ad881670de0b6b3a764000061228f565b60085550565b6000610aeb8484846111f2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b705760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161085c565b610b7d85338584036110ce565b506001949350505050565b6005546001600160a01b03163314610bb25760405162461bcd60e51b815260040161085c906121f2565b600d829055600e819055610bc6818361223d565b600c819055600a10156108ce5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085c565b6005546001600160a01b03163314610c455760405162461bcd60e51b815260040161085c906121f2565b610c4f600061184e565b565b6005546000906001600160a01b03163314610c7e5760405162461bcd60e51b815260040161085c906121f2565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cb85760405162461bcd60e51b815260040161085c906121f2565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d0d5760405162461bcd60e51b815260040161085c906121f2565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161085c906121f2565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108e190612255565b60006109713384846111f2565b6005546001600160a01b03163314610dac5760405162461bcd60e51b815260040161085c906121f2565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e355760405162461bcd60e51b815260040161085c906121f2565b670de0b6b3a76400006103e8610e4a60025490565b610e5590600561228f565b610e5f91906122ae565b610e6991906122ae565b811015610ec45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161085c565b610ed681670de0b6b3a764000061228f565b600a5550565b6005546000906001600160a01b03163314610f095760405162461bcd60e51b815260040161085c906121f2565b620186a0610f1660025490565b610f2190600161228f565b610f2b91906122ae565b821015610f985760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085c565b6103e8610fa460025490565b610faf90600561228f565b610fb991906122ae565b8211156110255760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085c565b50600981905560015b919050565b6005546001600160a01b0316331461105d5760405162461bcd60e51b815260040161085c906121f2565b6001600160a01b0381166110c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085c565b6110cb8161184e565b50565b6001600160a01b0383166111305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085c565b6001600160a01b0382166111915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112185760405162461bcd60e51b815260040161085c906122d0565b6001600160a01b03821661123e5760405162461bcd60e51b815260040161085c90612315565b8060000361125757611252838360006118a0565b505050565b600b5460ff161561152f576005546001600160a01b0384811691161480159061128e57506005546001600160a01b03838116911614155b80156112a257506001600160a01b03821615155b80156112b957506001600160a01b03821661dead14155b80156112cf5750600654600160a01b900460ff16155b1561152f57600b54610100900460ff16611367576001600160a01b03831660009081526015602052604090205460ff168061132257506001600160a01b03821660009081526015602052604090205460ff165b6113675760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085c565b7f0000000000000000000000002eda072ab9203cfdf22c8793602f2e1020fabec26001600160a01b0316836001600160a01b03161480156113c157506001600160a01b03821660009081526016602052604090205460ff16155b156114a5576008548111156114365760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085c565b600a546001600160a01b03831660009081526020819052604090205461145c908361223d565b11156114a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b61152f565b6001600160a01b03821660009081526016602052604090205460ff1661152f57600a546001600160a01b0383166000908152602081905260409020546114eb908361223d565b111561152f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b306000908152602081905260409020546009548110801590819061155b5750600b5462010000900460ff165b80156115715750600654600160a01b900460ff16155b80156115ae57507f0000000000000000000000002eda072ab9203cfdf22c8793602f2e1020fabec26001600160a01b0316846001600160a01b0316145b80156115d357506001600160a01b03851660009081526015602052604090205460ff16155b80156115f857506001600160a01b03841660009081526015602052604090205460ff16155b15611626576006805460ff60a01b1916600160a01b1790556116186119f5565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526015602052604090205460ff600160a01b90920482161591168061167457506001600160a01b03851660009081526015602052604090205460ff165b1561167d575060005b6000811561183a577f0000000000000000000000002eda072ab9203cfdf22c8793602f2e1020fabec26001600160a01b0316866001600160a01b03161480156116c857506000601054115b15611756576116ed60646116e760105488611a6a90919063ffffffff16565b90611a7d565b905060105460125482611700919061228f565b61170a91906122ae565b6013600082825461171b919061223d565b9091555050601054601154611730908361228f565b61173a91906122ae565b6014600082825461174b919061223d565b9091555061181c9050565b7f0000000000000000000000002eda072ab9203cfdf22c8793602f2e1020fabec26001600160a01b0316876001600160a01b031614801561179957506000600c54115b1561181c576117b860646116e7600c5488611a6a90919063ffffffff16565b9050600c54600e54826117cb919061228f565b6117d591906122ae565b601360008282546117e6919061223d565b9091555050600c54600d546117fb908361228f565b61180591906122ae565b60146000828254611816919061223d565b90915550505b801561182d5761182d8730836118a0565b6118378186612358565b94505b6118458787876118a0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118c65760405162461bcd60e51b815260040161085c906122d0565b6001600160a01b0382166118ec5760405162461bcd60e51b815260040161085c90612315565b6001600160a01b038316600090815260208190526040902054818110156119645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085c565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061199b90849061223d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611a105750565b600954611a1e90601461228f565b811115611a3657600954611a3390601461228f565b90505b60135415611a4f57611a49601354611a89565b60006013555b601454156110cb57611a62601454611c09565b600060145550565b6000611a76828461228f565b9392505050565b6000611a7682846122ae565b6000611a96826002611a7d565b90506000611aa48383611d6a565b6006546040516370a0823160e01b81523060048201529192506001600160a01b03169060009082906370a0823190602401602060405180830381865afa158015611af2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b16919061236f565b9050611b2184611d76565b600f546040516305f1261360e21b81523060048201526001600160a01b03909116906317c4984c90602401600060405180830381600087803b158015611b6657600080fd5b505af1158015611b7a573d6000803e3d6000fd5b50506040516370a0823160e01b815230600482015260009250611bf5915083906001600160a01b038616906370a0823190602401602060405180830381865afa158015611bcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bef919061236f565b90611d6a565b9050611c018482611e70565b505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c3e57611c3e61239e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611c6f57611c6f61239e565b60200260200101906001600160a01b031690816001600160a01b031681525050611cba307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ce565b6007546001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116916338ed1739918591600091869116611d0342610bb8612029565b6040518663ffffffff1660e01b8152600401611d239594939291906123b4565b6000604051808303816000875af1158015611d42573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112529190810190612425565b6000611a768284612358565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dab57611dab61239e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611ddc57611ddc61239e565b60200260200101906001600160a01b031690816001600160a01b031681525050611e27307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ce565b600f546001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116916338ed1739918591600091869116611d0342610bb8612029565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301526024820184905290911690819063095ea7b3906044016020604051808303816000875af1158015611ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0991906124e3565b50611f35307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d856110ce565b6006546007546001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263e8e337009230929182169188918891600091829116611f894261012c612029565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af1158015612005573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c019190612500565b6000611a76828461223d565b6000806040838503121561204857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561208457858101830151858201604001528201612068565b81811115612096576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461102e57600080fd5b600080604083850312156120d657600080fd5b6120df836120ac565b946020939093013593505050565b6000602082840312156120ff57600080fd5b611a76826120ac565b60006020828403121561211a57600080fd5b5035919050565b60008060006060848603121561213657600080fd5b61213f846120ac565b925061214d602085016120ac565b9150604084013590509250925092565b80151581146110cb57600080fd5b6000806040838503121561217e57600080fd5b612187836120ac565b915060208301356121978161215d565b809150509250929050565b6000602082840312156121b457600080fd5b8135611a768161215d565b600080604083850312156121d257600080fd5b6121db836120ac565b91506121e9602084016120ac565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561225057612250612227565b500190565b600181811c9082168061226957607f821691505b60208210810361228957634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156122a9576122a9612227565b500290565b6000826122cb57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561236a5761236a612227565b500390565b60006020828403121561238157600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124045784516001600160a01b0316835293830193918301916001016123df565b50506001600160a01b03969096166060850152505050608001529392505050565b6000602080838503121561243857600080fd5b825167ffffffffffffffff8082111561245057600080fd5b818501915085601f83011261246457600080fd5b81518181111561247657612476612388565b8060051b604051601f19603f8301168101818110858211171561249b5761249b612388565b6040529182528482019250838101850191888311156124b957600080fd5b938501935b828510156124d7578451845293850193928501926124be565b98975050505050505050565b6000602082840312156124f557600080fd5b8151611a768161215d565b60008060006060848603121561251557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220825380f03942fe5ec9956e0ebcd6aeff9146484c4b5b71aeb10dc3ab11a5536c64736f6c634300080f0033

Deployed Bytecode Sourcemap

32398:13172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37829:318;;;;;;;;;;-1:-1:-1;37829:318:0;;;;;:::i;:::-;;:::i;:::-;;8548:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10715:169;;;;;;;;;;-1:-1:-1;10715:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;10715:169:0;1306:187:1;33469:63:0;;;;;;;;;;-1:-1:-1;33469:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32474:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1880:32:1;;;1862:51;;1850:2;1835:18;32474:51:0;1689:230:1;9668:108:0;;;;;;;;;;-1:-1:-1;9756:12:0;;9668:108;;;2070:25:1;;;2058:2;2043:18;9668:108:0;1924:177:1;38345:189:0;;;;;;;;;;-1:-1:-1;38345:189:0;;;;;:::i;:::-;;:::i;33253:33::-;;;;;;;;;;;;;;;;36592:275;;;;;;;;;;-1:-1:-1;36592:275:0;;;;;:::i;:::-;;:::i;11366:492::-;;;;;;;;;;-1:-1:-1;11366:492:0;;;;;:::i;:::-;;:::i;32577:53::-;;;;;;;;;;;;32623:6;32577:53;;9510:93;;;;;;;;;;-1:-1:-1;9510:93:0;;9593:2;2974:36:1;;2962:2;2947:18;9510:93:0;2832:184:1;32532:38:0;;;;;;;;;;;;;;;32888:33;;;;;;;;;;-1:-1:-1;32888:33:0;;;;;;;;38544:126;;;;;;;;;;-1:-1:-1;38544:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38634:28:0;38610:4;38634:28;;;:19;:28;;;;;;;;;38544:126;37510:311;;;;;;;;;;-1:-1:-1;37510:311:0;;;;;:::i;:::-;;:::i;33148:28::-;;;;;;;;;;;;;;;;32968:30;;;;;;;;;;-1:-1:-1;32968:30:0;;;;;;;;;;;9839:127;;;;;;;;;;-1:-1:-1;9839:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9940:18:0;9913:7;9940:18;;;;;;;;;;;;9839:127;1783:103;;;;;;;;;;;;;:::i;35896:121::-;;;;;;;;;;;;;:::i;37139:167::-;;;;;;;;;;-1:-1:-1;37139:167:0;;;;;:::i;:::-;;:::i;33109:30::-;;;;;;;;;;-1:-1:-1;33109:30:0;;;;-1:-1:-1;;;;;33109:30:0;;;32637:64;;;;;;;;;;-1:-1:-1;32637:64:0;;;;-1:-1:-1;;;;;32637:64:0;;;35732:112;;;;;;;;;;;;;:::i;1132:87::-;;;;;;;;;;-1:-1:-1;1205:6:0;;-1:-1:-1;;;;;1205:6:0;1132:87;;32740:24;;;;;;;;;;-1:-1:-1;32740:24:0;;;;-1:-1:-1;;;;;32740:24:0;;;37402:100;;;;;;;;;;-1:-1:-1;37402:100:0;;;;;:::i;:::-;;:::i;8767:104::-;;;;;;;;;;;;;:::i;33041:24::-;;;;;;;;;;;;;;;;33293:27;;;;;;;;;;;;;;;;33183:25;;;;;;;;;;;;;;;;10179:175;;;;;;;;;;-1:-1:-1;10179:175:0;;;;;:::i;:::-;;:::i;32928:33::-;;;;;;;;;;-1:-1:-1;32928:33:0;;;;;;;;;;;38155:182;;;;;;;;;;-1:-1:-1;38155:182:0;;;;;:::i;:::-;;:::i;36875:256::-;;;;;;;;;;-1:-1:-1;36875:256:0;;;;;:::i;:::-;;:::i;32773:35::-;;;;;;;;;;;;;;;;36087:497;;;;;;;;;;-1:-1:-1;36087:497:0;;;;;:::i;:::-;;:::i;33007:27::-;;;;;;;;;;;;;;;;10417:151;;;;;;;;;;-1:-1:-1;10417:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10533:18:0;;;10506:7;10533:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10417:151;32815:33;;;;;;;;;;;;;;;;33072:30;;;;;;;;;;;;;;;;2041:201;;;;;;;;;;-1:-1:-1;2041:201:0;;;;;:::i;:::-;;:::i;33215:31::-;;;;;;;;;;;;;;;;32855:24;;;;;;;;;;;;;;;;37829:318;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;;;;;;;;;37948:10:::1;:20:::0;;;37979:16:::1;:32:::0;;;38038:29:::1;37998:13:::0;37961:7;38038:29:::1;:::i;:::-;38022:13;:45:::0;;;38103:2:::1;-1:-1:-1::0;38086:19:0::1;38078:61;;;::::0;-1:-1:-1;;;38078:61:0;;5031:2:1;38078:61:0::1;::::0;::::1;5013:21:1::0;5070:2;5050:18;;;5043:30;5109:31;5089:18;;;5082:59;5158:18;;38078:61:0::1;4829:353:1::0;38078:61:0::1;37829:318:::0;;:::o;8548:100::-;8602:13;8635:5;8628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8548:100;:::o;10715:169::-;10798:4;10815:39;584:10;10838:7;10847:6;10815:8;:39::i;:::-;-1:-1:-1;10872:4:0;10715:169;;;;:::o;38345:189::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;38481:9:::1;::::0;38450:41:::1;::::0;-1:-1:-1;;;;;38481:9:0;;::::1;::::0;38450:41;::::1;::::0;::::1;::::0;38481:9:::1;::::0;38450:41:::1;38502:9;:24:::0;;-1:-1:-1;;;;;;38502:24:0::1;-1:-1:-1::0;;;;;38502:24:0;;;::::1;::::0;;;::::1;::::0;;38345:189::o;36592:275::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;36729:4:::1;36721;36700:13;9756:12:::0;;;9668:108;36700:13:::1;:17;::::0;36716:1:::1;36700:17;:::i;:::-;36699:26;;;;:::i;:::-;36698:35;;;;:::i;:::-;36688:6;:45;;36666:142;;;::::0;-1:-1:-1;;;36666:142:0;;6169:2:1;36666:142:0::1;::::0;::::1;6151:21:1::0;6208:2;6188:18;;;6181:30;6247:34;6227:18;;;6220:62;-1:-1:-1;;;6298:18:1;;;6291:45;6353:19;;36666:142:0::1;5967:411:1::0;36666:142:0::1;36842:17;:6:::0;36852::::1;36842:17;:::i;:::-;36819:20;:40:::0;-1:-1:-1;36592:275:0:o;11366:492::-;11506:4;11523:36;11533:6;11541:9;11552:6;11523:9;:36::i;:::-;-1:-1:-1;;;;;11599:19:0;;11572:24;11599:19;;;:11;:19;;;;;;;;584:10;11599:33;;;;;;;;11651:26;;;;11643:79;;;;-1:-1:-1;;;11643:79:0;;6585:2:1;11643:79:0;;;6567:21:1;6624:2;6604:18;;;6597:30;6663:34;6643:18;;;6636:62;-1:-1:-1;;;6714:18:1;;;6707:38;6762:19;;11643:79:0;6383:404:1;11643:79:0;11758:57;11767:6;584:10;11808:6;11789:16;:25;11758:8;:57::i;:::-;-1:-1:-1;11846:4:0;;11366:492;-1:-1:-1;;;;11366:492:0:o;37510:311::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;37628:9:::1;:19:::0;;;37658:15:::1;:31:::0;;;37715:27:::1;37676:13:::0;37640:7;37715:27:::1;:::i;:::-;37700:12;:42:::0;;;37777:2:::1;-1:-1:-1::0;37761:18:0::1;37753:60;;;::::0;-1:-1:-1;;;37753:60:0;;5031:2:1;37753:60:0::1;::::0;::::1;5013:21:1::0;5070:2;5050:18;;;5043:30;5109:31;5089:18;;;5082:59;5158:18;;37753:60:0::1;4829:353:1::0;1783:103:0;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;1848:30:::1;1875:1;1848:18;:30::i;:::-;1783:103::o:0;35896:121::-;1205:6;;35948:4;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;-1:-1:-1;35965:14:0::1;:22:::0;;-1:-1:-1;;35965:22:0::1;::::0;;;35896:121;:::o;37139:167::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37252:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37252:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37139:167::o;35732:112::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;35787:13:::1;:20:::0;;-1:-1:-1;;35818:18:0;;;;;35732:112::o;37402:100::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;37473:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37473:21:0;;::::1;::::0;;;::::1;::::0;;37402:100::o;8767:104::-;8823:13;8856:7;8849:14;;;;;:::i;10179:175::-;10265:4;10282:42;584:10;10306:9;10317:6;10282:9;:42::i;38155:182::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38240:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38240:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38295:34;;1446:41:1;;;38295:34:0::1;::::0;1419:18:1;38295:34:0::1;;;;;;;38155:182:::0;;:::o;36875:256::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;37015:4:::1;37007;36986:13;9756:12:::0;;;9668:108;36986:13:::1;:17;::::0;37002:1:::1;36986:17;:::i;:::-;36985:26;;;;:::i;:::-;36984:35;;;;:::i;:::-;36974:6;:45;;36952:131;;;::::0;-1:-1:-1;;;36952:131:0;;6994:2:1;36952:131:0::1;::::0;::::1;6976:21:1::0;7033:2;7013:18;;;7006:30;7072:34;7052:18;;;7045:62;-1:-1:-1;;;7123:18:1;;;7116:34;7167:19;;36952:131:0::1;6792:400:1::0;36952:131:0::1;37106:17;:6:::0;37116::::1;37106:17;:::i;:::-;37094:9;:29:::0;-1:-1:-1;36875:256:0:o;36087:497::-;1205:6;;36195:4;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;36274:6:::1;36253:13;9756:12:::0;;;9668:108;36253:13:::1;:17;::::0;36269:1:::1;36253:17;:::i;:::-;36252:28;;;;:::i;:::-;36239:9;:41;;36217:144;;;::::0;-1:-1:-1;;;36217:144:0;;7399:2:1;36217:144:0::1;::::0;::::1;7381:21:1::0;7438:2;7418:18;;;7411:30;7477:34;7457:18;;;7450:62;-1:-1:-1;;;7528:18:1;;;7521:51;7589:19;;36217:144:0::1;7197:417:1::0;36217:144:0::1;36429:4;36408:13;9756:12:::0;;;9668:108;36408:13:::1;:17;::::0;36424:1:::1;36408:17;:::i;:::-;36407:26;;;;:::i;:::-;36394:9;:39;;36372:141;;;::::0;-1:-1:-1;;;36372:141:0;;7821:2:1;36372:141:0::1;::::0;::::1;7803:21:1::0;7860:2;7840:18;;;7833:30;7899:34;7879:18;;;7872:62;-1:-1:-1;;;7950:18:1;;;7943:50;8010:19;;36372:141:0::1;7619:416:1::0;36372:141:0::1;-1:-1:-1::0;36524:18:0::1;:30:::0;;;36572:4:::1;1423:1;36087:497:::0;;;:::o;2041:201::-;1205:6;;-1:-1:-1;;;;;1205:6:0;584:10;1352:23;1344:68;;;;-1:-1:-1;;;1344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2130:22:0;::::1;2122:73;;;::::0;-1:-1:-1;;;2122:73:0;;8242:2:1;2122:73:0::1;::::0;::::1;8224:21:1::0;8281:2;8261:18;;;8254:30;8320:34;8300:18;;;8293:62;-1:-1:-1;;;8371:18:1;;;8364:36;8417:19;;2122:73:0::1;8040:402:1::0;2122:73:0::1;2206:28;2225:8;2206:18;:28::i;:::-;2041:201:::0;:::o;14207:380::-;-1:-1:-1;;;;;14343:19:0;;14335:68;;;;-1:-1:-1;;;14335:68:0;;8649:2:1;14335:68:0;;;8631:21:1;8688:2;8668:18;;;8661:30;8727:34;8707:18;;;8700:62;-1:-1:-1;;;8778:18:1;;;8771:34;8822:19;;14335:68:0;8447:400:1;14335:68:0;-1:-1:-1;;;;;14422:21:0;;14414:68;;;;-1:-1:-1;;;14414:68:0;;9054:2:1;14414:68:0;;;9036:21:1;9093:2;9073:18;;;9066:30;9132:34;9112:18;;;9105:62;-1:-1:-1;;;9183:18:1;;;9176:32;9225:19;;14414:68:0;8852:398:1;14414:68:0;-1:-1:-1;;;;;14495:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14547:32;;2070:25:1;;;14547:32:0;;2043:18:1;14547:32:0;;;;;;;14207:380;;;:::o;38678:3460::-;-1:-1:-1;;;;;38810:18:0;;38802:68;;;;-1:-1:-1;;;38802:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38889:16:0;;38881:64;;;;-1:-1:-1;;;38881:64:0;;;;;;;:::i;:::-;38962:6;38972:1;38962:11;38958:93;;38990:28;39006:4;39012:2;39016:1;38990:15;:28::i;:::-;38678:3460;;;:::o;38958:93::-;39067:14;;;;39063:1430;;;1205:6;;-1:-1:-1;;;;;39120:15:0;;;1205:6;;39120:15;;;;:49;;-1:-1:-1;1205:6:0;;-1:-1:-1;;;;;39156:13:0;;;1205:6;;39156:13;;39120:49;:86;;;;-1:-1:-1;;;;;;39190:16:0;;;;39120:86;:128;;;;-1:-1:-1;;;;;;39227:21:0;;39241:6;39227:21;;39120:128;:158;;;;-1:-1:-1;39270:8:0;;-1:-1:-1;;;39270:8:0;;;;39269:9;39120:158;39098:1384;;;39318:13;;;;;;;39313:223;;-1:-1:-1;;;;;39390:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39419:23:0;;;;;;:19;:23;;;;;;;;39390:52;39356:160;;;;-1:-1:-1;;;39356:160:0;;10267:2:1;39356:160:0;;;10249:21:1;10306:2;10286:18;;;10279:30;-1:-1:-1;;;10325:18:1;;;10318:52;10387:18;;39356:160:0;10065:346:1;39356:160:0;39750:13;-1:-1:-1;;;;;39742:21:0;:4;-1:-1:-1;;;;;39742:21:0;;:82;;;;-1:-1:-1;;;;;;39789:35:0;;;;;;:31;:35;;;;;;;;39788:36;39742:82;39716:751;;;39911:20;;39901:6;:30;;39867:169;;;;-1:-1:-1;;;39867:169:0;;10618:2:1;39867:169:0;;;10600:21:1;10657:2;10637:18;;;10630:30;10696:34;10676:18;;;10669:62;-1:-1:-1;;;10747:18:1;;;10740:51;10808:19;;39867:169:0;10416:417:1;39867:169:0;40119:9;;-1:-1:-1;;;;;9940:18:0;;9913:7;9940:18;;;;;;;;;;;40093:22;;:6;:22;:::i;:::-;:35;;40059:140;;;;-1:-1:-1;;;40059:140:0;;11040:2:1;40059:140:0;;;11022:21:1;11079:2;11059:18;;;11052:30;-1:-1:-1;;;11098:18:1;;;11091:49;11157:18;;40059:140:0;10838:343:1;40059:140:0;39716:751;;;-1:-1:-1;;;;;40247:35:0;;;;;;:31;:35;;;;;;;;40242:225;;40367:9;;-1:-1:-1;;;;;9940:18:0;;9913:7;9940:18;;;;;;;;;;;40341:22;;:6;:22;:::i;:::-;:35;;40307:140;;;;-1:-1:-1;;;40307:140:0;;11040:2:1;40307:140:0;;;11022:21:1;11079:2;11059:18;;;11052:30;-1:-1:-1;;;11098:18:1;;;11091:49;11157:18;;40307:140:0;10838:343:1;40307:140:0;40554:4;40505:28;9940:18;;;;;;;;;;;40612;;40588:42;;;;;;;40661:35;;-1:-1:-1;40685:11:0;;;;;;;40661:35;:61;;;;-1:-1:-1;40714:8:0;;-1:-1:-1;;;40714:8:0;;;;40713:9;40661:61;:97;;;;;40745:13;-1:-1:-1;;;;;40739:19:0;:2;-1:-1:-1;;;;;40739:19:0;;40661:97;:140;;;;-1:-1:-1;;;;;;40776:25:0;;;;;;:19;:25;;;;;;;;40775:26;40661:140;:181;;;;-1:-1:-1;;;;;;40819:23:0;;;;;;:19;:23;;;;;;;;40818:24;40661:181;40643:313;;;40869:8;:15;;-1:-1:-1;;;;40869:15:0;-1:-1:-1;;;40869:15:0;;;40901:10;:8;:10::i;:::-;40928:8;:16;;-1:-1:-1;;;;40928:16:0;;;40643:313;40984:8;;-1:-1:-1;;;;;41094:25:0;;40968:12;41094:25;;;:19;:25;;;;;;40984:8;-1:-1:-1;;;40984:8:0;;;;;40983:9;;41094:25;;:52;;-1:-1:-1;;;;;;41123:23:0;;;;;;:19;:23;;;;;;;;41094:52;41090:100;;;-1:-1:-1;41173:5:0;41090:100;41202:12;41307:7;41303:782;;;41365:13;-1:-1:-1;;;;;41359:19:0;:2;-1:-1:-1;;;;;41359:19:0;;:40;;;;;41398:1;41382:13;;:17;41359:40;41355:580;;;41427:34;41457:3;41427:25;41438:13;;41427:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41420:41;;41528:13;;41509:16;;41502:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41480:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41596:13:0;;41583:10;;41576:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;41560:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;41355:580:0;;-1:-1:-1;41355:580:0;;41679:13;-1:-1:-1;;;;;41671:21:0;:4;-1:-1:-1;;;;;41671:21:0;;:41;;;;;41711:1;41696:12;;:16;41671:41;41667:268;;;41740:33;41769:3;41740:24;41751:12;;41740:6;:10;;:24;;;;:::i;:33::-;41733:40;;41839:12;;41821:15;;41814:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41792:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41905:12:0;;41893:9;;41886:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;41870:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;41667:268:0;41955:7;;41951:90;;41983:42;41999:4;42013;42020;41983:15;:42::i;:::-;42059:14;42069:4;42059:14;;:::i;:::-;;;41303:782;42097:33;42113:4;42119:2;42123:6;42097:15;:33::i;:::-;38791:3347;;;;38678:3460;;;:::o;2402:191::-;2495:6;;;-1:-1:-1;;;;;2512:17:0;;;-1:-1:-1;;;;;;2512:17:0;;;;;;;2545:40;;2495:6;;;2512:17;2495:6;;2545:40;;2476:16;;2545:40;2465:128;2402:191;:::o;12348:733::-;-1:-1:-1;;;;;12488:20:0;;12480:70;;;;-1:-1:-1;;;12480:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12569:23:0;;12561:71;;;;-1:-1:-1;;;12561:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12729:17:0;;12705:21;12729:17;;;;;;;;;;;12765:23;;;;12757:74;;;;-1:-1:-1;;;12757:74:0;;11518:2:1;12757:74:0;;;11500:21:1;11557:2;11537:18;;;11530:30;11596:34;11576:18;;;11569:62;-1:-1:-1;;;11647:18:1;;;11640:36;11693:19;;12757:74:0;11316:402:1;12757:74:0;-1:-1:-1;;;;;12867:17:0;;;:9;:17;;;;;;;;;;;12887:22;;;12867:42;;12931:20;;;;;;;;:30;;12903:6;;12867:9;12931:30;;12903:6;;12931:30;:::i;:::-;;;;;;;;12996:9;-1:-1:-1;;;;;12979:35:0;12988:6;-1:-1:-1;;;;;12979:35:0;;13007:6;12979:35;;;;2070:25:1;;2058:2;2043:18;;1924:177;12979:35:0;;;;;;;;12469:612;12348:733;;;:::o;44977:588::-;45060:4;45016:23;9940:18;;;;;;;;;;;;45084:20;;;45080:59;;45121:7;44977:588::o;45080:59::-;45173:18;;:23;;45194:2;45173:23;:::i;:::-;45155:15;:41;45151:115;;;45231:18;;:23;;45252:2;45231:23;:::i;:::-;45213:41;;45151:115;45282:18;;:22;45278:124;;45320:34;45335:18;;45320:14;:34::i;:::-;45389:1;45368:18;:22;45278:124;45427:12;;:16;45423:120;;45459:36;45482:12;;45459:22;:36::i;:::-;45525:1;45510:12;:16;45005:560;44977:588::o;19660:98::-;19718:7;19745:5;19749:1;19745;:5;:::i;:::-;19738:12;19660:98;-1:-1:-1;;;19660:98:0:o;20059:::-;20117:7;20144:5;20148:1;20144;:5;:::i;42818:1023::-;42928:12;42943:13;:6;42954:1;42943:10;:13::i;:::-;42928:28;-1:-1:-1;42967:17:0;42987:16;:6;42928:28;42987:10;:16::i;:::-;43043:4;;43349:37;;-1:-1:-1;;;43349:37:0;;43380:4;43349:37;;;1862:51:1;42967:36:0;;-1:-1:-1;;;;;;43043:4:0;;43014:19;;43043:4;;43349:22;;1835:18:1;;43349:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43324:62;;43431:23;43449:4;43431:17;:23::i;:::-;43535:11;;:39;;-1:-1:-1;;;43535:39:0;;43568:4;43535:39;;;1862:51:1;-1:-1:-1;;;;;43535:11:0;;;;:24;;1835:18:1;;43535:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43655:37:0;;-1:-1:-1;;;43655:37:0;;43686:4;43655:37;;;1862:51:1;43634:18:0;;-1:-1:-1;43655:81:0;;-1:-1:-1;43711:14:0;;-1:-1:-1;;;;;43655:22:0;;;;;1835:18:1;;43655:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;:81::i;:::-;43634:102;;43786:35;43799:9;43810:10;43786:12;:35::i;:::-;42866:975;;;;;42818:1023;:::o;44415:556::-;44571:16;;;44585:1;44571:16;;;;;;;;44547:21;;44571:16;;;;;;;;;;-1:-1:-1;44571:16:0;44547:40;;44616:4;44598;44603:1;44598:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44598:23:0;;;:7;;;;;;;;;:23;44642:4;;44632:7;;44642:4;;;44632;;44642;;44632:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;44632:14:0;;;-1:-1:-1;;;;;44632:14:0;;;;;44659:62;44676:4;44691:15;44709:11;44659:8;:62::i;:::-;44903:9;;-1:-1:-1;;;;;44759:15:0;:40;;;;;44814:11;;44840:1;;44884:4;;44903:9;44927:25;:15;44947:4;44927:19;:25::i;:::-;44759:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44759:204:0;;;;;;;;;;;;:::i;19303:98::-;19361:7;19388:5;19392:1;19388;:5;:::i;43847:562::-;43998:16;;;44012:1;43998:16;;;;;;;;43974:21;;43998:16;;;;;;;;;;-1:-1:-1;43998:16:0;43974:40;;44043:4;44025;44030:1;44025:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44025:23:0;;;:7;;;;;;;;;:23;44069:4;;44059:7;;44069:4;;;44059;;44069;;44059:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;44059:14:0;;;-1:-1:-1;;;;;44059:14:0;;;;;44086:62;44103:4;44118:15;44136:11;44086:8;:62::i;:::-;44338:11;;-1:-1:-1;;;;;44186:15:0;:40;;;;;44241:11;;44267:1;;44311:4;;44338:11;44365:25;:15;44385:4;44365:19;:25::i;42146:664::-;42324:4;;42340:58;;-1:-1:-1;;;42340:58:0;;-1:-1:-1;;;;;42369:15:0;14463:32:1;;42340:58:0;;;14445:51:1;14512:18;;;14505:34;;;42324:4:0;;;;;;42340:20;;14418:18:1;;42340:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42411:62;42428:4;42443:15;42461:11;42411:8;:62::i;:::-;42587:4;;42743:9;;-1:-1:-1;;;;;42516:15:0;:28;;;;;42567:4;;42587;;;;42606:11;;42632:10;;42587:4;;;;42743:9;42767:24;:15;42787:3;42767:19;:24::i;:::-;42516:286;;;;;;-1:-1:-1;;;;;;42516:286:0;;;-1:-1:-1;;;;;15215:15:1;;;42516:286:0;;;15197:34:1;15267:15;;;15247:18;;;15240:43;15299:18;;;15292:34;;;;15342:18;;;15335:34;;;;15385:19;;;15378:35;;;;15429:19;;;15422:35;15494:15;;;15473:19;;;15466:44;15526:19;;;15519:35;;;;15131:19;;42516:286:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;18922:98::-;18980:7;19007:5;19011:1;19007;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2106:180::-;2165:6;2218:2;2206:9;2197:7;2193:23;2189:32;2186:52;;;2234:1;2231;2224:12;2186:52;-1:-1:-1;2257:23:1;;2106:180;-1:-1:-1;2106:180:1:o;2291:328::-;2368:6;2376;2384;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2476:29;2495:9;2476:29;:::i;:::-;2466:39;;2524:38;2558:2;2547:9;2543:18;2524:38;:::i;:::-;2514:48;;2609:2;2598:9;2594:18;2581:32;2571:42;;2291:328;;;;;:::o;3021:118::-;3107:5;3100:13;3093:21;3086:5;3083:32;3073:60;;3129:1;3126;3119:12;3144:315;3209:6;3217;3270:2;3258:9;3249:7;3245:23;3241:32;3238:52;;;3286:1;3283;3276:12;3238:52;3309:29;3328:9;3309:29;:::i;:::-;3299:39;;3388:2;3377:9;3373:18;3360:32;3401:28;3423:5;3401:28;:::i;:::-;3448:5;3438:15;;;3144:315;;;;;:::o;3692:241::-;3748:6;3801:2;3789:9;3780:7;3776:23;3772:32;3769:52;;;3817:1;3814;3807:12;3769:52;3856:9;3843:23;3875:28;3897:5;3875:28;:::i;3938:260::-;4006:6;4014;4067:2;4055:9;4046:7;4042:23;4038:32;4035:52;;;4083:1;4080;4073:12;4035:52;4106:29;4125:9;4106:29;:::i;:::-;4096:39;;4154:38;4188:2;4177:9;4173:18;4154:38;:::i;:::-;4144:48;;3938:260;;;;;:::o;4203:356::-;4405:2;4387:21;;;4424:18;;;4417:30;4483:34;4478:2;4463:18;;4456:62;4550:2;4535:18;;4203:356::o;4564:127::-;4625:10;4620:3;4616:20;4613:1;4606:31;4656:4;4653:1;4646:15;4680:4;4677:1;4670:15;4696:128;4736:3;4767:1;4763:6;4760:1;4757:13;4754:39;;;4773:18;;:::i;:::-;-1:-1:-1;4809:9:1;;4696:128::o;5187:380::-;5266:1;5262:12;;;;5309;;;5330:61;;5384:4;5376:6;5372:17;5362:27;;5330:61;5437:2;5429:6;5426:14;5406:18;5403:38;5400:161;;5483:10;5478:3;5474:20;5471:1;5464:31;5518:4;5515:1;5508:15;5546:4;5543:1;5536:15;5400:161;;5187:380;;;:::o;5572:168::-;5612:7;5678:1;5674;5670:6;5666:14;5663:1;5660:21;5655:1;5648:9;5641:17;5637:45;5634:71;;;5685:18;;:::i;:::-;-1:-1:-1;5725:9:1;;5572:168::o;5745:217::-;5785:1;5811;5801:132;;5855:10;5850:3;5846:20;5843:1;5836:31;5890:4;5887:1;5880:15;5918:4;5915:1;5908:15;5801:132;-1:-1:-1;5947:9:1;;5745:217::o;9255:401::-;9457:2;9439:21;;;9496:2;9476:18;;;9469:30;9535:34;9530:2;9515:18;;9508:62;-1:-1:-1;;;9601:2:1;9586:18;;9579:35;9646:3;9631:19;;9255:401::o;9661:399::-;9863:2;9845:21;;;9902:2;9882:18;;;9875:30;9941:34;9936:2;9921:18;;9914:62;-1:-1:-1;;;10007:2:1;9992:18;;9985:33;10050:3;10035:19;;9661:399::o;11186:125::-;11226:4;11254:1;11251;11248:8;11245:34;;;11259:18;;:::i;:::-;-1:-1:-1;11296:9:1;;11186:125::o;11723:184::-;11793:6;11846:2;11834:9;11825:7;11821:23;11817:32;11814:52;;;11862:1;11859;11852:12;11814:52;-1:-1:-1;11885:16:1;;11723:184;-1:-1:-1;11723:184:1:o;11912:127::-;11973:10;11968:3;11964:20;11961:1;11954:31;12004:4;12001:1;11994:15;12028:4;12025:1;12018:15;12044:127;12105:10;12100:3;12096:20;12093:1;12086:31;12136:4;12133:1;12126:15;12160:4;12157:1;12150:15;12176:980;12438:4;12486:3;12475:9;12471:19;12517:6;12506:9;12499:25;12543:2;12581:6;12576:2;12565:9;12561:18;12554:34;12624:3;12619:2;12608:9;12604:18;12597:31;12648:6;12683;12677:13;12714:6;12706;12699:22;12752:3;12741:9;12737:19;12730:26;;12791:2;12783:6;12779:15;12765:29;;12812:1;12822:195;12836:6;12833:1;12830:13;12822:195;;;12901:13;;-1:-1:-1;;;;;12897:39:1;12885:52;;12992:15;;;;12957:12;;;;12933:1;12851:9;12822:195;;;-1:-1:-1;;;;;;;13073:32:1;;;;13068:2;13053:18;;13046:60;-1:-1:-1;;;13137:3:1;13122:19;13115:35;13034:3;12176:980;-1:-1:-1;;;12176:980:1:o;13161:1105::-;13256:6;13287:2;13330;13318:9;13309:7;13305:23;13301:32;13298:52;;;13346:1;13343;13336:12;13298:52;13379:9;13373:16;13408:18;13449:2;13441:6;13438:14;13435:34;;;13465:1;13462;13455:12;13435:34;13503:6;13492:9;13488:22;13478:32;;13548:7;13541:4;13537:2;13533:13;13529:27;13519:55;;13570:1;13567;13560:12;13519:55;13599:2;13593:9;13621:2;13617;13614:10;13611:36;;;13627:18;;:::i;:::-;13673:2;13670:1;13666:10;13705:2;13699:9;13768:2;13764:7;13759:2;13755;13751:11;13747:25;13739:6;13735:38;13823:6;13811:10;13808:22;13803:2;13791:10;13788:18;13785:46;13782:72;;;13834:18;;:::i;:::-;13870:2;13863:22;13920:18;;;13954:15;;;;-1:-1:-1;13996:11:1;;;13992:20;;;14024:19;;;14021:39;;;14056:1;14053;14046:12;14021:39;14080:11;;;;14100:135;14116:6;14111:3;14108:15;14100:135;;;14182:10;;14170:23;;14133:12;;;;14213;;;;14100:135;;;14254:6;13161:1105;-1:-1:-1;;;;;;;;13161:1105:1:o;14550:245::-;14617:6;14670:2;14658:9;14649:7;14645:23;14641:32;14638:52;;;14686:1;14683;14676:12;14638:52;14718:9;14712:16;14737:28;14759:5;14737:28;:::i;15565:306::-;15653:6;15661;15669;15722:2;15710:9;15701:7;15697:23;15693:32;15690:52;;;15738:1;15735;15728:12;15690:52;15767:9;15761:16;15751:26;;15817:2;15806:9;15802:18;15796:25;15786:35;;15861:2;15850:9;15846:18;15840:25;15830:35;;15565:306;;;;;:::o

Swarm Source

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