ETH Price: $2,678.96 (-0.80%)

Token

PURR COIN (PURR)
 

Overview

Max Total Supply

76,727,919.235249634607536682 PURR

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,782,119.215922792606262627 PURR

Value
$0.00
0x4C40836964E2B35F578e20aFF57Ca42B080c1ae7
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:
PURRCOIN

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.purrcoin.vip
    🌐 Twitter:     https://twitter.com/purrcoinerc
    🌐 Telegram:    https://t.me/purrcoinportal

*/

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 PURRCOIN 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;
    uint256 public maxSwapbackTreshold;

    //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("PURR COIN", "PURR") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 tokenSupply = 100_000_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;
        maxSwapbackTreshold = (tokenSupply * 5) / 1000;

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

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

        marketingWallet = address(0x6b4dCA6E07e7b12a1cD2275c5CD03167D3C58143);
        addressForTreasuryFee = address(0xb1917785Acb89EB1f971A4Aa55ADa094ECC4B954);

        // 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;
        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

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

        tokensForReceiver1 = 0;
        tokensForReceiver2 = 0;

        payable(addressForTreasuryFee).transfer(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":"maxSwapbackTreshold","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"}]

60a06040526006805460ff60a81b19169055600a805460ff19908116600117909155600e805490911690553480156200003757600080fd5b5060405180604001604052806009815260200168282aa9291021a7a4a760b91b81525060405180604001604052806004815260200163282aa92960e11b8152508160039081620000889190620010eb565b506004620000978282620010eb565b505050620000b4620000ae6200030760201b60201c565b6200030b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d68160016200035d565b6001600160a01b0381166080526a52b7d2dcc80cd2e40000006103e8620000ff82602d620011cd565b6200010b9190620011e7565b600c556103e86200011e82602d620011cd565b6200012a9190620011e7565b600b55620f42406200013e826020620011cd565b6200014a9190620011e7565b60075560646200015b8282620011cd565b620001679190620011e7565b6008556103e86200017a826005620011cd565b620001869190620011e7565b600955601480805560006015819055620001a0916200120a565b6013556014601181905560006012819055620001bc916200120a565b601055600e8054746b4dca6e07e7b12a1cd2275c5cd03167d3c5814300610100600160a81b0319909116179055600f80546001600160a01b03191673b1917785acb89eb1f971a4aa55ada094ecc4b9541790556200022e620002266005546001600160a01b031690565b6001620003d7565b6200023b306001620003d7565b6200024a61dead6001620003d7565b600e54620002689061010090046001600160a01b03166001620003d7565b600f5462000281906001600160a01b03166001620003d7565b620002a0620002986005546001600160a01b031690565b60016200035d565b620002ad3060016200035d565b620002bc61dead60016200035d565b600e54620002da9061010090046001600160a01b031660016200035d565b600f54620002f3906001600160a01b031660016200035d565b620002ff338262000481565b5050620012f1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ac5760405162461bcd60e51b815260206004820181905260248201526000805160206200363383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004225760405162461bcd60e51b81526020600482018190526024820152600080516020620036338339815191526044820152606401620003a3565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620004ad5760405163ec442f0560e01b815260006004820152602401620003a3565b620004bb60008383620004bf565b5050565b80600003620004db57620004d68383600062000b77565b505050565b6001600160a01b03831660009081526019602052604090205460ff161580156200051e57506001600160a01b03821660009081526019602052604090205460ff16155b156200057857600e5460ff16620005785760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f742061637469766521000000000000000000006044820152606401620003a3565b600a5460ff1680156200058d5750600e5460ff165b1562000868576005546001600160a01b03848116911614801590620005c057506005546001600160a01b03838116911614155b8015620005d557506001600160a01b03821615155b8015620005ed57506001600160a01b03821661dead14155b8015620006045750600654600160a01b900460ff16155b1562000868576001600160a01b03831660009081526018602052604090205460ff1680156200064c57506001600160a01b0382166000908152601a602052604090205460ff16155b156200072b57600c54811115620006b75760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401620003a3565b600b546001600160a01b038316600090815260208190526040902054620006df90836200120a565b1115620007255760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003a3565b62000868565b6001600160a01b03821660009081526018602052604090205460ff1680156200076d57506001600160a01b0383166000908152601a602052604090205460ff16155b15620007d957600c54811115620007255760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401620003a3565b6001600160a01b0382166000908152601a602052604090205460ff166200086857600b546001600160a01b0383166000908152602081905260409020546200082290836200120a565b1115620008685760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003a3565b3060009081526020819052604090205460075481108015908190620008965750600654600160a81b900460ff165b8015620008ad5750600654600160a01b900460ff16155b8015620008d257506001600160a01b03841660009081526018602052604090205460ff165b8015620008e0575060075483115b80156200090657506001600160a01b03851660009081526019602052604090205460ff16155b80156200092c57506001600160a01b03841660009081526019602052604090205460ff16155b156200095d576006805460ff60a01b1916600160a01b1790556200094f62000caa565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680620009ac57506001600160a01b03851660009081526019602052604090205460ff165b15620009b6575060005b6000811562000b61576001600160a01b03861660009081526018602052604090205460ff168015620009ea57506000601054115b1562000a855760105462000a0f9060649062000a0890889062000dc4565b9062000ddb565b90506010546012548262000a249190620011cd565b62000a309190620011e7565b6017600082825462000a4391906200120a565b909155505060105460115462000a5a9083620011cd565b62000a669190620011e7565b6016600082825462000a7991906200120a565b9091555062000b3e9050565b6001600160a01b03871660009081526018602052604090205460ff16801562000ab057506000601354115b1562000b3e5760135462000ace9060649062000a0890889062000dc4565b90506013546015548262000ae39190620011cd565b62000aef9190620011e7565b6017600082825462000b0291906200120a565b909155505060135460145462000b199083620011cd565b62000b259190620011e7565b6016600082825462000b3891906200120a565b90915550505b801562000b525762000b5287308362000b77565b62000b5e818662001220565b94505b62000b6e87878762000b77565b50505050505050565b6001600160a01b03831662000ba657806002600082825462000b9a91906200120a565b9091555062000c1a9050565b6001600160a01b0383166000908152602081905260409020548181101562000bfb5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620003a3565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000c385760028054829003905562000c57565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c9d91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060175460165462000cd091906200120a565b905081158062000cde575080155b1562000ce8575050565b60095482111562000cf95760095491505b4762000d058362000de9565b600062000d13478362000f5c565b9050600062000d338462000a086017548562000dc460201b90919060201c565b600060168190556017819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f1935050505015801562000d7a573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f1935050505015801562000dbc573d6000803e3d6000fd5b505050505050565b600062000dd28284620011cd565b90505b92915050565b600062000dd28284620011e7565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000e215762000e2162001236565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e82573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ea891906200124c565b8160018151811062000ebe5762000ebe62001236565b60200260200101906001600160a01b031690816001600160a01b03168152505062000ef3306080518462000f6a60201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000f2c9594939291906200127e565b600060405180830381600087803b15801562000f4757600080fd5b505af115801562000dbc573d6000803e3d6000fd5b600062000dd2828462001220565b620004d683838360016001600160a01b03841662000f9f5760405163e602df0560e01b815260006004820152602401620003a3565b6001600160a01b03831662000fcb57604051634a1406b160e11b815260006004820152602401620003a3565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200104957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200104091815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200107a57607f821691505b6020821081036200109b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004d657600081815260208120601f850160051c81016020861015620010ca5750805b601f850160051c820191505b8181101562000dbc57828155600101620010d6565b81516001600160401b038111156200110757620011076200104f565b6200111f8162001118845462001065565b84620010a1565b602080601f8311600181146200115757600084156200113e5750858301515b600019600386901b1c1916600185901b17855562000dbc565b600085815260208120601f198616915b82811015620011885788860151825594840194600190910190840162001167565b5085821015620011a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000dd55762000dd5620011b7565b6000826200120557634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000dd55762000dd5620011b7565b8181038181111562000dd55762000dd5620011b7565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200125f57600080fd5b81516001600160a01b03811681146200127757600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012d05784516001600160a01b031683529383019391830191600101620012a9565b50506001600160a01b03969096166060850152505050608001529392505050565b6080516122f56200133e6000396000818161064e01528181610cd001528181610d6101528181610e9901528181610ec201528181611e0801528181611ec10152611efd01526122f56000f3fe6080604052600436106102815760003560e01c80636caae8321161014f5780639e78fb4f116100c1578063dd62ed3e1161007a578063dd62ed3e14610743578063dfd028f014610763578063ed8a2fda14610783578063f2fde38b14610799578063f8f86b99146107b9578063fb0ecfa4146107d957600080fd5b80639e78fb4f14610685578063a457c2d71461068d578063a72905a2146106ad578063a9059cbb146106dd578063aaa1fe45146106fd578063c7c5a39d1461072d57600080fd5b80638a8c523c116101135780638a8c523c146105d35780638bcea939146105e85780638c900a71146106085780638da5cb5b1461061e578063958c2e521461063c57806395d89b411461067057600080fd5b80636caae8321461053757806370a082311461054d578063715018a61461058357806375f0a8741461059857806376006273146105bd57600080fd5b806329563769116101f357806346e97361116101ac57806346e9736114610466578063522ef4c71461049e57806357e06699146104bf57806358915a86146104e157806365e00719146105015780636ac9a8701461051757600080fd5b806329563769146103d2578063313ce567146103e857806335c094a414610404578063395093511461041a5780633c8463a11461043a5780633d56af6b1461045057600080fd5b8063106d058311610245578063106d05831461032d578063159a522014610351578063171a65861461036757806318160ddd1461038757806323b872dd1461039c5780632765cddd146103bc57600080fd5b80630106aaef1461028d57806306123160146102b757806306fdde03146102d157806307b1faea146102f3578063095ea7b31461030d57600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a26107f9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b50600e546102a29060ff1681565b3480156102dd57600080fd5b506102e6610825565b6040516102ae9190611f75565b3480156102ff57600080fd5b50600a546102a29060ff1681565b34801561031957600080fd5b506102a2610328366004611fd8565b6108b7565b34801561033957600080fd5b5061034360145481565b6040519081526020016102ae565b34801561035d57600080fd5b5061034360115481565b34801561037357600080fd5b506102a2610382366004612004565b6108d1565b34801561039357600080fd5b50600254610343565b3480156103a857600080fd5b506102a26103b736600461201d565b610a01565b3480156103c857600080fd5b5061034360155481565b3480156103de57600080fd5b5061034360125481565b3480156103f457600080fd5b50604051601281526020016102ae565b34801561041057600080fd5b5061034360165481565b34801561042657600080fd5b506102a2610435366004611fd8565b610a25565b34801561044657600080fd5b50610343600b5481565b34801561045c57600080fd5b5061034360175481565b34801561047257600080fd5b50600f54610486906001600160a01b031681565b6040516001600160a01b0390911681526020016102ae565b3480156104aa57600080fd5b506006546102a290600160a81b900460ff1681565b3480156104cb57600080fd5b506104df6104da36600461205e565b610a47565b005b3480156104ed57600080fd5b506104df6104fc366004612004565b610ad0565b34801561050d57600080fd5b5061034360085481565b34801561052357600080fd5b506104df61053236600461209c565b610b7c565b34801561054357600080fd5b50610343600c5481565b34801561055957600080fd5b506103436105683660046120be565b6001600160a01b031660009081526020819052604090205490565b34801561058f57600080fd5b506104df610c13565b3480156105a457600080fd5b50600e546104869061010090046001600160a01b031681565b3480156105c957600080fd5b5061034360075481565b3480156105df57600080fd5b506104df610c49565b3480156105f457600080fd5b50600654610486906001600160a01b031681565b34801561061457600080fd5b5061034360135481565b34801561062a57600080fd5b506005546001600160a01b0316610486565b34801561064857600080fd5b506104867f000000000000000000000000000000000000000000000000000000000000000081565b34801561067c57600080fd5b506102e6610c95565b6104df610ca4565b34801561069957600080fd5b506102a26106a8366004611fd8565b610fb7565b3480156106b957600080fd5b506102a26106c83660046120be565b60186020526000908152604090205460ff1681565b3480156106e957600080fd5b506102a26106f8366004611fd8565b61100e565b34801561070957600080fd5b506102a26107183660046120be565b601a6020526000908152604090205460ff1681565b34801561073957600080fd5b5061034360095481565b34801561074f57600080fd5b5061034361075e3660046120db565b61101c565b34801561076f57600080fd5b506104df61077e366004612004565b611047565b34801561078f57600080fd5b5061034360105481565b3480156107a557600080fd5b506104df6107b43660046120be565b6110f7565b3480156107c557600080fd5b506104df6107d436600461205e565b611192565b3480156107e557600080fd5b506104df6107f436600461209c565b6111e7565b3360009081526019602052604081205460ff1661081557600080fd5b50600a805460ff19169055600190565b60606003805461083490612109565b80601f016020809104026020016040519081016040528092919081815260200182805461086090612109565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b6000336108c581858561127a565b60019150505b92915050565b3360009081526019602052604081205460ff166108ed57600080fd5b620186a06108fa60025490565b6109049190612159565b8210156109765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109e35760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b606482015260840161096d565b6006546109f9906001600160a01b031683611287565b506001919050565b600033610a0f8582856112bd565b610a1a858585611323565b506001949350505050565b6000336108c5818585610a38838361101c565b610a42919061217b565b61127a565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260040161096d9061218e565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610afa5760405162461bcd60e51b815260040161096d9061218e565b6002811015610b565760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b606482015260840161096d565b6103e8610b6260025490565b610b6c90836121c3565b610b769190612159565b600c5550565b6005546001600160a01b03163314610ba65760405162461bcd60e51b815260040161096d9061218e565b60118290556012819055610bba818361217b565b601081905560041015610c0f5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161096d565b5050565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161096d9061218e565b610c476000611382565b565b6005546001600160a01b03163314610c735760405162461bcd60e51b815260040161096d9061218e565b600e805460ff191660011790556006805460ff60a81b1916600160a81b179055565b60606004805461083490612109565b6005546001600160a01b03163314610cce5760405162461bcd60e51b815260040161096d9061218e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5091906121da565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de191906121da565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5291906121da565b600680546001600160a01b0319166001600160a01b03929092169182179055610e7c906001611192565b600654610e93906001600160a01b031660016113d4565b610ec0307f000000000000000000000000000000000000000000000000000000000000000060001961127a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610f10306001600160a01b031660009081526020819052604090205490565b600080610f256005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f8d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fb291906121f7565b505050565b60003381610fc5828661101c565b90508381101561100157604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161096d565b610a1a828686840361127a565b6000336108c5818585611323565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110715760405162461bcd60e51b815260040161096d9061218e565b60058110156110d15760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b606482015260840161096d565b6103e86110dd60025490565b6110e790836121c3565b6110f19190612159565b600b5550565b6005546001600160a01b031633146111215760405162461bcd60e51b815260040161096d9061218e565b6001600160a01b0381166111865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096d565b61118f81611382565b50565b6005546001600160a01b031633146111bc5760405162461bcd60e51b815260040161096d9061218e565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112115760405162461bcd60e51b815260040161096d9061218e565b60148290556015819055611225818361217b565b601381905560041015610c0f5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161096d565b610fb28383836001611428565b6001600160a01b0382166112b157604051634b637e8f60e11b81526000600482015260240161096d565b610c0f826000836114fd565b60006112c9848461101c565b9050600019811461131d578181101561130e57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161096d565b61131d84848484036000611428565b50505050565b6001600160a01b03831661134d57604051634b637e8f60e11b81526000600482015260240161096d565b6001600160a01b0382166113775760405163ec442f0560e01b81526000600482015260240161096d565b610fb28383836114fd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166114525760405163e602df0560e01b81526000600482015260240161096d565b6001600160a01b03831661147c57604051634a1406b160e11b81526000600482015260240161096d565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114ef91815260200190565b60405180910390a350505050565b8060000361151157610fb283836000611b5c565b6001600160a01b03831660009081526019602052604090205460ff1615801561155357506001600160a01b03821660009081526019602052604090205460ff16155b156115a357600e5460ff166115a35760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b604482015260640161096d565b600a5460ff1680156115b75750600e5460ff165b1561187a576005546001600160a01b038481169116148015906115e857506005546001600160a01b03838116911614155b80156115fc57506001600160a01b03821615155b801561161357506001600160a01b03821661dead14155b80156116295750600654600160a01b900460ff16155b1561187a576001600160a01b03831660009081526018602052604090205460ff16801561166f57506001600160a01b0382166000908152601a602052604090205460ff16155b1561174657600c548111156116d75760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840161096d565b600b546001600160a01b0383166000908152602081905260409020546116fd908361217b565b11156117415760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161096d565b61187a565b6001600160a01b03821660009081526018602052604090205460ff16801561178757506001600160a01b0383166000908152601a602052604090205460ff16155b156117f057600c548111156117415760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840161096d565b6001600160a01b0382166000908152601a602052604090205460ff1661187a57600b546001600160a01b038316600090815260208190526040902054611836908361217b565b111561187a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161096d565b30600090815260208190526040902054600754811080159081906118a75750600654600160a81b900460ff165b80156118bd5750600654600160a01b900460ff16155b80156118e157506001600160a01b03841660009081526018602052604090205460ff165b80156118ee575060075483115b801561191357506001600160a01b03851660009081526019602052604090205460ff16155b801561193857506001600160a01b03841660009081526019602052604090205460ff16155b15611966576006805460ff60a01b1916600160a01b179055611958611c86565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806119b457506001600160a01b03851660009081526019602052604090205460ff165b156119bd575060005b60008115611b48576001600160a01b03861660009081526018602052604090205460ff1680156119ef57506000601054115b15611a7d57611a146064611a0e60105488611d9290919063ffffffff16565b90611da5565b905060105460125482611a2791906121c3565b611a319190612159565b60176000828254611a42919061217b565b9091555050601054601154611a5790836121c3565b611a619190612159565b60166000828254611a72919061217b565b90915550611b2a9050565b6001600160a01b03871660009081526018602052604090205460ff168015611aa757506000601354115b15611b2a57611ac66064611a0e60135488611d9290919063ffffffff16565b905060135460155482611ad991906121c3565b611ae39190612159565b60176000828254611af4919061217b565b9091555050601354601454611b0990836121c3565b611b139190612159565b60166000828254611b24919061217b565b90915550505b8015611b3b57611b3b873083611b5c565b611b458186612225565b94505b611b53878787611b5c565b50505050505050565b6001600160a01b038316611b87578060026000828254611b7c919061217b565b90915550611bf99050565b6001600160a01b03831660009081526020819052604090205481811015611bda5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161096d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1557600280548290039055611c34565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c7991815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601754601654611caa919061217b565b9050811580611cb7575080155b15611cc0575050565b600954821115611cd05760095491505b47611cda83611db1565b6000611ce64783611f69565b90506000611d0384611a0e60175485611d9290919063ffffffff16565b600060168190556017819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015611d49573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611d8a573d6000803e3d6000fd5b505050505050565b6000611d9e82846121c3565b9392505050565b6000611d9e8284612159565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611de657611de6612238565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8891906121da565b81600181518110611e9b57611e9b612238565b60200260200101906001600160a01b031690816001600160a01b031681525050611ee6307f00000000000000000000000000000000000000000000000000000000000000008461127a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f3b90859060009086903090429060040161224e565b600060405180830381600087803b158015611f5557600080fd5b505af1158015611d8a573d6000803e3d6000fd5b6000611d9e8284612225565b600060208083528351808285015260005b81811015611fa257858101830151858201604001528201611f86565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461118f57600080fd5b60008060408385031215611feb57600080fd5b8235611ff681611fc3565b946020939093013593505050565b60006020828403121561201657600080fd5b5035919050565b60008060006060848603121561203257600080fd5b833561203d81611fc3565b9250602084013561204d81611fc3565b929592945050506040919091013590565b6000806040838503121561207157600080fd5b823561207c81611fc3565b91506020830135801515811461209157600080fd5b809150509250929050565b600080604083850312156120af57600080fd5b50508035926020909101359150565b6000602082840312156120d057600080fd5b8135611d9e81611fc3565b600080604083850312156120ee57600080fd5b82356120f981611fc3565b9150602083013561209181611fc3565b600181811c9082168061211d57607f821691505b60208210810361213d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261217657634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108cb576108cb612143565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176108cb576108cb612143565b6000602082840312156121ec57600080fd5b8151611d9e81611fc3565b60008060006060848603121561220c57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108cb576108cb612143565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561229e5784516001600160a01b031683529383019391830191600101612279565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f604e51c8e395ec1658de1341228e755044735347b80be73116d5cc65d62b6b364736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102815760003560e01c80636caae8321161014f5780639e78fb4f116100c1578063dd62ed3e1161007a578063dd62ed3e14610743578063dfd028f014610763578063ed8a2fda14610783578063f2fde38b14610799578063f8f86b99146107b9578063fb0ecfa4146107d957600080fd5b80639e78fb4f14610685578063a457c2d71461068d578063a72905a2146106ad578063a9059cbb146106dd578063aaa1fe45146106fd578063c7c5a39d1461072d57600080fd5b80638a8c523c116101135780638a8c523c146105d35780638bcea939146105e85780638c900a71146106085780638da5cb5b1461061e578063958c2e521461063c57806395d89b411461067057600080fd5b80636caae8321461053757806370a082311461054d578063715018a61461058357806375f0a8741461059857806376006273146105bd57600080fd5b806329563769116101f357806346e97361116101ac57806346e9736114610466578063522ef4c71461049e57806357e06699146104bf57806358915a86146104e157806365e00719146105015780636ac9a8701461051757600080fd5b806329563769146103d2578063313ce567146103e857806335c094a414610404578063395093511461041a5780633c8463a11461043a5780633d56af6b1461045057600080fd5b8063106d058311610245578063106d05831461032d578063159a522014610351578063171a65861461036757806318160ddd1461038757806323b872dd1461039c5780632765cddd146103bc57600080fd5b80630106aaef1461028d57806306123160146102b757806306fdde03146102d157806307b1faea146102f3578063095ea7b31461030d57600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a26107f9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b50600e546102a29060ff1681565b3480156102dd57600080fd5b506102e6610825565b6040516102ae9190611f75565b3480156102ff57600080fd5b50600a546102a29060ff1681565b34801561031957600080fd5b506102a2610328366004611fd8565b6108b7565b34801561033957600080fd5b5061034360145481565b6040519081526020016102ae565b34801561035d57600080fd5b5061034360115481565b34801561037357600080fd5b506102a2610382366004612004565b6108d1565b34801561039357600080fd5b50600254610343565b3480156103a857600080fd5b506102a26103b736600461201d565b610a01565b3480156103c857600080fd5b5061034360155481565b3480156103de57600080fd5b5061034360125481565b3480156103f457600080fd5b50604051601281526020016102ae565b34801561041057600080fd5b5061034360165481565b34801561042657600080fd5b506102a2610435366004611fd8565b610a25565b34801561044657600080fd5b50610343600b5481565b34801561045c57600080fd5b5061034360175481565b34801561047257600080fd5b50600f54610486906001600160a01b031681565b6040516001600160a01b0390911681526020016102ae565b3480156104aa57600080fd5b506006546102a290600160a81b900460ff1681565b3480156104cb57600080fd5b506104df6104da36600461205e565b610a47565b005b3480156104ed57600080fd5b506104df6104fc366004612004565b610ad0565b34801561050d57600080fd5b5061034360085481565b34801561052357600080fd5b506104df61053236600461209c565b610b7c565b34801561054357600080fd5b50610343600c5481565b34801561055957600080fd5b506103436105683660046120be565b6001600160a01b031660009081526020819052604090205490565b34801561058f57600080fd5b506104df610c13565b3480156105a457600080fd5b50600e546104869061010090046001600160a01b031681565b3480156105c957600080fd5b5061034360075481565b3480156105df57600080fd5b506104df610c49565b3480156105f457600080fd5b50600654610486906001600160a01b031681565b34801561061457600080fd5b5061034360135481565b34801561062a57600080fd5b506005546001600160a01b0316610486565b34801561064857600080fd5b506104867f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067c57600080fd5b506102e6610c95565b6104df610ca4565b34801561069957600080fd5b506102a26106a8366004611fd8565b610fb7565b3480156106b957600080fd5b506102a26106c83660046120be565b60186020526000908152604090205460ff1681565b3480156106e957600080fd5b506102a26106f8366004611fd8565b61100e565b34801561070957600080fd5b506102a26107183660046120be565b601a6020526000908152604090205460ff1681565b34801561073957600080fd5b5061034360095481565b34801561074f57600080fd5b5061034361075e3660046120db565b61101c565b34801561076f57600080fd5b506104df61077e366004612004565b611047565b34801561078f57600080fd5b5061034360105481565b3480156107a557600080fd5b506104df6107b43660046120be565b6110f7565b3480156107c557600080fd5b506104df6107d436600461205e565b611192565b3480156107e557600080fd5b506104df6107f436600461209c565b6111e7565b3360009081526019602052604081205460ff1661081557600080fd5b50600a805460ff19169055600190565b60606003805461083490612109565b80601f016020809104026020016040519081016040528092919081815260200182805461086090612109565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b6000336108c581858561127a565b60019150505b92915050565b3360009081526019602052604081205460ff166108ed57600080fd5b620186a06108fa60025490565b6109049190612159565b8210156109765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109e35760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b606482015260840161096d565b6006546109f9906001600160a01b031683611287565b506001919050565b600033610a0f8582856112bd565b610a1a858585611323565b506001949350505050565b6000336108c5818585610a38838361101c565b610a42919061217b565b61127a565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260040161096d9061218e565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610afa5760405162461bcd60e51b815260040161096d9061218e565b6002811015610b565760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b606482015260840161096d565b6103e8610b6260025490565b610b6c90836121c3565b610b769190612159565b600c5550565b6005546001600160a01b03163314610ba65760405162461bcd60e51b815260040161096d9061218e565b60118290556012819055610bba818361217b565b601081905560041015610c0f5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161096d565b5050565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161096d9061218e565b610c476000611382565b565b6005546001600160a01b03163314610c735760405162461bcd60e51b815260040161096d9061218e565b600e805460ff191660011790556006805460ff60a81b1916600160a81b179055565b60606004805461083490612109565b6005546001600160a01b03163314610cce5760405162461bcd60e51b815260040161096d9061218e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5091906121da565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de191906121da565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5291906121da565b600680546001600160a01b0319166001600160a01b03929092169182179055610e7c906001611192565b600654610e93906001600160a01b031660016113d4565b610ec0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60001961127a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610f10306001600160a01b031660009081526020819052604090205490565b600080610f256005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f8d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fb291906121f7565b505050565b60003381610fc5828661101c565b90508381101561100157604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161096d565b610a1a828686840361127a565b6000336108c5818585611323565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110715760405162461bcd60e51b815260040161096d9061218e565b60058110156110d15760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b606482015260840161096d565b6103e86110dd60025490565b6110e790836121c3565b6110f19190612159565b600b5550565b6005546001600160a01b031633146111215760405162461bcd60e51b815260040161096d9061218e565b6001600160a01b0381166111865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096d565b61118f81611382565b50565b6005546001600160a01b031633146111bc5760405162461bcd60e51b815260040161096d9061218e565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112115760405162461bcd60e51b815260040161096d9061218e565b60148290556015819055611225818361217b565b601381905560041015610c0f5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161096d565b610fb28383836001611428565b6001600160a01b0382166112b157604051634b637e8f60e11b81526000600482015260240161096d565b610c0f826000836114fd565b60006112c9848461101c565b9050600019811461131d578181101561130e57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161096d565b61131d84848484036000611428565b50505050565b6001600160a01b03831661134d57604051634b637e8f60e11b81526000600482015260240161096d565b6001600160a01b0382166113775760405163ec442f0560e01b81526000600482015260240161096d565b610fb28383836114fd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166114525760405163e602df0560e01b81526000600482015260240161096d565b6001600160a01b03831661147c57604051634a1406b160e11b81526000600482015260240161096d565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114ef91815260200190565b60405180910390a350505050565b8060000361151157610fb283836000611b5c565b6001600160a01b03831660009081526019602052604090205460ff1615801561155357506001600160a01b03821660009081526019602052604090205460ff16155b156115a357600e5460ff166115a35760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b604482015260640161096d565b600a5460ff1680156115b75750600e5460ff165b1561187a576005546001600160a01b038481169116148015906115e857506005546001600160a01b03838116911614155b80156115fc57506001600160a01b03821615155b801561161357506001600160a01b03821661dead14155b80156116295750600654600160a01b900460ff16155b1561187a576001600160a01b03831660009081526018602052604090205460ff16801561166f57506001600160a01b0382166000908152601a602052604090205460ff16155b1561174657600c548111156116d75760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840161096d565b600b546001600160a01b0383166000908152602081905260409020546116fd908361217b565b11156117415760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161096d565b61187a565b6001600160a01b03821660009081526018602052604090205460ff16801561178757506001600160a01b0383166000908152601a602052604090205460ff16155b156117f057600c548111156117415760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840161096d565b6001600160a01b0382166000908152601a602052604090205460ff1661187a57600b546001600160a01b038316600090815260208190526040902054611836908361217b565b111561187a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161096d565b30600090815260208190526040902054600754811080159081906118a75750600654600160a81b900460ff165b80156118bd5750600654600160a01b900460ff16155b80156118e157506001600160a01b03841660009081526018602052604090205460ff165b80156118ee575060075483115b801561191357506001600160a01b03851660009081526019602052604090205460ff16155b801561193857506001600160a01b03841660009081526019602052604090205460ff16155b15611966576006805460ff60a01b1916600160a01b179055611958611c86565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806119b457506001600160a01b03851660009081526019602052604090205460ff165b156119bd575060005b60008115611b48576001600160a01b03861660009081526018602052604090205460ff1680156119ef57506000601054115b15611a7d57611a146064611a0e60105488611d9290919063ffffffff16565b90611da5565b905060105460125482611a2791906121c3565b611a319190612159565b60176000828254611a42919061217b565b9091555050601054601154611a5790836121c3565b611a619190612159565b60166000828254611a72919061217b565b90915550611b2a9050565b6001600160a01b03871660009081526018602052604090205460ff168015611aa757506000601354115b15611b2a57611ac66064611a0e60135488611d9290919063ffffffff16565b905060135460155482611ad991906121c3565b611ae39190612159565b60176000828254611af4919061217b565b9091555050601354601454611b0990836121c3565b611b139190612159565b60166000828254611b24919061217b565b90915550505b8015611b3b57611b3b873083611b5c565b611b458186612225565b94505b611b53878787611b5c565b50505050505050565b6001600160a01b038316611b87578060026000828254611b7c919061217b565b90915550611bf99050565b6001600160a01b03831660009081526020819052604090205481811015611bda5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161096d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1557600280548290039055611c34565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c7991815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601754601654611caa919061217b565b9050811580611cb7575080155b15611cc0575050565b600954821115611cd05760095491505b47611cda83611db1565b6000611ce64783611f69565b90506000611d0384611a0e60175485611d9290919063ffffffff16565b600060168190556017819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015611d49573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611d8a573d6000803e3d6000fd5b505050505050565b6000611d9e82846121c3565b9392505050565b6000611d9e8284612159565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611de657611de6612238565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8891906121da565b81600181518110611e9b57611e9b612238565b60200260200101906001600160a01b031690816001600160a01b031681525050611ee6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461127a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f3b90859060009086903090429060040161224e565b600060405180830381600087803b158015611f5557600080fd5b505af1158015611d8a573d6000803e3d6000fd5b6000611d9e8284612225565b600060208083528351808285015260005b81811015611fa257858101830151858201604001528201611f86565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461118f57600080fd5b60008060408385031215611feb57600080fd5b8235611ff681611fc3565b946020939093013593505050565b60006020828403121561201657600080fd5b5035919050565b60008060006060848603121561203257600080fd5b833561203d81611fc3565b9250602084013561204d81611fc3565b929592945050506040919091013590565b6000806040838503121561207157600080fd5b823561207c81611fc3565b91506020830135801515811461209157600080fd5b809150509250929050565b600080604083850312156120af57600080fd5b50508035926020909101359150565b6000602082840312156120d057600080fd5b8135611d9e81611fc3565b600080604083850312156120ee57600080fd5b82356120f981611fc3565b9150602083013561209181611fc3565b600181811c9082168061211d57607f821691505b60208210810361213d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261217657634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108cb576108cb612143565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176108cb576108cb612143565b6000602082840312156121ec57600080fd5b8151611d9e81611fc3565b60008060006060848603121561220c57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108cb576108cb612143565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561229e5784516001600160a01b031683529383019391830191600101612279565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f604e51c8e395ec1658de1341228e755044735347b80be73116d5cc65d62b6b364736f6c63430008130033

Deployed Bytecode Sourcemap

26766:12131:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38776:118;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;38776:118:0;;;;;;;;27374:28;;;;;;;;;;-1:-1:-1;27374:28:0;;;;;;;;14831:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27161:30::-;;;;;;;;;;-1:-1:-1;27161:30:0;;;;;;;;17124:190;;;;;;;;;;-1:-1:-1;17124:190:0;;;;;:::i;:::-;;:::i;27632:22::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;27632:22:0;1215:177:1;27543:23:0;;;;;;;;;;;;;;;;30824:450;;;;;;;;;;-1:-1:-1;30824:450:0;;;;;:::i;:::-;;:::i;15933:99::-;;;;;;;;;;-1:-1:-1;16012:12:0;;15933:99;;17892:249;;;;;;;;;;-1:-1:-1;17892:249:0;;;;;:::i;:::-;;:::i;27661:22::-;;;;;;;;;;;;;;;;27573:23;;;;;;;;;;;;;;;;15784:84;;;;;;;;;;-1:-1:-1;15784:84:0;;15858:2;2185:36:1;;2173:2;2158:18;15784:84:0;2043:184:1;27692:33:0;;;;;;;;;;;;;;;;18550:238;;;;;;;;;;-1:-1:-1;18550:238:0;;;;;:::i;:::-;;:::i;27198:26::-;;;;;;;;;;;;;;;;27732:33;;;;;;;;;;;;;;;;27468:36;;;;;;;;;;-1:-1:-1;27468:36:0;;;;-1:-1:-1;;;;;27468:36:0;;;;;;-1:-1:-1;;;;;2396:32:1;;;2378:51;;2366:2;2351:18;27468:36:0;2232:203:1;26976:38:0;;;;;;;;;;-1:-1:-1;26976:38:0;;;;-1:-1:-1;;;26976:38:0;;;;;;35848:183;;;;;;;;;;-1:-1:-1;35848:183:0;;;;;:::i;:::-;;:::i;:::-;;30616:200;;;;;;;;;;-1:-1:-1;30616:200:0;;;;;:::i;:::-;;:::i;27062:31::-;;;;;;;;;;;;;;;;38242:262;;;;;;;;;;-1:-1:-1;38242:262:0;;;;;:::i;:::-;;:::i;27231:22::-;;;;;;;;;;;;;;;;16095:118;;;;;;;;;;-1:-1:-1;16095:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;16187:18:0;16160:7;16187:18;;;;;;;;;;;;16095:118;10856:103;;;;;;;;;;;;;:::i;27431:30::-;;;;;;;;;;-1:-1:-1;27431:30:0;;;;;;;-1:-1:-1;;;;;27431:30:0;;;27021:34;;;;;;;;;;;;;;;;38587:114;;;;;;;;;;;;;:::i;26892:24::-;;;;;;;;;;-1:-1:-1;26892:24:0;;;;-1:-1:-1;;;;;26892:24:0;;;27603:22;;;;;;;;;;;;;;;;10205:87;;;;;;;;;;-1:-1:-1;10278:6:0;;-1:-1:-1;;;;;10278:6:0;10205:87;;26844:41;;;;;;;;;;;;;;;15041:95;;;;;;;;;;;;;:::i;35122:561::-;;;:::i;19476:504::-;;;;;;;;;;-1:-1:-1;19476:504:0;;;;;:::i;:::-;;:::i;27923:40::-;;;;;;;;;;-1:-1:-1;27923:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16418:182;;;;;;;;;;-1:-1:-1;16418:182:0;;;;;:::i;:::-;;:::i;28098:50::-;;;;;;;;;;-1:-1:-1;28098:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27100:34;;;;;;;;;;;;;;;;16663:142;;;;;;;;;;-1:-1:-1;16663:142:0;;;;;:::i;:::-;;:::i;31399:207::-;;;;;;;;;;-1:-1:-1;31399:207:0;;;;;:::i;:::-;;:::i;27513:23::-;;;;;;;;;;;;;;;;11114:238;;;;;;;;;;-1:-1:-1;11114:238:0;;;;;:::i;:::-;;:::i;31792:148::-;;;;;;;;;;-1:-1:-1;31792:148:0;;;;;:::i;:::-;;:::i;37835:255::-;;;;;;;;;;-1:-1:-1;37835:255:0;;;;;:::i;:::-;;:::i;38776:118::-;28203:10;38828:4;28193:21;;;:9;:21;;;;;;;;28185:30;;;;;;-1:-1:-1;38845:11:0::1;:19:::0;;-1:-1:-1;;38845:19:0::1;::::0;;;38776:118;:::o;14831:91::-;14876:13;14909:5;14902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14831:91;:::o;17124:190::-;17197:4;9636:10;17253:31;9636:10;17269:7;17278:5;17253:8;:31::i;:::-;17302:4;17295:11;;;17124:190;;;;;:::o;30824:450::-;28203:10;30920:4;28193:21;;;:9;:21;;;;;;;;28185:30;;;;;;30988:6:::1;30972:13;16012:12:::0;;;15933:99;30972:13:::1;:22;;;;:::i;:::-;30959:9;:35;;30937:138;;;::::0;-1:-1:-1;;;30937:138:0;;4929:2:1;30937: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;;30937:138:0::1;;;;;;;;;31121:16;;31108:9;:29;;31086:129;;;::::0;-1:-1:-1;;;31086:129:0;;5351:2:1;31086: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;;31086:129:0::1;5149:414:1::0;31086:129:0::1;31223:9;::::0;31217:27:::1;::::0;-1:-1:-1;;;;;31223:9:0::1;31234::::0;31217:5:::1;:27::i;:::-;-1:-1:-1::0;31262:4:0::1;30824:450:::0;;;:::o;17892:249::-;17979:4;9636:10;18037:37;18053:4;9636:10;18068:5;18037:15;:37::i;:::-;18085:26;18095:4;18101:2;18105:5;18085:9;:26::i;:::-;-1:-1:-1;18129:4:0;;17892:249;-1:-1:-1;;;;17892:249:0:o;18550:238::-;18638:4;9636:10;18694:64;9636:10;18710:7;18747:10;18719:25;9636:10;18710:7;18719:9;:25::i;:::-;:38;;;;:::i;:::-;18694:8;:64::i;35848:183::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35936:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;35936:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35981:42;;154:41:1;;;35981:42:0::1;::::0;127:18:1;35981:42:0::1;;;;;;;35848:183:::0;;:::o;30616:200::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;30716:1:::1;30706:6;:11;;30698:58;;;::::0;-1:-1:-1;;;30698:58:0;;6261:2:1;30698: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;;30698:58:0::1;6059:398:1::0;30698:58:0::1;30804:4;30787:13;16012:12:::0;;;15933:99;30787:13:::1;30778:22;::::0;:6;:22:::1;:::i;:::-;30777:31;;;;:::i;:::-;30767:7;:41:::0;-1:-1:-1;30616:200:0:o;38242:262::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;38347:8:::1;:16:::0;;;38374:8:::1;:16:::0;;;38412:19:::1;38385:5:::0;38358;38412:19:::1;:::i;:::-;38401:8;:30:::0;;;38462:1:::1;-1:-1:-1::0;38450:13:0::1;38442:54;;;::::0;-1:-1:-1;;;38442:54:0;;6837:2:1;38442:54:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38442:54:0::1;6635:352:1::0;38442:54:0::1;38242:262:::0;;:::o;10856:103::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;10921:30:::1;10948:1;10921:18;:30::i;:::-;10856:103::o:0;38587:114::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;38642:8:::1;:15:::0;;-1:-1:-1;;38642:15:0::1;38653:4;38642:15;::::0;;38668:18:::1;:25:::0;;-1:-1:-1;;;;38668:25:0::1;-1:-1:-1::0;;;38668:25:0::1;::::0;;38587:114::o;15041:95::-;15088:13;15121:7;15114:14;;;;;:::i;35122:561::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;35208:11:::1;-1:-1:-1::0;;;;;35208:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35194:47:0::1;;35250:4;35257:11;-1:-1:-1::0;;;;;35257:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35194:82;::::0;-1:-1:-1;;;;;;35194:82:0::1;::::0;;;;;;-1:-1:-1;;;;;7478:15:1;;;35194:82:0::1;::::0;::::1;7460:34:1::0;7530:15;;7510:18;;;7503:43;7395:18;;35194:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35182:9;:94:::0;;-1:-1:-1;;;;;;35182:94:0::1;-1:-1:-1::0;;;;;35182:94:0;;;::::1;::::0;;::::1;::::0;;35287:43:::1;::::0;-1:-1:-1;35287:17:0::1;:43::i;:::-;35362:9;::::0;35341:38:::1;::::0;-1:-1:-1;;;;;35362:9:0::1;::::0;35341:12:::1;:38::i;:::-;35390:64;35407:4;35422:11;-1:-1:-1::0;;35390:8:0::1;:64::i;:::-;35466:11;-1:-1:-1::0;;;;;35466:27:0::1;;35501:9;35534:4;35554:24;35572:4;-1:-1:-1::0;;;;;16187:18:0;16160:7;16187:18;;;;;;;;;;;;16095:118;35554:24:::1;35593:1;35610::::0;35627:7:::1;10278:6:::0;;-1:-1:-1;;;;;10278:6:0;;10205:87;35627:7:::1;35466:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;35466:209:0;;;-1:-1:-1;;;;;7916:15:1;;;35466: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;35649:15:0::1;8130:19:1::0;;;8123:35;7832:19;;35466:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35122:561::o:0;19476:504::-;19571:4;9636:10;19571:4;19654:25;9636:10;19671:7;19654:9;:25::i;:::-;19627:52;;19713:17;19694:16;:36;19690:150;;;19754:74;;-1:-1:-1;;;19754:74:0;;-1:-1:-1;;;;;8700:32:1;;19754:74:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;19754:74:0;8480:345:1;19690:150:0;19875:62;19884:5;19891:7;19919:17;19900:16;:36;19875:8;:62::i;16418:182::-;16487:4;9636:10;16543:27;9636:10;16560:2;16564:5;16543:9;:27::i;16663:142::-;-1:-1:-1;;;;;16770:18:0;;;16743:7;16770:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16663:142::o;31399:207::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;31498:1:::1;31488:6;:11;;31480:62;;;::::0;-1:-1:-1;;;31480:62:0;;9032:2:1;31480: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;;31480:62:0::1;8830:402:1::0;31480:62:0::1;31594:4;31577:13;16012:12:::0;;;15933:99;31577:13:::1;31568:22;::::0;:6;:22:::1;:::i;:::-;31567:31;;;;:::i;:::-;31553:11;:45:::0;-1:-1:-1;31399:207:0:o;11114:238::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11217:22:0;::::1;11195:110;;;::::0;-1:-1:-1;;;11195:110:0;;9439:2:1;11195: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;;11195:110:0::1;9237:402:1::0;11195:110:0::1;11316:28;11335:8;11316:18;:28::i;:::-;11114:238:::0;:::o;31792:148::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31899:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;31899:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31792:148::o;37835:255::-;10278:6;;-1:-1:-1;;;;;10278:6:0;9636:10;10425:23;10417:68;;;;-1:-1:-1;;;10417:68:0;;;;;;;:::i;:::-;37939:7:::1;:15:::0;;;37965:7:::1;:15:::0;;;38001:17:::1;37975:5:::0;37949;38001:17:::1;:::i;:::-;37991:7;:27:::0;;;38048:1:::1;-1:-1:-1::0;38037:12:0::1;38029:53;;;::::0;-1:-1:-1;;;38029:53:0;;6837:2:1;38029:53:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38029:53:0::1;6635:352:1::0;23673:138:0;23766:37;23775:5;23782:7;23791:5;23798:4;23766:8;:37::i;23025:211::-;-1:-1:-1;;;;;23096:21:0;;23092:91;;23141:30;;-1:-1:-1;;;23141:30:0;;23168:1;23141:30;;;2378:51:1;2351:18;;23141:30:0;2232:203:1;23092:91:0;23193:35;23201:7;23218:1;23222:5;23193:7;:35::i;25410:487::-;25510:24;25537:25;25547:5;25554:7;25537:9;:25::i;:::-;25510:52;;-1:-1:-1;;25577:16:0;:37;25573:317;;25654:5;25635:16;:24;25631:132;;;25687:60;;-1:-1:-1;;;25687:60:0;;-1:-1:-1;;;;;8700:32:1;;25687:60:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;25687:60:0;8480:345:1;25631:132:0;25806:57;25815:5;25822:7;25850:5;25831:16;:24;25857:5;25806:8;:57::i;:::-;25499:398;25410:487;;;:::o;20365:308::-;-1:-1:-1;;;;;20449:18:0;;20445:88;;20491:30;;-1:-1:-1;;;20491:30:0;;20518:1;20491:30;;;2378:51:1;2351:18;;20491:30:0;2232:203:1;20445:88:0;-1:-1:-1;;;;;20547:16:0;;20543:88;;20587:32;;-1:-1:-1;;;20587:32:0;;20616:1;20587:32;;;2378:51:1;2351:18;;20587:32:0;2232:203:1;20543:88:0;20641:24;20649:4;20655:2;20659:5;20641:7;:24::i;11512:191::-;11605:6;;;-1:-1:-1;;;;;11622:17:0;;;-1:-1:-1;;;;;;11622:17:0;;;;;;;11655:40;;11605:6;;;11622:17;11605:6;;11655:40;;11586:16;;11655:40;11575:128;11512:191;:::o;36039:138::-;-1:-1:-1;;;;;36106:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;36106:22:0;;;;;;;;;;36146:23;;36106:22;;:14;36146:23;;;36039:138;;:::o;24678:443::-;-1:-1:-1;;;;;24791:19:0;;24787:91;;24834:32;;-1:-1:-1;;;24834:32:0;;24863:1;24834:32;;;2378:51:1;2351:18;;24834:32:0;2232:203:1;24787:91:0;-1:-1:-1;;;;;24892:21:0;;24888:92;;24937:31;;-1:-1:-1;;;24937:31:0;;24965:1;24937:31;;;2378:51:1;2351:18;;24937:31:0;2232:203:1;24888:92:0;-1:-1:-1;;;;;24990:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25036:78;;;;25087:7;-1:-1:-1;;;;;25071:31:0;25080:5;-1:-1:-1;;;;;25071:31:0;;25096:5;25071:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;25071:31:0;;;;;;;;24678:443;;;;:::o;31948:3166::-;32074:6;32084:1;32074:11;32070:54;;32088:26;32102:4;32108:2;32112:1;32088:13;:26::i;32070:54::-;-1:-1:-1;;;;;32139:15:0;;;;;;:9;:15;;;;;;;;32138:16;:34;;;;-1:-1:-1;;;;;;32159:13:0;;;;;;:9;:13;;;;;;;;32158:14;32138:34;32134:83;;;32182:8;;;;32174:43;;;;-1:-1:-1;;;32174:43:0;;9846:2:1;32174:43:0;;;9828:21:1;9885:2;9865:18;;;9858:30;-1:-1:-1;;;9904:18:1;;;9897:52;9966:18;;32174:43:0;9644:346:1;32174:43:0;32232:11;;;;:23;;;;-1:-1:-1;32247:8:0;;;;32232:23;32228:1265;;;10278:6;;-1:-1:-1;;;;;32294:15:0;;;10278:6;;32294:15;;;;:49;;-1:-1:-1;10278:6:0;;-1:-1:-1;;;;;32330:13:0;;;10278:6;;32330:13;;32294:49;:86;;;;-1:-1:-1;;;;;;32364:16:0;;;;32294:86;:128;;;;-1:-1:-1;;;;;;32401:21:0;;32415:6;32401:21;;32294:128;:164;;;;-1:-1:-1;32444:14:0;;-1:-1:-1;;;32444:14:0;;;;32443:15;32294:164;32272:1210;;;-1:-1:-1;;;;;32527:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;32546:22:0;;;;;;:18;:22;;;;;;;;32545:23;32527:41;32523:944;;;32637:7;;32627:6;:17;;32593:143;;;;-1:-1:-1;;;32593:143:0;;10197:2:1;32593: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;;32593:143:0;9995:404:1;32593:143:0;32819:11;;-1:-1:-1;;;;;16187:18:0;;16160:7;16187:18;;;;;;;;;;;32793:22;;:6;:22;:::i;:::-;:37;;32759:142;;;;-1:-1:-1;;;32759:142:0;;10606:2:1;32759:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;32759:142:0;10404:343:1;32759:142:0;32523:944;;;-1:-1:-1;;;;;32999:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;33016:24:0;;;;;;:18;:24;;;;;;;;33015:25;32999:41;32973:494;;;33127:7;;33117:6;:17;;33083:144;;;;-1:-1:-1;;;33083:144:0;;10954:2:1;33083: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;;33083:144:0;10752:405:1;32973:494:0;-1:-1:-1;;;;;33258:22:0;;;;;;:18;:22;;;;;;;;33253:214;;33365:11;;-1:-1:-1;;;;;16187:18:0;;16160:7;16187:18;;;;;;;;;;;33339:22;;:6;:22;:::i;:::-;:37;;33305:142;;;;-1:-1:-1;;;33305:142:0;;10606:2:1;33305:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;33305:142:0;10404:343:1;33305:142:0;33554:4;33505:28;16187:18;;;;;;;;;;;33612:19;;33588:43;;;;;;;33662:42;;-1:-1:-1;33686:18:0;;-1:-1:-1;;;33686:18:0;;;;33662:42;:74;;;;-1:-1:-1;33722:14:0;;-1:-1:-1;;;33722:14:0;;;;33721:15;33662:74;:103;;;;-1:-1:-1;;;;;;33753:12:0;;;;;;:8;:12;;;;;;;;33662:103;:148;;;;;33791:19;;33782:6;:28;33662:148;:181;;;;-1:-1:-1;;;;;;33828:15:0;;;;;;:9;:15;;;;;;;;33827:16;33662:181;:212;;;;-1:-1:-1;;;;;;33861:13:0;;;;;;:9;:13;;;;;;;;33860:14;33662:212;33644:363;;;33901:14;:21;;-1:-1:-1;;;;33901:21:0;-1:-1:-1;;;33901:21:0;;;33939:17;:15;:17::i;:::-;33973:14;:22;;-1:-1:-1;;;;33973:22:0;;;33644:363;34035:14;;-1:-1:-1;;;;;34151:15:0;;34019:12;34151:15;;;:9;:15;;;;;;34035:14;-1:-1:-1;;;34035:14:0;;;;;34034:15;;34151;;:32;;-1:-1:-1;;;;;;34170:13:0;;;;;;:9;:13;;;;;;;;34151:32;34147:80;;;-1:-1:-1;34210:5:0;34147:80;34239:12;34344:7;34340:723;;;-1:-1:-1;;;;;34396:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;34423:1;34412:8;;:12;34396:28;34392:524;;;34452:29;34477:3;34452:20;34463:8;;34452:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;34445:36;;34542:8;;34530;;34523:4;:15;;;;:::i;:::-;34522:28;;;;:::i;:::-;34500:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;34611:8:0;;34599;;34592:15;;:4;:15;:::i;:::-;34591:28;;;;:::i;:::-;34569:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;34392:524:0;;-1:-1:-1;34392:524:0;;-1:-1:-1;;;;;34681:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;34709:1;34699:7;;:11;34681:29;34677:239;;;34738:28;34762:3;34738:19;34749:7;;34738:6;:10;;:19;;;;:::i;:28::-;34731:35;;34826:7;;34815;;34808:4;:14;;;;:::i;:::-;34807:26;;;;:::i;:::-;34785:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;34893:7:0;;34882;;34875:14;;:4;:14;:::i;:::-;34874:26;;;;:::i;:::-;34852:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;34677:239:0;34936:8;;34932:89;;34965:40;34979:4;34993;35000;34965:13;:40::i;:::-;35037:14;35047:4;35037:14;;:::i;:::-;;;34340:723;35075:31;35089:4;35095:2;35099:6;35075:13;:31::i;:::-;32059:3055;;;;31948:3166;;;:::o;20989:1135::-;-1:-1:-1;;;;;21079:18:0;;21075:552;;21233:5;21217:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21075:552:0;;-1:-1:-1;21075:552:0;;-1:-1:-1;;;;;21293:15:0;;21271:19;21293:15;;;;;;;;;;;21327:19;;;21323:117;;;21374:50;;-1:-1:-1;;;21374:50:0;;-1:-1:-1;;;;;8700:32:1;;21374:50:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;21374:50:0;8480:345:1;21323:117:0;-1:-1:-1;;;;;21563:15:0;;:9;:15;;;;;;;;;;21581:19;;;;21563:37;;21075:552;-1:-1:-1;;;;;21643:16:0;;21639:435;;21809:12;:21;;;;;;;21639:435;;;-1:-1:-1;;;;;22025:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21639:435;22106:2;-1:-1:-1;;;;;22091:25:0;22100:4;-1:-1:-1;;;;;22091:25:0;;22110:5;22091:25;;;;1361::1;;1349:2;1334:18;;1215:177;22091:25:0;;;;;;;;20989:1135;;;:::o;36788:896::-;36878:4;36834:23;16187:18;;;;;;;;;;;36834:50;;36895:25;36944:18;;36923;;:39;;;;:::i;:::-;36895:67;-1:-1:-1;36977:20:0;;;:46;;-1:-1:-1;37001:22:0;;36977:46;36973:85;;;37040:7;;36788:896::o;36973:85::-;37092:19;;37074:15;:37;37070:107;;;37146:19;;37128:37;;37070:107;37217:21;37251:51;37286:15;37251:34;:51::i;:::-;37315:18;37336:44;:21;37362:17;37336:25;:44::i;:::-;37315:65;;37393:21;37417:57;37456:17;37417:34;37432:18;;37417:10;:14;;:34;;;;:::i;:57::-;37508:1;37487:18;:22;;;37520:18;:22;;;37563:21;;37555:54;;37393:81;;-1:-1:-1;;;;;;37563:21:0;;37555:54;;;;;37393:81;;37555:54;;37508:1;37555:54;37393:81;37563:21;37555:54;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37628:15:0;;37620:56;;-1:-1:-1;;;;;37628:15:0;;;;;;;;;37654:21;37620:56;;;;;;;;;37654:21;37628:15;37620:56;;;;;;;;;;;;;;;;;;;;;36823:861;;;;;36788:896::o;3445:98::-;3503:7;3530:5;3534:1;3530;:5;:::i;:::-;3523:12;3445:98;-1:-1:-1;;;3445:98:0:o;3844:::-;3902:7;3929:5;3933:1;3929;:5;:::i;36185:595::-;36353:16;;;36367:1;36353:16;;;;;;;;36329:21;;36353:16;;;;;;;;;;-1:-1:-1;36353:16:0;36329:40;;36398:4;36380;36385:1;36380:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36380:23:0;;;-1:-1:-1;;;;;36380:23:0;;;;;36424:11;-1:-1:-1;;;;;36424:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36414:4;36419:1;36414:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;36414:28:0;;;-1:-1:-1;;;;;36414:28:0;;;;;36455:58;36472:4;36487:11;36501;36455:8;:58::i;:::-;36552:220;;-1:-1:-1;;;36552:220:0;;-1:-1:-1;;;;;36552:11:0;:62;;;;:220;;36629:11;;36655:1;;36699:4;;36726;;36746:15;;36552:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3088:98;3146:7;3173:5;3177:1;3173;: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;11427:127::-;11488:10;11483:3;11479:20;11476:1;11469:31;11519:4;11516:1;11509:15;11543:4;11540:1;11533:15;11559:980;11821:4;11869:3;11858:9;11854:19;11900:6;11889:9;11882:25;11926:2;11964:6;11959:2;11948:9;11944:18;11937:34;12007:3;12002:2;11991:9;11987:18;11980:31;12031:6;12066;12060:13;12097:6;12089;12082:22;12135:3;12124:9;12120:19;12113:26;;12174:2;12166:6;12162:15;12148:29;;12195:1;12205:195;12219:6;12216:1;12213:13;12205:195;;;12284:13;;-1:-1:-1;;;;;12280:39:1;12268:52;;12375:15;;;;12340:12;;;;12316:1;12234:9;12205:195;;;-1:-1:-1;;;;;;;12456:32:1;;;;12451:2;12436:18;;12429:60;-1:-1:-1;;;12520:3:1;12505:19;12498:35;12417:3;11559:980;-1:-1:-1;;;11559:980:1:o

Swarm Source

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