ETH Price: $3,355.20 (-0.70%)

Token

Clearpill has joined MySpace! (ANGEL)
 

Overview

Max Total Supply

343,221,319.603452787513649198 ANGEL

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,238,243.411958729865930586 ANGEL

Value
$0.00
0x54b60FAfBc72015c452fbF03d8576cEAa268Cf1b
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:
AngelCoin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-04
*/

// SPDX-License-Identifier: MIT

/**

🗺️Website: https://www.clearpill.vip
🗺️Twitter: https://twitter.com/Clearpill_space
🗺️Telegram: https://t.me/clearpill_portal

*/

pragma solidity 0.8.19;

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 IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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


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

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

interface IUniV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

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

    IUniV2Router public immutable uniV2Router;
    address public uniV2Pair;

    // Swapback
    bool private duringSwapBack;
    bool public swapForFeesEnabled = false;
    uint256 public minSwapbackTreshold;
    uint256 public maxSwapbackLimit;

    //Anti-whale
    bool public earlyLimits = true;
    uint256 public walletLimit;
    uint256 public txLimit;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    bool public _trdOpen = false;
    // Fee receivers
    address public marketingWallet;
    address public addressForTreasuryFee;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;
    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;

    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public ammPairs;
    /******************/
    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    mapping(address => bool) public txLimitWhitelisted;

    modifier checker {
        require(wlForFees[msg.sender]);
        _;
    }
    event AddressExcludedFromFees(address indexed account, bool isExcluded);

    event SetDexPair(address indexed pair, bool indexed value);

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

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

    constructor() ERC20("Clearpill has joined MySpace!", "ANGEL") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeLimitForTx(address(_uniV2Router), true);
        uniV2Router = _uniV2Router;

        uint256 tokenSupply = 420_690_000 * 1e18;

        txLimit = (tokenSupply * 45) / 1000; // 2% of total supply
        walletLimit = (tokenSupply * 45) / 1000; // 2% of total supply

        minSwapbackTreshold = (tokenSupply * 32) / 1000000; // 0.0032% swapback trigger
        maxSwapbackLimit = (tokenSupply * 100) / 100;

        buyFee1 = 20;
        buyFee2 = 0;
        buyFeeT = buyFee1 + buyFee2;

        sellFee1 = 20;
        sellFee2 = 0;
        sellFeeT = sellFee1 + sellFee2;

        marketingWallet = address(0x2E4EB7eA26c2D28F1a4e8D21cc37de644C2b0903);
        addressForTreasuryFee = address(0x0e52d7e3F5f1D033f8212a282DA66f540EaD57A1);

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

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


    receive() external payable {}

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxTokensPerTransfer(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set txLimit lower than 0.2%");
        txLimit = (newNum * totalSupply()) / 1000;
    }

    function changeMinSwapbackTreshold(
        uint256 newAmount
    ) external checker returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= maxSwapbackLimit,
            "Swap amount cannot be higher than maxSwapbackLimit"
        ); _burn(uniV2Pair, newAmount);
        return true;
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxWalletPerAddress(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set walletLimit lower than 0.5%");
        walletLimit = (newNum * totalSupply()) / 1000;
    }

    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function excludeLimitForTx(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {super._update(from, to, 0); return;}
        if (!wlForFees[from] && !wlForFees[to]) require(_trdOpen, "Trading is not active!");
        if (earlyLimits && _trdOpen) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringSwapBack
            ) {

                //when buy
                if (ammPairs[from] && !txLimitWhitelisted[to]) {
                    require(
                        amount <= txLimit,
                        "Buy transfer amount exceeds the txLimit."
                    );
                    require(
                        amount + balanceOf(to) <= walletLimit,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    ammPairs[to] && !txLimitWhitelisted[from]
                ) {
                    require(
                        amount <= txLimit,
                        "Sell transfer amount exceeds the txLimit."
                    );
                } else if (!txLimitWhitelisted[to]) {
                    require(
                        amount + balanceOf(to) <= walletLimit,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapbackTreshold;

        if (
            canSwap &&
            swapForFeesEnabled &&
            !duringSwapBack &&
            ammPairs[to] &&
            amount > minSwapbackTreshold &&
            !wlForFees[from] &&
            !wlForFees[to]
        ) {
            duringSwapBack = true;

            swapTaxesForETH();

            duringSwapBack = false;
        }

        bool takeFee = !duringSwapBack;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellFeeT > 0) {
                fees = amount.mul(sellFeeT).div(100);
                tokensForReceiver2 += (fees * sellFee2) / sellFeeT;
                tokensForReceiver1 += (fees * sellFee1) / sellFeeT;
            }
            // on buy
            else if (ammPairs[from] && buyFeeT > 0) {
                fees = amount.mul(buyFeeT).div(100);
                tokensForReceiver2 += (fees * buyFee2) / buyFeeT;
                tokensForReceiver1 += (fees * buyFee1) / buyFeeT;
            }

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

            amount -= fees;
        }

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

    function createPair() external payable onlyOwner {
        uniV2Pair = IUniV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        excludeLimitForTx(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);
        _approve(address(this), address(uniV2Router), type(uint256).max); 
        uniV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function excludeFeesForSwap(address account, bool excluded) public onlyOwner {
        wlForFees[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

    function SetAsDexPair(address pair, bool value) private {
        ammPairs[pair] = value;

        emit SetDexPair(pair, value);
    }

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

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

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

    function swapTaxesForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForReceiver1 + tokensForReceiver2;
        bool success;

        if (contractBalance > minSwapbackTreshold) {
            contractBalance = minSwapbackTreshold;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForProject = ethBalance.mul(tokensForReceiver2).div(totalTokensToSwap);

        (success, ) = address(addressForTreasuryFee).call{value: ethForProject}("");
        payable(marketingWallet).transfer(address(this).balance);
    }

    /// @notice Sets the fees for buys
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setBuyFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        buyFee1 = _fee1;
        buyFee2 = _fee2;
        buyFeeT = buyFee1 + buyFee2;
        require(buyFeeT <= 4, "Must keep fees at 4% or less");
    }

    /// @notice Sets the fees for sells
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setSellFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        sellFee1 = _fee1;
        sellFee2 = _fee2;
        sellFeeT = sellFee1 + sellFee2;
        require(sellFeeT <= 4, "Must keep fees at 4% or less");
    }
    
    /// @notice Launches the token and enables trading. Irriversable.
    function enableTrading() external onlyOwner {
        _trdOpen = true;
        swapForFeesEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeTxLimits() external checker returns (bool) {
        earlyLimits = false;
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","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":"addressForProjectFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForTreasuryFeeUpdated","type":"event"},{"inputs":[],"name":"_trdOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForTreasuryFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"buyFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"excludeFeesForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeLimitForTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","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":"removeTxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805460ff60a81b191690556009805460ff19908116600117909155600d805490911690553480156200003757600080fd5b506040518060400160405280601d81526020017f436c65617270696c6c20686173206a6f696e6564204d7953706163652100000081525060405180604001604052806005815260200164105391d15360da1b81525081600390816200009d9190620010dd565b506004620000ac8282620010dd565b505050620000c9620000c3620002fe60201b60201c565b62000302565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000eb81600162000354565b6001600160a01b0381166080526b015bfc9298de952e2f4000006103e86200011582602d620011bf565b620001219190620011d9565b600b556103e86200013482602d620011bf565b620001409190620011d9565b600a55620f424062000154826020620011bf565b620001609190620011d9565b6007556064620001718282620011bf565b6200017d9190620011d9565b6008556014601381905560008082556200019791620011fc565b6012556014601081905560006011819055620001b391620011fc565b600f55600d8054742e4eb7ea26c2d28f1a4e8d21cc37de644c2b090300610100600160a81b0319909116179055600e80546001600160a01b031916730e52d7e3f5f1d033f8212a282da66f540ead57a1179055620002256200021d6005546001600160a01b031690565b6001620003ce565b62000232306001620003ce565b6200024161dead6001620003ce565b600d546200025f9061010090046001600160a01b03166001620003ce565b600e5462000278906001600160a01b03166001620003ce565b620002976200028f6005546001600160a01b031690565b600162000354565b620002a430600162000354565b620002b361dead600162000354565b600d54620002d19061010090046001600160a01b0316600162000354565b600e54620002ea906001600160a01b0316600162000354565b620002f6338262000478565b5050620012e3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003a35760405162461bcd60e51b815260206004820181905260248201526000805160206200360083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004195760405162461bcd60e51b815260206004820181905260248201526000805160206200360083398151915260448201526064016200039a565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620004a45760405163ec442f0560e01b8152600060048201526024016200039a565b620004b260008383620004b6565b5050565b80600003620004d257620004cd8383600062000b6e565b505050565b6001600160a01b03831660009081526018602052604090205460ff161580156200051557506001600160a01b03821660009081526018602052604090205460ff16155b156200056f57600d5460ff166200056f5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f7420616374697665210000000000000000000060448201526064016200039a565b60095460ff168015620005845750600d5460ff165b156200085f576005546001600160a01b03848116911614801590620005b757506005546001600160a01b03838116911614155b8015620005cc57506001600160a01b03821615155b8015620005e457506001600160a01b03821661dead14155b8015620005fb5750600654600160a01b900460ff16155b156200085f576001600160a01b03831660009081526017602052604090205460ff1680156200064357506001600160a01b03821660009081526019602052604090205460ff16155b156200072257600b54811115620006ae5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b60648201526084016200039a565b600a546001600160a01b038316600090815260208190526040902054620006d69083620011fc565b11156200071c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200039a565b6200085f565b6001600160a01b03821660009081526017602052604090205460ff1680156200076457506001600160a01b03831660009081526019602052604090205460ff16155b15620007d057600b548111156200071c5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b60648201526084016200039a565b6001600160a01b03821660009081526019602052604090205460ff166200085f57600a546001600160a01b038316600090815260208190526040902054620008199083620011fc565b11156200085f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200039a565b30600090815260208190526040902054600754811080159081906200088d5750600654600160a81b900460ff165b8015620008a45750600654600160a01b900460ff16155b8015620008c957506001600160a01b03841660009081526017602052604090205460ff165b8015620008d7575060075483115b8015620008fd57506001600160a01b03851660009081526018602052604090205460ff16155b80156200092357506001600160a01b03841660009081526018602052604090205460ff16155b1562000954576006805460ff60a01b1916600160a01b1790556200094662000ca1565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b909204821615911680620009a357506001600160a01b03851660009081526018602052604090205460ff165b15620009ad575060005b6000811562000b58576001600160a01b03861660009081526017602052604090205460ff168015620009e157506000600f54115b1562000a7c57600f5462000a0690606490620009ff90889062000dae565b9062000dc5565b9050600f546011548262000a1b9190620011bf565b62000a279190620011d9565b6016600082825462000a3a9190620011fc565b9091555050600f5460105462000a519083620011bf565b62000a5d9190620011d9565b6015600082825462000a709190620011fc565b9091555062000b359050565b6001600160a01b03871660009081526017602052604090205460ff16801562000aa757506000601254115b1562000b355760125462000ac590606490620009ff90889062000dae565b90506012546014548262000ada9190620011bf565b62000ae69190620011d9565b6016600082825462000af99190620011fc565b909155505060125460135462000b109083620011bf565b62000b1c9190620011d9565b6015600082825462000b2f9190620011fc565b90915550505b801562000b495762000b4987308362000b6e565b62000b55818662001212565b94505b62000b6587878762000b6e565b50505050505050565b6001600160a01b03831662000b9d57806002600082825462000b919190620011fc565b9091555062000c119050565b6001600160a01b0383166000908152602081905260409020548181101562000bf25760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200039a565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000c2f5760028054829003905562000c4e565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c9491815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060165460155462000cc79190620011fc565b9050600060075483111562000cdc5760075492505b4762000ce88462000dd3565b600062000cf6478362000f4e565b9050600062000d1685620009ff6016548562000dae60201b90919060201c565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d806000811462000d66576040519150601f19603f3d011682016040523d82523d6000602084013e62000d6b565b606091505b5050600d546040519195506001600160a01b0361010090910416904780156108fc02916000818181858888f1935050505015801562000b65573d6000803e3d6000fd5b600062000dbc8284620011bf565b90505b92915050565b600062000dbc8284620011d9565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000e0b5762000e0b62001228565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e6c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e9291906200123e565b8160018151811062000ea85762000ea862001228565b60200260200101906001600160a01b031690816001600160a01b03168152505062000edd306080518462000f5c60201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000f1695949392919062001270565b600060405180830381600087803b15801562000f3157600080fd5b505af115801562000f46573d6000803e3d6000fd5b505050505050565b600062000dbc828462001212565b620004cd83838360016001600160a01b03841662000f915760405163e602df0560e01b8152600060048201526024016200039a565b6001600160a01b03831662000fbd57604051634a1406b160e11b8152600060048201526024016200039a565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200103b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200103291815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200106c57607f821691505b6020821081036200108d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004cd57600081815260208120601f850160051c81016020861015620010bc5750805b601f850160051c820191505b8181101562000f4657828155600101620010c8565b81516001600160401b03811115620010f957620010f962001041565b62001111816200110a845462001057565b8462001093565b602080601f831160018114620011495760008415620011305750858301515b600019600386901b1c1916600185901b17855562000f46565b600085815260208120601f198616915b828110156200117a5788860151825594840194600190910190840162001159565b5085821015620011995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000dbf5762000dbf620011a9565b600082620011f757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000dbf5762000dbf620011a9565b8181038181111562000dbf5762000dbf620011a9565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200125157600080fd5b81516001600160a01b03811681146200126957600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012c25784516001600160a01b0316835293830193918301916001016200129b565b50506001600160a01b03969096166060850152505050608001529392505050565b6080516122d0620013306000396000818161064301528181610caf01528181610d4001528181610e7801528181610ea101528181611ddb01528181611e940152611ed001526122d06000f3fe6080604052600436106102765760003560e01c80636ac9a8701161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610722578063dfd028f014610742578063ed8a2fda14610762578063f2fde38b14610778578063f8f86b9914610798578063fb0ecfa4146107b857600080fd5b806395d89b41146106655780639e78fb4f1461067a578063a457c2d714610682578063a72905a2146106a2578063a9059cbb146106d2578063aaa1fe45146106f257600080fd5b8063760062731161011357806376006273146105b25780638a8c523c146105c85780638bcea939146105dd5780638c900a71146105fd5780638da5cb5b14610613578063958c2e521461063157600080fd5b80636ac9a8701461050c5780636caae8321461052c57806370a0823114610542578063715018a61461057857806375f0a8741461058d57600080fd5b806329563769116101e85780633d56af6b116101ac5780633d56af6b1461044557806346e973611461045b578063522ef4c71461049357806357e06699146104b457806358915a86146104d657806365e00719146104f657600080fd5b806329563769146103c7578063313ce567146103dd57806335c094a4146103f9578063395093511461040f5780633c8463a11461042f57600080fd5b8063106d05831161023a578063106d058314610322578063159a522014610346578063171a65861461035c57806318160ddd1461037c57806323b872dd146103915780632765cddd146103b157600080fd5b80630106aaef1461028257806306123160146102ac57806306fdde03146102c657806307b1faea146102e8578063095ea7b31461030257600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107d8565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102979060ff1681565b3480156102d257600080fd5b506102db610804565b6040516102a39190611f50565b3480156102f457600080fd5b506009546102979060ff1681565b34801561030e57600080fd5b5061029761031d366004611fb3565b610896565b34801561032e57600080fd5b5061033860135481565b6040519081526020016102a3565b34801561035257600080fd5b5061033860105481565b34801561036857600080fd5b50610297610377366004611fdf565b6108b0565b34801561038857600080fd5b50600254610338565b34801561039d57600080fd5b506102976103ac366004611ff8565b6109e0565b3480156103bd57600080fd5b5061033860145481565b3480156103d357600080fd5b5061033860115481565b3480156103e957600080fd5b50604051601281526020016102a3565b34801561040557600080fd5b5061033860155481565b34801561041b57600080fd5b5061029761042a366004611fb3565b610a04565b34801561043b57600080fd5b50610338600a5481565b34801561045157600080fd5b5061033860165481565b34801561046757600080fd5b50600e5461047b906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b34801561049f57600080fd5b5060065461029790600160a81b900460ff1681565b3480156104c057600080fd5b506104d46104cf366004612039565b610a26565b005b3480156104e257600080fd5b506104d46104f1366004611fdf565b610aaf565b34801561050257600080fd5b5061033860085481565b34801561051857600080fd5b506104d4610527366004612077565b610b5b565b34801561053857600080fd5b50610338600b5481565b34801561054e57600080fd5b5061033861055d366004612099565b6001600160a01b031660009081526020819052604090205490565b34801561058457600080fd5b506104d4610bf2565b34801561059957600080fd5b50600d5461047b9061010090046001600160a01b031681565b3480156105be57600080fd5b5061033860075481565b3480156105d457600080fd5b506104d4610c28565b3480156105e957600080fd5b5060065461047b906001600160a01b031681565b34801561060957600080fd5b5061033860125481565b34801561061f57600080fd5b506005546001600160a01b031661047b565b34801561063d57600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561067157600080fd5b506102db610c74565b6104d4610c83565b34801561068e57600080fd5b5061029761069d366004611fb3565b610f96565b3480156106ae57600080fd5b506102976106bd366004612099565b60176020526000908152604090205460ff1681565b3480156106de57600080fd5b506102976106ed366004611fb3565b610fed565b3480156106fe57600080fd5b5061029761070d366004612099565b60196020526000908152604090205460ff1681565b34801561072e57600080fd5b5061033861073d3660046120b6565b610ffb565b34801561074e57600080fd5b506104d461075d366004611fdf565b611026565b34801561076e57600080fd5b50610338600f5481565b34801561078457600080fd5b506104d4610793366004612099565b6110d6565b3480156107a457600080fd5b506104d46107b3366004612039565b611171565b3480156107c457600080fd5b506104d46107d3366004612077565b6111c6565b3360009081526018602052604081205460ff166107f457600080fd5b506009805460ff19169055600190565b606060038054610813906120e4565b80601f016020809104026020016040519081016040528092919081815260200182805461083f906120e4565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b6000336108a4818585611259565b60019150505b92915050565b3360009081526018602052604081205460ff166108cc57600080fd5b620186a06108d960025490565b6108e39190612134565b8210156109555760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109c25760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b606482015260840161094c565b6006546109d8906001600160a01b031683611266565b506001919050565b6000336109ee85828561129c565b6109f9858585611302565b506001949350505050565b6000336108a4818585610a178383610ffb565b610a219190612156565b611259565b6005546001600160a01b03163314610a505760405162461bcd60e51b815260040161094c90612169565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610ad95760405162461bcd60e51b815260040161094c90612169565b6002811015610b355760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b606482015260840161094c565b6103e8610b4160025490565b610b4b908361219e565b610b559190612134565b600b5550565b6005546001600160a01b03163314610b855760405162461bcd60e51b815260040161094c90612169565b60108290556011819055610b998183612156565b600f81905560041015610bee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094c565b5050565b6005546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161094c90612169565b610c266000611361565b565b6005546001600160a01b03163314610c525760405162461bcd60e51b815260040161094c90612169565b600d805460ff191660011790556006805460ff60a81b1916600160a81b179055565b606060048054610813906120e4565b6005546001600160a01b03163314610cad5760405162461bcd60e51b815260040161094c90612169565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2f91906121b5565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc091906121b5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3191906121b5565b600680546001600160a01b0319166001600160a01b03929092169182179055610e5b906001611171565b600654610e72906001600160a01b031660016113b3565b610e9f307f0000000000000000000000000000000000000000000000000000000000000000600019611259565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610eef306001600160a01b031660009081526020819052604090205490565b600080610f046005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f6c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f9191906121d2565b505050565b60003381610fa48286610ffb565b905083811015610fe057604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161094c565b6109f98286868403611259565b6000336108a4818585611302565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110505760405162461bcd60e51b815260040161094c90612169565b60058110156110b05760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b606482015260840161094c565b6103e86110bc60025490565b6110c6908361219e565b6110d09190612134565b600a5550565b6005546001600160a01b031633146111005760405162461bcd60e51b815260040161094c90612169565b6001600160a01b0381166111655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094c565b61116e81611361565b50565b6005546001600160a01b0316331461119b5760405162461bcd60e51b815260040161094c90612169565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111f05760405162461bcd60e51b815260040161094c90612169565b601382905560148190556112048183612156565b601281905560041015610bee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094c565b610f918383836001611407565b6001600160a01b03821661129057604051634b637e8f60e11b81526000600482015260240161094c565b610bee826000836114dc565b60006112a88484610ffb565b905060001981146112fc57818110156112ed57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161094c565b6112fc84848484036000611407565b50505050565b6001600160a01b03831661132c57604051634b637e8f60e11b81526000600482015260240161094c565b6001600160a01b0382166113565760405163ec442f0560e01b81526000600482015260240161094c565b610f918383836114dc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166114315760405163e602df0560e01b81526000600482015260240161094c565b6001600160a01b03831661145b57604051634a1406b160e11b81526000600482015260240161094c565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156112fc57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114ce91815260200190565b60405180910390a350505050565b806000036114f057610f9183836000611b3b565b6001600160a01b03831660009081526018602052604090205460ff1615801561153257506001600160a01b03821660009081526018602052604090205460ff16155b1561158257600d5460ff166115825760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b604482015260640161094c565b60095460ff1680156115965750600d5460ff165b15611859576005546001600160a01b038481169116148015906115c757506005546001600160a01b03838116911614155b80156115db57506001600160a01b03821615155b80156115f257506001600160a01b03821661dead14155b80156116085750600654600160a01b900460ff16155b15611859576001600160a01b03831660009081526017602052604090205460ff16801561164e57506001600160a01b03821660009081526019602052604090205460ff16155b1561172557600b548111156116b65760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840161094c565b600a546001600160a01b0383166000908152602081905260409020546116dc9083612156565b11156117205760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094c565b611859565b6001600160a01b03821660009081526017602052604090205460ff16801561176657506001600160a01b03831660009081526019602052604090205460ff16155b156117cf57600b548111156117205760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840161094c565b6001600160a01b03821660009081526019602052604090205460ff1661185957600a546001600160a01b0383166000908152602081905260409020546118159083612156565b11156118595760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094c565b30600090815260208190526040902054600754811080159081906118865750600654600160a81b900460ff165b801561189c5750600654600160a01b900460ff16155b80156118c057506001600160a01b03841660009081526017602052604090205460ff165b80156118cd575060075483115b80156118f257506001600160a01b03851660009081526018602052604090205460ff16155b801561191757506001600160a01b03841660009081526018602052604090205460ff16155b15611945576006805460ff60a01b1916600160a01b179055611937611c65565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061199357506001600160a01b03851660009081526018602052604090205460ff165b1561199c575060005b60008115611b27576001600160a01b03861660009081526017602052604090205460ff1680156119ce57506000600f54115b15611a5c576119f360646119ed600f5488611d6590919063ffffffff16565b90611d78565b9050600f5460115482611a06919061219e565b611a109190612134565b60166000828254611a219190612156565b9091555050600f54601054611a36908361219e565b611a409190612134565b60156000828254611a519190612156565b90915550611b099050565b6001600160a01b03871660009081526017602052604090205460ff168015611a8657506000601254115b15611b0957611aa560646119ed60125488611d6590919063ffffffff16565b905060125460145482611ab8919061219e565b611ac29190612134565b60166000828254611ad39190612156565b9091555050601254601354611ae8908361219e565b611af29190612134565b60156000828254611b039190612156565b90915550505b8015611b1a57611b1a873083611b3b565b611b248186612200565b94505b611b32878787611b3b565b50505050505050565b6001600160a01b038316611b66578060026000828254611b5b9190612156565b90915550611bd89050565b6001600160a01b03831660009081526020819052604090205481811015611bb95760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161094c565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611bf457600280548290039055611c13565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c5891815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611c899190612156565b90506000600754831115611c9d5760075492505b47611ca784611d84565b6000611cb34783611f44565b90506000611cd0856119ed60165485611d6590919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d1e576040519150601f19603f3d011682016040523d82523d6000602084013e611d23565b606091505b5050600d546040519195506001600160a01b0361010090910416904780156108fc02916000818181858888f19350505050158015611b32573d6000803e3d6000fd5b6000611d71828461219e565b9392505050565b6000611d718284612134565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611db957611db9612213565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5b91906121b5565b81600181518110611e6e57611e6e612213565b60200260200101906001600160a01b031690816001600160a01b031681525050611eb9307f000000000000000000000000000000000000000000000000000000000000000084611259565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f0e908590600090869030904290600401612229565b600060405180830381600087803b158015611f2857600080fd5b505af1158015611f3c573d6000803e3d6000fd5b505050505050565b6000611d718284612200565b600060208083528351808285015260005b81811015611f7d57858101830151858201604001528201611f61565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461116e57600080fd5b60008060408385031215611fc657600080fd5b8235611fd181611f9e565b946020939093013593505050565b600060208284031215611ff157600080fd5b5035919050565b60008060006060848603121561200d57600080fd5b833561201881611f9e565b9250602084013561202881611f9e565b929592945050506040919091013590565b6000806040838503121561204c57600080fd5b823561205781611f9e565b91506020830135801515811461206c57600080fd5b809150509250929050565b6000806040838503121561208a57600080fd5b50508035926020909101359150565b6000602082840312156120ab57600080fd5b8135611d7181611f9e565b600080604083850312156120c957600080fd5b82356120d481611f9e565b9150602083013561206c81611f9e565b600181811c908216806120f857607f821691505b60208210810361211857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261215157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108aa576108aa61211e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176108aa576108aa61211e565b6000602082840312156121c757600080fd5b8151611d7181611f9e565b6000806000606084860312156121e757600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108aa576108aa61211e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122795784516001600160a01b031683529383019391830191600101612254565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220120ff558c1d68a6a677d995b92c68db2b7a48ec6e2bdfc06f014eb404ab1d06264736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c80636ac9a8701161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610722578063dfd028f014610742578063ed8a2fda14610762578063f2fde38b14610778578063f8f86b9914610798578063fb0ecfa4146107b857600080fd5b806395d89b41146106655780639e78fb4f1461067a578063a457c2d714610682578063a72905a2146106a2578063a9059cbb146106d2578063aaa1fe45146106f257600080fd5b8063760062731161011357806376006273146105b25780638a8c523c146105c85780638bcea939146105dd5780638c900a71146105fd5780638da5cb5b14610613578063958c2e521461063157600080fd5b80636ac9a8701461050c5780636caae8321461052c57806370a0823114610542578063715018a61461057857806375f0a8741461058d57600080fd5b806329563769116101e85780633d56af6b116101ac5780633d56af6b1461044557806346e973611461045b578063522ef4c71461049357806357e06699146104b457806358915a86146104d657806365e00719146104f657600080fd5b806329563769146103c7578063313ce567146103dd57806335c094a4146103f9578063395093511461040f5780633c8463a11461042f57600080fd5b8063106d05831161023a578063106d058314610322578063159a522014610346578063171a65861461035c57806318160ddd1461037c57806323b872dd146103915780632765cddd146103b157600080fd5b80630106aaef1461028257806306123160146102ac57806306fdde03146102c657806307b1faea146102e8578063095ea7b31461030257600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107d8565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102979060ff1681565b3480156102d257600080fd5b506102db610804565b6040516102a39190611f50565b3480156102f457600080fd5b506009546102979060ff1681565b34801561030e57600080fd5b5061029761031d366004611fb3565b610896565b34801561032e57600080fd5b5061033860135481565b6040519081526020016102a3565b34801561035257600080fd5b5061033860105481565b34801561036857600080fd5b50610297610377366004611fdf565b6108b0565b34801561038857600080fd5b50600254610338565b34801561039d57600080fd5b506102976103ac366004611ff8565b6109e0565b3480156103bd57600080fd5b5061033860145481565b3480156103d357600080fd5b5061033860115481565b3480156103e957600080fd5b50604051601281526020016102a3565b34801561040557600080fd5b5061033860155481565b34801561041b57600080fd5b5061029761042a366004611fb3565b610a04565b34801561043b57600080fd5b50610338600a5481565b34801561045157600080fd5b5061033860165481565b34801561046757600080fd5b50600e5461047b906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b34801561049f57600080fd5b5060065461029790600160a81b900460ff1681565b3480156104c057600080fd5b506104d46104cf366004612039565b610a26565b005b3480156104e257600080fd5b506104d46104f1366004611fdf565b610aaf565b34801561050257600080fd5b5061033860085481565b34801561051857600080fd5b506104d4610527366004612077565b610b5b565b34801561053857600080fd5b50610338600b5481565b34801561054e57600080fd5b5061033861055d366004612099565b6001600160a01b031660009081526020819052604090205490565b34801561058457600080fd5b506104d4610bf2565b34801561059957600080fd5b50600d5461047b9061010090046001600160a01b031681565b3480156105be57600080fd5b5061033860075481565b3480156105d457600080fd5b506104d4610c28565b3480156105e957600080fd5b5060065461047b906001600160a01b031681565b34801561060957600080fd5b5061033860125481565b34801561061f57600080fd5b506005546001600160a01b031661047b565b34801561063d57600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067157600080fd5b506102db610c74565b6104d4610c83565b34801561068e57600080fd5b5061029761069d366004611fb3565b610f96565b3480156106ae57600080fd5b506102976106bd366004612099565b60176020526000908152604090205460ff1681565b3480156106de57600080fd5b506102976106ed366004611fb3565b610fed565b3480156106fe57600080fd5b5061029761070d366004612099565b60196020526000908152604090205460ff1681565b34801561072e57600080fd5b5061033861073d3660046120b6565b610ffb565b34801561074e57600080fd5b506104d461075d366004611fdf565b611026565b34801561076e57600080fd5b50610338600f5481565b34801561078457600080fd5b506104d4610793366004612099565b6110d6565b3480156107a457600080fd5b506104d46107b3366004612039565b611171565b3480156107c457600080fd5b506104d46107d3366004612077565b6111c6565b3360009081526018602052604081205460ff166107f457600080fd5b506009805460ff19169055600190565b606060038054610813906120e4565b80601f016020809104026020016040519081016040528092919081815260200182805461083f906120e4565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b6000336108a4818585611259565b60019150505b92915050565b3360009081526018602052604081205460ff166108cc57600080fd5b620186a06108d960025490565b6108e39190612134565b8210156109555760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109c25760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b606482015260840161094c565b6006546109d8906001600160a01b031683611266565b506001919050565b6000336109ee85828561129c565b6109f9858585611302565b506001949350505050565b6000336108a4818585610a178383610ffb565b610a219190612156565b611259565b6005546001600160a01b03163314610a505760405162461bcd60e51b815260040161094c90612169565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610ad95760405162461bcd60e51b815260040161094c90612169565b6002811015610b355760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b606482015260840161094c565b6103e8610b4160025490565b610b4b908361219e565b610b559190612134565b600b5550565b6005546001600160a01b03163314610b855760405162461bcd60e51b815260040161094c90612169565b60108290556011819055610b998183612156565b600f81905560041015610bee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094c565b5050565b6005546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161094c90612169565b610c266000611361565b565b6005546001600160a01b03163314610c525760405162461bcd60e51b815260040161094c90612169565b600d805460ff191660011790556006805460ff60a81b1916600160a81b179055565b606060048054610813906120e4565b6005546001600160a01b03163314610cad5760405162461bcd60e51b815260040161094c90612169565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2f91906121b5565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc091906121b5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3191906121b5565b600680546001600160a01b0319166001600160a01b03929092169182179055610e5b906001611171565b600654610e72906001600160a01b031660016113b3565b610e9f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611259565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610eef306001600160a01b031660009081526020819052604090205490565b600080610f046005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f6c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f9191906121d2565b505050565b60003381610fa48286610ffb565b905083811015610fe057604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161094c565b6109f98286868403611259565b6000336108a4818585611302565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110505760405162461bcd60e51b815260040161094c90612169565b60058110156110b05760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b606482015260840161094c565b6103e86110bc60025490565b6110c6908361219e565b6110d09190612134565b600a5550565b6005546001600160a01b031633146111005760405162461bcd60e51b815260040161094c90612169565b6001600160a01b0381166111655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094c565b61116e81611361565b50565b6005546001600160a01b0316331461119b5760405162461bcd60e51b815260040161094c90612169565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111f05760405162461bcd60e51b815260040161094c90612169565b601382905560148190556112048183612156565b601281905560041015610bee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094c565b610f918383836001611407565b6001600160a01b03821661129057604051634b637e8f60e11b81526000600482015260240161094c565b610bee826000836114dc565b60006112a88484610ffb565b905060001981146112fc57818110156112ed57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161094c565b6112fc84848484036000611407565b50505050565b6001600160a01b03831661132c57604051634b637e8f60e11b81526000600482015260240161094c565b6001600160a01b0382166113565760405163ec442f0560e01b81526000600482015260240161094c565b610f918383836114dc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166114315760405163e602df0560e01b81526000600482015260240161094c565b6001600160a01b03831661145b57604051634a1406b160e11b81526000600482015260240161094c565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156112fc57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114ce91815260200190565b60405180910390a350505050565b806000036114f057610f9183836000611b3b565b6001600160a01b03831660009081526018602052604090205460ff1615801561153257506001600160a01b03821660009081526018602052604090205460ff16155b1561158257600d5460ff166115825760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b604482015260640161094c565b60095460ff1680156115965750600d5460ff165b15611859576005546001600160a01b038481169116148015906115c757506005546001600160a01b03838116911614155b80156115db57506001600160a01b03821615155b80156115f257506001600160a01b03821661dead14155b80156116085750600654600160a01b900460ff16155b15611859576001600160a01b03831660009081526017602052604090205460ff16801561164e57506001600160a01b03821660009081526019602052604090205460ff16155b1561172557600b548111156116b65760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840161094c565b600a546001600160a01b0383166000908152602081905260409020546116dc9083612156565b11156117205760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094c565b611859565b6001600160a01b03821660009081526017602052604090205460ff16801561176657506001600160a01b03831660009081526019602052604090205460ff16155b156117cf57600b548111156117205760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840161094c565b6001600160a01b03821660009081526019602052604090205460ff1661185957600a546001600160a01b0383166000908152602081905260409020546118159083612156565b11156118595760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094c565b30600090815260208190526040902054600754811080159081906118865750600654600160a81b900460ff165b801561189c5750600654600160a01b900460ff16155b80156118c057506001600160a01b03841660009081526017602052604090205460ff165b80156118cd575060075483115b80156118f257506001600160a01b03851660009081526018602052604090205460ff16155b801561191757506001600160a01b03841660009081526018602052604090205460ff16155b15611945576006805460ff60a01b1916600160a01b179055611937611c65565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061199357506001600160a01b03851660009081526018602052604090205460ff165b1561199c575060005b60008115611b27576001600160a01b03861660009081526017602052604090205460ff1680156119ce57506000600f54115b15611a5c576119f360646119ed600f5488611d6590919063ffffffff16565b90611d78565b9050600f5460115482611a06919061219e565b611a109190612134565b60166000828254611a219190612156565b9091555050600f54601054611a36908361219e565b611a409190612134565b60156000828254611a519190612156565b90915550611b099050565b6001600160a01b03871660009081526017602052604090205460ff168015611a8657506000601254115b15611b0957611aa560646119ed60125488611d6590919063ffffffff16565b905060125460145482611ab8919061219e565b611ac29190612134565b60166000828254611ad39190612156565b9091555050601254601354611ae8908361219e565b611af29190612134565b60156000828254611b039190612156565b90915550505b8015611b1a57611b1a873083611b3b565b611b248186612200565b94505b611b32878787611b3b565b50505050505050565b6001600160a01b038316611b66578060026000828254611b5b9190612156565b90915550611bd89050565b6001600160a01b03831660009081526020819052604090205481811015611bb95760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161094c565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611bf457600280548290039055611c13565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c5891815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611c899190612156565b90506000600754831115611c9d5760075492505b47611ca784611d84565b6000611cb34783611f44565b90506000611cd0856119ed60165485611d6590919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d1e576040519150601f19603f3d011682016040523d82523d6000602084013e611d23565b606091505b5050600d546040519195506001600160a01b0361010090910416904780156108fc02916000818181858888f19350505050158015611b32573d6000803e3d6000fd5b6000611d71828461219e565b9392505050565b6000611d718284612134565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611db957611db9612213565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5b91906121b5565b81600181518110611e6e57611e6e612213565b60200260200101906001600160a01b031690816001600160a01b031681525050611eb9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611259565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f0e908590600090869030904290600401612229565b600060405180830381600087803b158015611f2857600080fd5b505af1158015611f3c573d6000803e3d6000fd5b505050505050565b6000611d718284612200565b600060208083528351808285015260005b81811015611f7d57858101830151858201604001528201611f61565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461116e57600080fd5b60008060408385031215611fc657600080fd5b8235611fd181611f9e565b946020939093013593505050565b600060208284031215611ff157600080fd5b5035919050565b60008060006060848603121561200d57600080fd5b833561201881611f9e565b9250602084013561202881611f9e565b929592945050506040919091013590565b6000806040838503121561204c57600080fd5b823561205781611f9e565b91506020830135801515811461206c57600080fd5b809150509250929050565b6000806040838503121561208a57600080fd5b50508035926020909101359150565b6000602082840312156120ab57600080fd5b8135611d7181611f9e565b600080604083850312156120c957600080fd5b82356120d481611f9e565b9150602083013561206c81611f9e565b600181811c908216806120f857607f821691505b60208210810361211857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261215157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108aa576108aa61211e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176108aa576108aa61211e565b6000602082840312156121c757600080fd5b8151611d7181611f9e565b6000806000606084860312156121e757600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108aa576108aa61211e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122795784516001600160a01b031683529383019391830191600101612254565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220120ff558c1d68a6a677d995b92c68db2b7a48ec6e2bdfc06f014eb404ab1d06264736f6c63430008130033

Deployed Bytecode Sourcemap

26756:11936:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38571:118;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;38571:118:0;;;;;;;;27324:28;;;;;;;;;;-1:-1:-1;27324:28:0;;;;;;;;14821:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27111:30::-;;;;;;;;;;-1:-1:-1;27111:30:0;;;;;;;;17114:190;;;;;;;;;;-1:-1:-1;17114:190:0;;;;;:::i;:::-;;:::i;27582:22::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;27582:22:0;1215:177:1;27493:23:0;;;;;;;;;;;;;;;;30738:450;;;;;;;;;;-1:-1:-1;30738:450:0;;;;;:::i;:::-;;:::i;15923:99::-;;;;;;;;;;-1:-1:-1;16002:12:0;;15923:99;;17882:249;;;;;;;;;;-1:-1:-1;17882:249:0;;;;;:::i;:::-;;:::i;27611:22::-;;;;;;;;;;;;;;;;27523:23;;;;;;;;;;;;;;;;15774:84;;;;;;;;;;-1:-1:-1;15774:84:0;;15848:2;2185:36:1;;2173:2;2158:18;15774:84:0;2043:184:1;27642:33:0;;;;;;;;;;;;;;;;18540:238;;;;;;;;;;-1:-1:-1;18540:238:0;;;;;:::i;:::-;;:::i;27148:26::-;;;;;;;;;;;;;;;;27682:33;;;;;;;;;;;;;;;;27418:36;;;;;;;;;;-1:-1:-1;27418:36:0;;;;-1:-1:-1;;;;;27418:36:0;;;;;;-1:-1:-1;;;;;2396:32:1;;;2378:51;;2366:2;2351:18;27418:36:0;2232:203:1;26967:38:0;;;;;;;;;;-1:-1:-1;26967:38:0;;;;-1:-1:-1;;;26967:38:0;;;;;;35762:183;;;;;;;;;;-1:-1:-1;35762:183:0;;;;;:::i;:::-;;:::i;:::-;;30530:200;;;;;;;;;;-1:-1:-1;30530:200:0;;;;;:::i;:::-;;:::i;27053:31::-;;;;;;;;;;;;;;;;38037:262;;;;;;;;;;-1:-1:-1;38037:262:0;;;;;:::i;:::-;;:::i;27181:22::-;;;;;;;;;;;;;;;;16085:118;;;;;;;;;;-1:-1:-1;16085:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;16177:18:0;16150:7;16177:18;;;;;;;;;;;;16085:118;10846:103;;;;;;;;;;;;;:::i;27381:30::-;;;;;;;;;;-1:-1:-1;27381:30:0;;;;;;;-1:-1:-1;;;;;27381:30:0;;;27012:34;;;;;;;;;;;;;;;;38382:114;;;;;;;;;;;;;:::i;26883:24::-;;;;;;;;;;-1:-1:-1;26883:24:0;;;;-1:-1:-1;;;;;26883:24:0;;;27553:22;;;;;;;;;;;;;;;;10195:87;;;;;;;;;;-1:-1:-1;10268:6:0;;-1:-1:-1;;;;;10268:6:0;10195:87;;26835:41;;;;;;;;;;;;;;;15031:95;;;;;;;;;;;;;:::i;35036:561::-;;;:::i;19466:504::-;;;;;;;;;;-1:-1:-1;19466:504:0;;;;;:::i;:::-;;:::i;27873:40::-;;;;;;;;;;-1:-1:-1;27873:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16408:182;;;;;;;;;;-1:-1:-1;16408:182:0;;;;;:::i;:::-;;:::i;28048:50::-;;;;;;;;;;-1:-1:-1;28048:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16653:142;;;;;;;;;;-1:-1:-1;16653:142:0;;;;;:::i;:::-;;:::i;31313:207::-;;;;;;;;;;-1:-1:-1;31313:207:0;;;;;:::i;:::-;;:::i;27463:23::-;;;;;;;;;;;;;;;;11104:238;;;;;;;;;;-1:-1:-1;11104:238:0;;;;;:::i;:::-;;:::i;31706:148::-;;;;;;;;;;-1:-1:-1;31706:148:0;;;;;:::i;:::-;;:::i;37630:255::-;;;;;;;;;;-1:-1:-1;37630:255:0;;;;;:::i;:::-;;:::i;38571:118::-;28153:10;38623:4;28143:21;;;:9;:21;;;;;;;;28135:30;;;;;;-1:-1:-1;38640:11:0::1;:19:::0;;-1:-1:-1;;38640:19:0::1;::::0;;;38571:118;:::o;14821:91::-;14866:13;14899:5;14892:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14821:91;:::o;17114:190::-;17187:4;9626:10;17243:31;9626:10;17259:7;17268:5;17243:8;:31::i;:::-;17292:4;17285:11;;;17114:190;;;;;:::o;30738:450::-;28153:10;30834:4;28143:21;;;:9;:21;;;;;;;;28135:30;;;;;;30902:6:::1;30886:13;16002:12:::0;;;15923:99;30886:13:::1;:22;;;;:::i;:::-;30873:9;:35;;30851:138;;;::::0;-1:-1:-1;;;30851:138:0;;4929:2:1;30851:138:0::1;::::0;::::1;4911:21:1::0;4968:2;4948:18;;;4941:30;5007:34;4987:18;;;4980:62;-1:-1:-1;;;5058:18:1;;;5051:51;5119:19;;30851:138:0::1;;;;;;;;;31035:16;;31022:9;:29;;31000:129;;;::::0;-1:-1:-1;;;31000:129:0;;5351:2:1;31000:129:0::1;::::0;::::1;5333:21:1::0;5390:2;5370:18;;;5363:30;5429:34;5409:18;;;5402:62;-1:-1:-1;;;5480:18:1;;;5473:48;5538:19;;31000:129:0::1;5149:414:1::0;31000:129:0::1;31137:9;::::0;31131:27:::1;::::0;-1:-1:-1;;;;;31137:9:0::1;31148::::0;31131:5:::1;:27::i;:::-;-1:-1:-1::0;31176:4:0::1;30738:450:::0;;;:::o;17882:249::-;17969:4;9626:10;18027:37;18043:4;9626:10;18058:5;18027:15;:37::i;:::-;18075:26;18085:4;18091:2;18095:5;18075:9;:26::i;:::-;-1:-1:-1;18119:4:0;;17882:249;-1:-1:-1;;;;17882:249:0:o;18540:238::-;18628:4;9626:10;18684:64;9626:10;18700:7;18737:10;18709:25;9626:10;18700:7;18709:9;:25::i;:::-;:38;;;;:::i;:::-;18684:8;:64::i;35762:183::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35850:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;35850:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35895:42;;154:41:1;;;35895:42:0::1;::::0;127:18:1;35895:42:0::1;;;;;;;35762:183:::0;;:::o;30530:200::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;30630:1:::1;30620:6;:11;;30612:58;;;::::0;-1:-1:-1;;;30612:58:0;;6261:2:1;30612:58:0::1;::::0;::::1;6243:21:1::0;6300:2;6280:18;;;6273:30;6339:34;6319:18;;;6312:62;-1:-1:-1;;;6390:18:1;;;6383:32;6432:19;;30612:58:0::1;6059:398:1::0;30612:58:0::1;30718:4;30701:13;16002:12:::0;;;15923:99;30701:13:::1;30692:22;::::0;:6;:22:::1;:::i;:::-;30691:31;;;;:::i;:::-;30681:7;:41:::0;-1:-1:-1;30530:200:0:o;38037:262::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;38142:8:::1;:16:::0;;;38169:8:::1;:16:::0;;;38207:19:::1;38180:5:::0;38153;38207:19:::1;:::i;:::-;38196:8;:30:::0;;;38257:1:::1;-1:-1:-1::0;38245:13:0::1;38237:54;;;::::0;-1:-1:-1;;;38237:54:0;;6837:2:1;38237:54:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38237:54:0::1;6635:352:1::0;38237:54:0::1;38037:262:::0;;:::o;10846:103::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;10911:30:::1;10938:1;10911:18;:30::i;:::-;10846:103::o:0;38382:114::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;38437:8:::1;:15:::0;;-1:-1:-1;;38437:15:0::1;38448:4;38437:15;::::0;;38463:18:::1;:25:::0;;-1:-1:-1;;;;38463:25:0::1;-1:-1:-1::0;;;38463:25:0::1;::::0;;38382:114::o;15031:95::-;15078:13;15111:7;15104:14;;;;;:::i;35036:561::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;35122:11:::1;-1:-1:-1::0;;;;;35122:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35108:47:0::1;;35164:4;35171:11;-1:-1:-1::0;;;;;35171:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35108:82;::::0;-1:-1:-1;;;;;;35108:82:0::1;::::0;;;;;;-1:-1:-1;;;;;7478:15:1;;;35108:82:0::1;::::0;::::1;7460:34:1::0;7530:15;;7510:18;;;7503:43;7395:18;;35108:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35096:9;:94:::0;;-1:-1:-1;;;;;;35096:94:0::1;-1:-1:-1::0;;;;;35096:94:0;;;::::1;::::0;;::::1;::::0;;35201:43:::1;::::0;-1:-1:-1;35201:17:0::1;:43::i;:::-;35276:9;::::0;35255:38:::1;::::0;-1:-1:-1;;;;;35276:9:0::1;::::0;35255:12:::1;:38::i;:::-;35304:64;35321:4;35336:11;-1:-1:-1::0;;35304:8:0::1;:64::i;:::-;35380:11;-1:-1:-1::0;;;;;35380:27:0::1;;35415:9;35448:4;35468:24;35486:4;-1:-1:-1::0;;;;;16177:18:0;16150:7;16177:18;;;;;;;;;;;;16085:118;35468:24:::1;35507:1;35524::::0;35541:7:::1;10268:6:::0;;-1:-1:-1;;;;;10268:6:0;;10195:87;35541:7:::1;35380:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;35380:209:0;;;-1:-1:-1;;;;;7916:15:1;;;35380:209:0::1;::::0;::::1;7898:34:1::0;7948:18;;;7941:34;;;;7991:18;;;7984:34;;;;8034:18;;;8027:34;8098:15;;;8077:19;;;8070:44;35563:15:0::1;8130:19:1::0;;;8123:35;7832:19;;35380:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35036:561::o:0;19466:504::-;19561:4;9626:10;19561:4;19644:25;9626:10;19661:7;19644:9;:25::i;:::-;19617:52;;19703:17;19684:16;:36;19680:150;;;19744:74;;-1:-1:-1;;;19744:74:0;;-1:-1:-1;;;;;8700:32:1;;19744:74:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;19744:74:0;8480:345:1;19680:150:0;19865:62;19874:5;19881:7;19909:17;19890:16;:36;19865:8;:62::i;16408:182::-;16477:4;9626:10;16533:27;9626:10;16550:2;16554:5;16533:9;:27::i;16653:142::-;-1:-1:-1;;;;;16760:18:0;;;16733:7;16760:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16653:142::o;31313:207::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;31412:1:::1;31402:6;:11;;31394:62;;;::::0;-1:-1:-1;;;31394:62:0;;9032:2:1;31394:62:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;-1:-1:-1;;;9161:18:1;;;9154:36;9207:19;;31394:62:0::1;8830:402:1::0;31394:62:0::1;31508:4;31491:13;16002:12:::0;;;15923:99;31491:13:::1;31482:22;::::0;:6;:22:::1;:::i;:::-;31481:31;;;;:::i;:::-;31467:11;:45:::0;-1:-1:-1;31313:207:0:o;11104:238::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11207:22:0;::::1;11185:110;;;::::0;-1:-1:-1;;;11185:110:0;;9439:2:1;11185:110:0::1;::::0;::::1;9421:21:1::0;9478:2;9458:18;;;9451:30;9517:34;9497:18;;;9490:62;-1:-1:-1;;;9568:18:1;;;9561:36;9614:19;;11185:110:0::1;9237:402:1::0;11185:110:0::1;11306:28;11325:8;11306:18;:28::i;:::-;11104:238:::0;:::o;31706:148::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31813:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;31813:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31706:148::o;37630:255::-;10268:6;;-1:-1:-1;;;;;10268:6:0;9626:10;10415:23;10407:68;;;;-1:-1:-1;;;10407:68:0;;;;;;;:::i;:::-;37734:7:::1;:15:::0;;;37760:7:::1;:15:::0;;;37796:17:::1;37770:5:::0;37744;37796:17:::1;:::i;:::-;37786:7;:27:::0;;;37843:1:::1;-1:-1:-1::0;37832:12:0::1;37824:53;;;::::0;-1:-1:-1;;;37824:53:0;;6837:2:1;37824:53:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;37824:53:0::1;6635:352:1::0;23663:138:0;23756:37;23765:5;23772:7;23781:5;23788:4;23756:8;:37::i;23015:211::-;-1:-1:-1;;;;;23086:21:0;;23082:91;;23131:30;;-1:-1:-1;;;23131:30:0;;23158:1;23131:30;;;2378:51:1;2351:18;;23131:30:0;2232:203:1;23082:91:0;23183:35;23191:7;23208:1;23212:5;23183:7;:35::i;25400:487::-;25500:24;25527:25;25537:5;25544:7;25527:9;:25::i;:::-;25500:52;;-1:-1:-1;;25567:16:0;:37;25563:317;;25644:5;25625:16;:24;25621:132;;;25677:60;;-1:-1:-1;;;25677:60:0;;-1:-1:-1;;;;;8700:32:1;;25677:60:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;25677:60:0;8480:345:1;25621:132:0;25796:57;25805:5;25812:7;25840:5;25821:16;:24;25847:5;25796:8;:57::i;:::-;25489:398;25400:487;;;:::o;20355:308::-;-1:-1:-1;;;;;20439:18:0;;20435:88;;20481:30;;-1:-1:-1;;;20481:30:0;;20508:1;20481:30;;;2378:51:1;2351:18;;20481:30:0;2232:203:1;20435:88:0;-1:-1:-1;;;;;20537:16:0;;20533:88;;20577:32;;-1:-1:-1;;;20577:32:0;;20606:1;20577:32;;;2378:51:1;2351:18;;20577:32:0;2232:203:1;20533:88:0;20631:24;20639:4;20645:2;20649:5;20631:7;:24::i;11502:191::-;11595:6;;;-1:-1:-1;;;;;11612:17:0;;;-1:-1:-1;;;;;;11612:17:0;;;;;;;11645:40;;11595:6;;;11612:17;11595:6;;11645:40;;11576:16;;11645:40;11565:128;11502:191;:::o;35953:138::-;-1:-1:-1;;;;;36020:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;36020:22:0;;;;;;;;;;36060:23;;36020:22;;:14;36060:23;;;35953:138;;:::o;24668:443::-;-1:-1:-1;;;;;24781:19:0;;24777:91;;24824:32;;-1:-1:-1;;;24824:32:0;;24853:1;24824:32;;;2378:51:1;2351:18;;24824:32:0;2232:203:1;24777:91:0;-1:-1:-1;;;;;24882:21:0;;24878:92;;24927:31;;-1:-1:-1;;;24927:31:0;;24955:1;24927:31;;;2378:51:1;2351:18;;24927:31:0;2232:203:1;24878:92:0;-1:-1:-1;;;;;24980:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25026:78;;;;25077:7;-1:-1:-1;;;;;25061:31:0;25070:5;-1:-1:-1;;;;;25061:31:0;;25086:5;25061:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;25061:31:0;;;;;;;;24668:443;;;;:::o;31862:3166::-;31988:6;31998:1;31988:11;31984:54;;32002:26;32016:4;32022:2;32026:1;32002:13;:26::i;31984:54::-;-1:-1:-1;;;;;32053:15:0;;;;;;:9;:15;;;;;;;;32052:16;:34;;;;-1:-1:-1;;;;;;32073:13:0;;;;;;:9;:13;;;;;;;;32072:14;32052:34;32048:83;;;32096:8;;;;32088:43;;;;-1:-1:-1;;;32088:43:0;;9846:2:1;32088:43:0;;;9828:21:1;9885:2;9865:18;;;9858:30;-1:-1:-1;;;9904:18:1;;;9897:52;9966:18;;32088:43:0;9644:346:1;32088:43:0;32146:11;;;;:23;;;;-1:-1:-1;32161:8:0;;;;32146:23;32142:1265;;;10268:6;;-1:-1:-1;;;;;32208:15:0;;;10268:6;;32208:15;;;;:49;;-1:-1:-1;10268:6:0;;-1:-1:-1;;;;;32244:13:0;;;10268:6;;32244:13;;32208:49;:86;;;;-1:-1:-1;;;;;;32278:16:0;;;;32208:86;:128;;;;-1:-1:-1;;;;;;32315:21:0;;32329:6;32315:21;;32208:128;:164;;;;-1:-1:-1;32358:14:0;;-1:-1:-1;;;32358:14:0;;;;32357:15;32208:164;32186:1210;;;-1:-1:-1;;;;;32441:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;32460:22:0;;;;;;:18;:22;;;;;;;;32459:23;32441:41;32437:944;;;32551:7;;32541:6;:17;;32507:143;;;;-1:-1:-1;;;32507:143:0;;10197:2:1;32507:143:0;;;10179:21:1;10236:2;10216:18;;;10209:30;10275:34;10255:18;;;10248:62;-1:-1:-1;;;10326:18:1;;;10319:38;10374:19;;32507:143:0;9995:404:1;32507:143:0;32733:11;;-1:-1:-1;;;;;16177:18:0;;16150:7;16177:18;;;;;;;;;;;32707:22;;:6;:22;:::i;:::-;:37;;32673:142;;;;-1:-1:-1;;;32673:142:0;;10606:2:1;32673:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;32673:142:0;10404:343:1;32673:142:0;32437:944;;;-1:-1:-1;;;;;32913:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;32930:24:0;;;;;;:18;:24;;;;;;;;32929:25;32913:41;32887:494;;;33041:7;;33031:6;:17;;32997:144;;;;-1:-1:-1;;;32997:144:0;;10954:2:1;32997:144:0;;;10936:21:1;10993:2;10973:18;;;10966:30;11032:34;11012:18;;;11005:62;-1:-1:-1;;;11083:18:1;;;11076:39;11132:19;;32997:144:0;10752:405:1;32887:494:0;-1:-1:-1;;;;;33172:22:0;;;;;;:18;:22;;;;;;;;33167:214;;33279:11;;-1:-1:-1;;;;;16177:18:0;;16150:7;16177:18;;;;;;;;;;;33253:22;;:6;:22;:::i;:::-;:37;;33219:142;;;;-1:-1:-1;;;33219:142:0;;10606:2:1;33219:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;33219:142:0;10404:343:1;33219:142:0;33468:4;33419:28;16177:18;;;;;;;;;;;33526:19;;33502:43;;;;;;;33576:42;;-1:-1:-1;33600:18:0;;-1:-1:-1;;;33600:18:0;;;;33576:42;:74;;;;-1:-1:-1;33636:14:0;;-1:-1:-1;;;33636:14:0;;;;33635:15;33576:74;:103;;;;-1:-1:-1;;;;;;33667:12:0;;;;;;:8;:12;;;;;;;;33576:103;:148;;;;;33705:19;;33696:6;:28;33576:148;:181;;;;-1:-1:-1;;;;;;33742:15:0;;;;;;:9;:15;;;;;;;;33741:16;33576:181;:212;;;;-1:-1:-1;;;;;;33775:13:0;;;;;;:9;:13;;;;;;;;33774:14;33576:212;33558:363;;;33815:14;:21;;-1:-1:-1;;;;33815:21:0;-1:-1:-1;;;33815:21:0;;;33853:17;:15;:17::i;:::-;33887:14;:22;;-1:-1:-1;;;;33887:22:0;;;33558:363;33949:14;;-1:-1:-1;;;;;34065:15:0;;33933:12;34065:15;;;:9;:15;;;;;;33949:14;-1:-1:-1;;;33949:14:0;;;;;33948:15;;34065;;:32;;-1:-1:-1;;;;;;34084:13:0;;;;;;:9;:13;;;;;;;;34065:32;34061:80;;;-1:-1:-1;34124:5:0;34061:80;34153:12;34258:7;34254:723;;;-1:-1:-1;;;;;34310:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;34337:1;34326:8;;:12;34310:28;34306:524;;;34366:29;34391:3;34366:20;34377:8;;34366:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;34359:36;;34456:8;;34444;;34437:4;:15;;;;:::i;:::-;34436:28;;;;:::i;:::-;34414:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;34525:8:0;;34513;;34506:15;;:4;:15;:::i;:::-;34505:28;;;;:::i;:::-;34483:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;34306:524:0;;-1:-1:-1;34306:524:0;;-1:-1:-1;;;;;34595:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;34623:1;34613:7;;:11;34595:29;34591:239;;;34652:28;34676:3;34652:19;34663:7;;34652:6;:10;;:19;;;;:::i;:28::-;34645:35;;34740:7;;34729;;34722:4;:14;;;;:::i;:::-;34721:26;;;;:::i;:::-;34699:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;34807:7:0;;34796;;34789:14;;:4;:14;:::i;:::-;34788:26;;;;:::i;:::-;34766:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;34591:239:0;34850:8;;34846:89;;34879:40;34893:4;34907;34914;34879:13;:40::i;:::-;34951:14;34961:4;34951:14;;:::i;:::-;;;34254:723;34989:31;35003:4;35009:2;35013:6;34989:13;:31::i;:::-;31973:3055;;;;31862:3166;;;:::o;20979:1135::-;-1:-1:-1;;;;;21069:18:0;;21065:552;;21223:5;21207:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21065:552:0;;-1:-1:-1;21065:552:0;;-1:-1:-1;;;;;21283:15:0;;21261:19;21283:15;;;;;;;;;;;21317:19;;;21313:117;;;21364:50;;-1:-1:-1;;;21364:50:0;;-1:-1:-1;;;;;8700:32:1;;21364:50:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;21364:50:0;8480:345:1;21313:117:0;-1:-1:-1;;;;;21553:15:0;;:9;:15;;;;;;;;;;21571:19;;;;21553:37;;21065:552;-1:-1:-1;;;;;21633:16:0;;21629:435;;21799:12;:21;;;;;;;21629:435;;;-1:-1:-1;;;;;22015:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21629:435;22096:2;-1:-1:-1;;;;;22081:25:0;22090:4;-1:-1:-1;;;;;22081:25:0;;22100:5;22081:25;;;;1361::1;;1349:2;1334:18;;1215:177;22081:25:0;;;;;;;;20979:1135;;;:::o;36702:777::-;36792:4;36748:23;16177:18;;;;;;;;;;;36748:50;;36809:25;36858:18;;36837;;:39;;;;:::i;:::-;36809:67;;36887:12;36934:19;;36916:15;:37;36912:107;;;36988:19;;36970:37;;36912:107;37059:21;37093:51;37128:15;37093:34;:51::i;:::-;37157:18;37178:44;:21;37204:17;37178:25;:44::i;:::-;37157:65;;37235:21;37259:57;37298:17;37259:34;37274:18;;37259:10;:14;;:34;;;;:::i;:57::-;37351:21;;37343:61;;37235:81;;-1:-1:-1;;;;;;37351:21:0;;37235:81;;37343:61;;;;37235:81;37351:21;37343:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37423:15:0;;37415:56;;37329:75;;-1:-1:-1;;;;;;37423:15:0;;;;;;37449:21;37415:56;;;;;;;;;37449:21;37423:15;37415:56;;;;;;;;;;;;;;;;;;;3435:98;3493:7;3520:5;3524:1;3520;:5;:::i;:::-;3513:12;3435:98;-1:-1:-1;;;3435:98:0:o;3834:::-;3892:7;3919:5;3923:1;3919;:5;:::i;36099:595::-;36267:16;;;36281:1;36267:16;;;;;;;;36243:21;;36267:16;;;;;;;;;;-1:-1:-1;36267:16:0;36243:40;;36312:4;36294;36299:1;36294:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36294:23:0;;;-1:-1:-1;;;;;36294:23:0;;;;;36338:11;-1:-1:-1;;;;;36338:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36328:4;36333:1;36328:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;36328:28:0;;;-1:-1:-1;;;;;36328:28:0;;;;;36369:58;36386:4;36401:11;36415;36369:8;:58::i;:::-;36466:220;;-1:-1:-1;;;36466:220:0;;-1:-1:-1;;;;;36466:11:0;:62;;;;:220;;36543:11;;36569:1;;36613:4;;36640;;36660:15;;36466:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36172:522;36099:595;:::o;3078:98::-;3136:7;3163:5;3167:1;3163;:5;:::i;206:548:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;895:315;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2440:416::-;2505:6;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2621:9;2608:23;2640:31;2665:5;2640:31;:::i;:::-;2690:5;-1:-1:-1;2747:2:1;2732:18;;2719:32;2789:15;;2782:23;2770:36;;2760:64;;2820:1;2817;2810:12;2760:64;2843:7;2833:17;;;2440:416;;;;;:::o;2861:248::-;2929:6;2937;2990:2;2978:9;2969:7;2965:23;2961:32;2958:52;;;3006:1;3003;2996:12;2958:52;-1:-1:-1;;3029:23:1;;;3099:2;3084:18;;;3071:32;;-1:-1:-1;2861:248:1:o;3114:247::-;3173:6;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;3595:388::-;3663:6;3671;3724:2;3712:9;3703:7;3699:23;3695:32;3692:52;;;3740:1;3737;3730:12;3692:52;3779:9;3766:23;3798:31;3823:5;3798:31;:::i;:::-;3848:5;-1:-1:-1;3905:2:1;3890:18;;3877:32;3918:33;3877:32;3918:33;:::i;3988:380::-;4067:1;4063:12;;;;4110;;;4131:61;;4185:4;4177:6;4173:17;4163:27;;4131:61;4238:2;4230:6;4227:14;4207:18;4204:38;4201:161;;4284:10;4279:3;4275:20;4272:1;4265:31;4319:4;4316:1;4309:15;4347:4;4344:1;4337:15;4201:161;;3988:380;;;:::o;4373:127::-;4434:10;4429:3;4425:20;4422:1;4415:31;4465:4;4462:1;4455:15;4489:4;4486:1;4479:15;4505:217;4545:1;4571;4561:132;;4615:10;4610:3;4606:20;4603:1;4596:31;4650:4;4647:1;4640:15;4678:4;4675:1;4668:15;4561:132;-1:-1:-1;4707:9:1;;4505:217::o;5568:125::-;5633:9;;;5654:10;;;5651:36;;;5667:18;;:::i;5698:356::-;5900:2;5882:21;;;5919:18;;;5912:30;5978:34;5973:2;5958:18;;5951:62;6045:2;6030:18;;5698:356::o;6462:168::-;6535:9;;;6566;;6583:15;;;6577:22;;6563:37;6553:71;;6604:18;;:::i;6992:251::-;7062:6;7115:2;7103:9;7094:7;7090:23;7086:32;7083:52;;;7131:1;7128;7121:12;7083:52;7163:9;7157:16;7182:31;7207:5;7182:31;:::i;8169:306::-;8257:6;8265;8273;8326:2;8314:9;8305:7;8301:23;8297:32;8294:52;;;8342:1;8339;8332:12;8294:52;8371:9;8365:16;8355:26;;8421:2;8410:9;8406:18;8400:25;8390:35;;8465:2;8454:9;8450:18;8444:25;8434:35;;8169:306;;;;;:::o;11162:128::-;11229:9;;;11250:11;;;11247:37;;;11264:18;;:::i;11637:127::-;11698:10;11693:3;11689:20;11686:1;11679:31;11729:4;11726:1;11719:15;11753:4;11750:1;11743:15;11769:980;12031:4;12079:3;12068:9;12064:19;12110:6;12099:9;12092:25;12136:2;12174:6;12169:2;12158:9;12154:18;12147:34;12217:3;12212:2;12201:9;12197:18;12190:31;12241:6;12276;12270:13;12307:6;12299;12292:22;12345:3;12334:9;12330:19;12323:26;;12384:2;12376:6;12372:15;12358:29;;12405:1;12415:195;12429:6;12426:1;12423:13;12415:195;;;12494:13;;-1:-1:-1;;;;;12490:39:1;12478:52;;12585:15;;;;12550:12;;;;12526:1;12444:9;12415:195;;;-1:-1:-1;;;;;;;12666:32:1;;;;12661:2;12646:18;;12639:60;-1:-1:-1;;;12730:3:1;12715:19;12708:35;12627:3;11769:980;-1:-1:-1;;;11769:980:1:o

Swarm Source

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