ETH Price: $2,440.36 (+3.50%)

Token

CYBER TRUCK (ELONTRUCK)
 

Overview

Max Total Supply

663,868,968.045814173136571556 ELONTRUCK

Holders

45

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
ELONTRUCK

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-02
*/

// SPDX-License-Identifier: MIT

/**
    🌐Website: https://www.elontruck.vip
    🌐Twitter:  https://twitter.com/elontruckportal
    🌐Telegram:  https://t.me/elontruck
*/

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

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

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 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 ELONTRUCK is ERC20, Ownable {
    using SafeMath for uint256;

    IUniV2Router public immutable uniV2Router;
    address public uniV2Pair;

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

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

    // Fee receivers
    address public addressForProjectFee;
    address public addressForTreasuryFee;

    bool public _trdOpen = false;

    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;

    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

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

    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    mapping(address => bool) public txLimitWhitelisted;

    // 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;

    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

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

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

    modifier checker {
        require(wlForFees[msg.sender]);
        _;
    }

    constructor() ERC20("CYBER TRUCK", "ELONTRUCK") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 tokenSupply = 1000000000 * 1e18;

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

        minSwapbackTreshold = (tokenSupply * 3) / 100000; // 0.003% swapback trigger
        maxSwapbackLimit = (tokenSupply * 100) / 100;

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

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

        addressForProjectFee = address(0x1F7375b6A76695206e9664e60dd27F4d2Ea91da9);
        addressForTreasuryFee = address(msg.sender);

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

        exemptFromTxLimits(owner(), true);
        exemptFromTxLimits(address(this), true);
        exemptFromTxLimits(address(0xdead), true);
        exemptFromTxLimits(addressForProjectFee, true);

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

    function createPair() external payable onlyOwner {
        uniV2Pair = IUniV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        exemptFromTxLimits(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
        );
    }

    receive() external payable {}

    /// @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 onlyOwner returns (bool) {
        earlyLimits = false;
        return true;
    }

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

    /// @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 exemptFromTxLimits(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    /// @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 <= 12, "Must keep fees at 12% 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 <= 12, "Must keep fees at 12% or less");
    }

    /// @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 exemptFromSwapFees(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 _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] &&
            !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 swapExactTokensForETHOnUniV2Router(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniV2Router.WETH();

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

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

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

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":"addressForProjectFee","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"exemptFromSwapFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromTxLimits","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":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeTxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805460ff60a81b191690556009805460ff19166001179055600e805460ff60a01b191690553480156200003857600080fd5b506040518060400160405280600b81526020016a435942455220545255434b60a81b81525060405180604001604052806009815260200168454c4f4e545255434b60b81b815250816003908162000090919062001070565b5060046200009f828262001070565b505050620000bc620000b66200029760201b60201c565b6200029b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000de816001620002ed565b6001600160a01b0381166080526b033b2e3c9fd0803ce800000060646200010782600262001152565b6200011391906200116c565b600b5560646200012582600262001152565b6200013191906200116c565b600a55620186a06200014582600362001152565b6200015191906200116c565b600755606462000162828262001152565b6200016e91906200116c565b60085560146010819055600060118190556200018a916200118f565b600f55601460138190556000808255620001a4916200118f565b601255600d80546001600160a01b0319908116731f7375b6a76695206e9664e60dd27f4d2ea91da917909155600e805490911633179055620001fa620001f26005546001600160a01b031690565b600162000367565b6200020730600162000367565b6200021661dead600162000367565b600d546200022f906001600160a01b0316600162000367565b6200024e620002466005546001600160a01b031690565b6001620002ed565b6200025b306001620002ed565b6200026a61dead6001620002ed565b600d5462000283906001600160a01b03166001620002ed565b6200028f338262000411565b505062001276565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200033c5760405162461bcd60e51b81526020600482018190526024820152600080516020620035ab83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003b25760405162461bcd60e51b81526020600482018190526024820152600080516020620035ab833981519152604482015260640162000333565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b0382166200043d5760405163ec442f0560e01b81526000600482015260240162000333565b6200044b600083836200044f565b5050565b806000036200046b57620004668383600062000b07565b505050565b6001600160a01b03831660009081526017602052604090205460ff16158015620004ae57506001600160a01b03821660009081526017602052604090205460ff16155b156200050f57600e54600160a01b900460ff166200050f5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652100000000000000000000604482015260640162000333565b60095460ff1680156200052b5750600e54600160a01b900460ff165b1562000806576005546001600160a01b038481169116148015906200055e57506005546001600160a01b03838116911614155b80156200057357506001600160a01b03821615155b80156200058b57506001600160a01b03821661dead14155b8015620005a25750600654600160a01b900460ff16155b1562000806576001600160a01b03831660009081526019602052604090205460ff168015620005ea57506001600160a01b03821660009081526018602052604090205460ff16155b15620006c957600b54811115620006555760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840162000333565b600a546001600160a01b0383166000908152602081905260409020546200067d90836200118f565b1115620006c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000333565b62000806565b6001600160a01b03821660009081526019602052604090205460ff1680156200070b57506001600160a01b03831660009081526018602052604090205460ff16155b156200077757600b54811115620006c35760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840162000333565b6001600160a01b03821660009081526018602052604090205460ff166200080657600a546001600160a01b038316600090815260208190526040902054620007c090836200118f565b1115620008065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000333565b3060009081526020819052604090205460075481108015908190620008345750600654600160a81b900460ff165b80156200084b5750600654600160a01b900460ff16155b80156200087057506001600160a01b03841660009081526019602052604090205460ff165b80156200089657506001600160a01b03851660009081526017602052604090205460ff16155b8015620008bc57506001600160a01b03841660009081526017602052604090205460ff16155b15620008ed576006805460ff60a01b1916600160a01b179055620008df62000c3a565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806200093c57506001600160a01b03851660009081526017602052604090205460ff165b1562000946575060005b6000811562000af1576001600160a01b03861660009081526019602052604090205460ff1680156200097a57506000601254115b1562000a15576012546200099f906064906200099890889062000d41565b9062000d58565b905060125460145482620009b4919062001152565b620009c091906200116c565b60166000828254620009d391906200118f565b9091555050601254601354620009ea908362001152565b620009f691906200116c565b6015600082825462000a0991906200118f565b9091555062000ace9050565b6001600160a01b03871660009081526019602052604090205460ff16801562000a4057506000600f54115b1562000ace57600f5462000a5e906064906200099890889062000d41565b9050600f546011548262000a73919062001152565b62000a7f91906200116c565b6016600082825462000a9291906200118f565b9091555050600f5460105462000aa9908362001152565b62000ab591906200116c565b6015600082825462000ac891906200118f565b90915550505b801562000ae25762000ae287308362000b07565b62000aee8186620011a5565b94505b62000afe87878762000b07565b50505050505050565b6001600160a01b03831662000b3657806002600082825462000b2a91906200118f565b9091555062000baa9050565b6001600160a01b0383166000908152602081905260409020548181101562000b8b5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000333565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000bc85760028054829003905562000be7565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c2d91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060165460155462000c6091906200118f565b9050600060075483111562000c755760075492505b4762000c818462000d66565b600062000c8f478362000ee1565b9050600062000caf85620009986016548562000d4160201b90919060201c565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d806000811462000cff576040519150601f19603f3d011682016040523d82523d6000602084013e62000d04565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f1935050505015801562000afe573d6000803e3d6000fd5b600062000d4f828462001152565b90505b92915050565b600062000d4f82846200116c565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000d9e5762000d9e620011bb565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000dff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e259190620011d1565b8160018151811062000e3b5762000e3b620011bb565b60200260200101906001600160a01b031690816001600160a01b03168152505062000e70306080518462000eef60201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000ea995949392919062001203565b600060405180830381600087803b15801562000ec457600080fd5b505af115801562000ed9573d6000803e3d6000fd5b505050505050565b600062000d4f8284620011a5565b6200046683838360016001600160a01b03841662000f245760405163e602df0560e01b81526000600482015260240162000333565b6001600160a01b03831662000f5057604051634a1406b160e11b81526000600482015260240162000333565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801562000fce57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000fc591815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000fff57607f821691505b6020821081036200102057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046657600081815260208120601f850160051c810160208610156200104f5750805b601f850160051c820191505b8181101562000ed9578281556001016200105b565b81516001600160401b038111156200108c576200108c62000fd4565b620010a4816200109d845462000fea565b8462001026565b602080601f831160018114620010dc5760008415620010c35750858301515b600019600386901b1c1916600185901b17855562000ed9565b600085815260208120601f198616915b828110156200110d57888601518255948401946001909101908401620010ec565b50858210156200112c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000d525762000d526200113c565b6000826200118a57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000d525762000d526200113c565b8181038181111562000d525762000d526200113c565b634e487b7160e01b600052603260045260246000fd5b600060208284031215620011e457600080fd5b81516001600160a01b0381168114620011fc57600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012555784516001600160a01b0316835293830193918301916001016200122e565b50506001600160a01b03969096166060850152505050608001529392505050565b6080516122e8620012c36000396000818161064501528181610c9801528181610d2901528181610e6101528181610e8a01528181611df301528181611eac0152611ee801526122e86000f3fe6080604052600436106102765760003560e01c80636886ad3e1161014f57806395d89b41116100c1578063bb27b8b81161007a578063bb27b8b814610724578063dd62ed3e14610744578063dfd028f014610764578063ed8a2fda14610784578063f2fde38b1461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b80636886ad3e146105135780636ac9a870146105335780636caae8321461055357806370a0823114610569578063715018a61461059f57600080fd5b80632765cddd116101e85780633c8463a1116101ac5780633c8463a11461046e5780633d56af6b1461048457806346e973611461049a578063522ef4c7146104ba57806358915a86146104db57806365e00719146104fd57600080fd5b80632765cddd146103f05780632956376914610406578063313ce5671461041c57806335c094a414610438578063395093511461044e57600080fd5b8063095ea7b31161023a578063095ea7b314610341578063106d058314610361578063159a522014610385578063171a65861461039b57806318160ddd146103bb57806323b872dd146103d057600080fd5b80630106aaef1461028257806304571cdd146102ac57806306123160146102e457806306fdde031461030557806307b1faea1461032757600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102cc906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156102f057600080fd5b50600e5461029790600160a01b900460ff1681565b34801561031157600080fd5b5061031a610820565b6040516102a39190611f68565b34801561033357600080fd5b506009546102979060ff1681565b34801561034d57600080fd5b5061029761035c366004611fcb565b6108b2565b34801561036d57600080fd5b5061037760105481565b6040519081526020016102a3565b34801561039157600080fd5b5061037760135481565b3480156103a757600080fd5b506102976103b6366004611ff7565b6108cc565b3480156103c757600080fd5b50600254610377565b3480156103dc57600080fd5b506102976103eb366004612010565b6109f7565b3480156103fc57600080fd5b5061037760115481565b34801561041257600080fd5b5061037760145481565b34801561042857600080fd5b50604051601281526020016102a3565b34801561044457600080fd5b5061037760155481565b34801561045a57600080fd5b50610297610469366004611fcb565b610a1b565b34801561047a57600080fd5b50610377600a5481565b34801561049057600080fd5b5061037760165481565b3480156104a657600080fd5b50600e546102cc906001600160a01b031681565b3480156104c657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104e757600080fd5b506104fb6104f6366004611ff7565b610a3d565b005b34801561050957600080fd5b5061037760085481565b34801561051f57600080fd5b506104fb61052e366004612051565b610ae9565b34801561053f57600080fd5b506104fb61054e36600461208f565b610b3e565b34801561055f57600080fd5b50610377600b5481565b34801561057557600080fd5b506103776105843660046120b1565b6001600160a01b031660009081526020819052604090205490565b3480156105ab57600080fd5b506104fb610bd5565b3480156105c057600080fd5b5061037760075481565b3480156105d657600080fd5b506104fb610c0b565b3480156105eb57600080fd5b506006546102cc906001600160a01b031681565b34801561060b57600080fd5b50610377600f5481565b34801561062157600080fd5b506005546001600160a01b03166102cc565b34801561063f57600080fd5b506102cc7f000000000000000000000000000000000000000000000000000000000000000081565b34801561067357600080fd5b5061031a610c5d565b6104fb610c6c565b34801561069057600080fd5b5061029761069f366004611fcb565b610f7f565b3480156106b057600080fd5b506102976106bf3660046120b1565b60196020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fcb565b610fd6565b34801561070057600080fd5b5061029761070f3660046120b1565b60186020526000908152604090205460ff1681565b34801561073057600080fd5b506104fb61073f366004612051565b610fe4565b34801561075057600080fd5b5061037761075f3660046120ce565b61106d565b34801561077057600080fd5b506104fb61077f366004611ff7565b611098565b34801561079057600080fd5b5061037760125481565b3480156107a657600080fd5b506104fb6107b53660046120b1565b611148565b3480156107c657600080fd5b506104fb6107d536600461208f565b6111e3565b6005546000906001600160a01b031633146108105760405162461bcd60e51b8152600401610807906120fc565b60405180910390fd5b506009805460ff19169055600190565b60606003805461082f90612131565b80601f016020809104026020016040519081016040528092919081815260200182805461085b90612131565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6000336108c0818585611276565b60019150505b92915050565b3360009081526017602052604081205460ff166108e857600080fd5b620186a06108f560025490565b6108ff9190612181565b82101561096c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610807565b6008548211156109d95760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610807565b6006546109ef906001600160a01b031683611283565b506001919050565b600033610a058582856112b9565b610a1085858561131f565b506001949350505050565b6000336108c0818585610a2e838361106d565b610a3891906121a3565b611276565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610807906120fc565b6002811015610ac35760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610807565b6103e8610acf60025490565b610ad990836121b6565b610ae39190612181565b600b5550565b6005546001600160a01b03163314610b135760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b685760405162461bcd60e51b8152600401610807906120fc565b60138290556014819055610b7c81836121a3565b6012819055600c1015610bd15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610807565b5050565b6005546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610807906120fc565b610c09600061137e565b565b6005546001600160a01b03163314610c355760405162461bcd60e51b8152600401610807906120fc565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b60606004805461082f90612131565b6005546001600160a01b03163314610c965760405162461bcd60e51b8152600401610807906120fc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1891906121cd565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da991906121cd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a91906121cd565b600680546001600160a01b0319166001600160a01b03929092169182179055610e44906001610ae9565b600654610e5b906001600160a01b031660016113d0565b610e88307f0000000000000000000000000000000000000000000000000000000000000000600019611276565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610ed8306001600160a01b031660009081526020819052604090205490565b600080610eed6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f55573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f7a91906121ea565b505050565b60003381610f8d828661106d565b905083811015610fc957604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610807565b610a108286868403611276565b6000336108c081858561131f565b6005546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110c25760405162461bcd60e51b8152600401610807906120fc565b60058110156111225760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610807565b6103e861112e60025490565b61113890836121b6565b6111429190612181565b600a5550565b6005546001600160a01b031633146111725760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b0381166111d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b6111e08161137e565b50565b6005546001600160a01b0316331461120d5760405162461bcd60e51b8152600401610807906120fc565b6010829055601181905561122181836121a3565b600f819055600c1015610bd15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610807565b610f7a8383836001611424565b6001600160a01b0382166112ad57604051634b637e8f60e11b815260006004820152602401610807565b610bd1826000836114f9565b60006112c5848461106d565b90506000198114611319578181101561130a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610807565b61131984848484036000611424565b50505050565b6001600160a01b03831661134957604051634b637e8f60e11b815260006004820152602401610807565b6001600160a01b0382166113735760405163ec442f0560e01b815260006004820152602401610807565b610f7a8383836114f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661144e5760405163e602df0560e01b815260006004820152602401610807565b6001600160a01b03831661147857604051634a1406b160e11b815260006004820152602401610807565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114eb91815260200190565b60405180910390a350505050565b8060000361150d57610f7a83836000611b59565b6001600160a01b03831660009081526017602052604090205460ff1615801561154f57506001600160a01b03821660009081526017602052604090205460ff16155b156115a657600e54600160a01b900460ff166115a65760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610807565b60095460ff1680156115c15750600e54600160a01b900460ff165b15611884576005546001600160a01b038481169116148015906115f257506005546001600160a01b03838116911614155b801561160657506001600160a01b03821615155b801561161d57506001600160a01b03821661dead14155b80156116335750600654600160a01b900460ff16155b15611884576001600160a01b03831660009081526019602052604090205460ff16801561167957506001600160a01b03821660009081526018602052604090205460ff16155b1561175057600b548111156116e15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610807565b600a546001600160a01b03831660009081526020819052604090205461170790836121a3565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b611884565b6001600160a01b03821660009081526019602052604090205460ff16801561179157506001600160a01b03831660009081526018602052604090205460ff16155b156117fa57600b5481111561174b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610807565b6001600160a01b03821660009081526018602052604090205460ff1661188457600a546001600160a01b03831660009081526020819052604090205461184090836121a3565b11156118845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b30600090815260208190526040902054600754811080159081906118b15750600654600160a81b900460ff165b80156118c75750600654600160a01b900460ff16155b80156118eb57506001600160a01b03841660009081526019602052604090205460ff165b801561191057506001600160a01b03851660009081526017602052604090205460ff16155b801561193557506001600160a01b03841660009081526017602052604090205460ff16155b15611963576006805460ff60a01b1916600160a01b179055611955611c83565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119b157506001600160a01b03851660009081526017602052604090205460ff165b156119ba575060005b60008115611b45576001600160a01b03861660009081526019602052604090205460ff1680156119ec57506000601254115b15611a7a57611a116064611a0b60125488611d7d90919063ffffffff16565b90611d90565b905060125460145482611a2491906121b6565b611a2e9190612181565b60166000828254611a3f91906121a3565b9091555050601254601354611a5490836121b6565b611a5e9190612181565b60156000828254611a6f91906121a3565b90915550611b279050565b6001600160a01b03871660009081526019602052604090205460ff168015611aa457506000600f54115b15611b2757611ac36064611a0b600f5488611d7d90919063ffffffff16565b9050600f5460115482611ad691906121b6565b611ae09190612181565b60166000828254611af191906121a3565b9091555050600f54601054611b0690836121b6565b611b109190612181565b60156000828254611b2191906121a3565b90915550505b8015611b3857611b38873083611b59565b611b428186612218565b94505b611b50878787611b59565b50505050505050565b6001600160a01b038316611b84578060026000828254611b7991906121a3565b90915550611bf69050565b6001600160a01b03831660009081526020819052604090205481811015611bd75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610807565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1257600280548290039055611c31565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c7691815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611ca791906121a3565b90506000600754831115611cbb5760075492505b47611cc584611d9c565b6000611cd14783611f5c565b90506000611cee85611a0b60165485611d7d90919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d3c576040519150601f19603f3d011682016040523d82523d6000602084013e611d41565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b50573d6000803e3d6000fd5b6000611d8982846121b6565b9392505050565b6000611d898284612181565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dd157611dd161222b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7391906121cd565b81600181518110611e8657611e8661222b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed1307f000000000000000000000000000000000000000000000000000000000000000084611276565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f26908590600090869030904290600401612241565b600060405180830381600087803b158015611f4057600080fd5b505af1158015611f54573d6000803e3d6000fd5b505050505050565b6000611d898284612218565b600060208083528351808285015260005b81811015611f9557858101830151858201604001528201611f79565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111e057600080fd5b60008060408385031215611fde57600080fd5b8235611fe981611fb6565b946020939093013593505050565b60006020828403121561200957600080fd5b5035919050565b60008060006060848603121561202557600080fd5b833561203081611fb6565b9250602084013561204081611fb6565b929592945050506040919091013590565b6000806040838503121561206457600080fd5b823561206f81611fb6565b91506020830135801515811461208457600080fd5b809150509250929050565b600080604083850312156120a257600080fd5b50508035926020909101359150565b6000602082840312156120c357600080fd5b8135611d8981611fb6565b600080604083850312156120e157600080fd5b82356120ec81611fb6565b9150602083013561208481611fb6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061214557607f821691505b60208210810361216557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261219e57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c6576108c661216b565b80820281158282048414176108c6576108c661216b565b6000602082840312156121df57600080fd5b8151611d8981611fb6565b6000806000606084860312156121ff57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c6576108c661216b565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122915784516001600160a01b03168352938301939183019160010161226c565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201daaf09c9efa778d077d589acf87183154eb5eb4754b146412f3b8703a503a7464736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c80636886ad3e1161014f57806395d89b41116100c1578063bb27b8b81161007a578063bb27b8b814610724578063dd62ed3e14610744578063dfd028f014610764578063ed8a2fda14610784578063f2fde38b1461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b80636886ad3e146105135780636ac9a870146105335780636caae8321461055357806370a0823114610569578063715018a61461059f57600080fd5b80632765cddd116101e85780633c8463a1116101ac5780633c8463a11461046e5780633d56af6b1461048457806346e973611461049a578063522ef4c7146104ba57806358915a86146104db57806365e00719146104fd57600080fd5b80632765cddd146103f05780632956376914610406578063313ce5671461041c57806335c094a414610438578063395093511461044e57600080fd5b8063095ea7b31161023a578063095ea7b314610341578063106d058314610361578063159a522014610385578063171a65861461039b57806318160ddd146103bb57806323b872dd146103d057600080fd5b80630106aaef1461028257806304571cdd146102ac57806306123160146102e457806306fdde031461030557806307b1faea1461032757600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102cc906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156102f057600080fd5b50600e5461029790600160a01b900460ff1681565b34801561031157600080fd5b5061031a610820565b6040516102a39190611f68565b34801561033357600080fd5b506009546102979060ff1681565b34801561034d57600080fd5b5061029761035c366004611fcb565b6108b2565b34801561036d57600080fd5b5061037760105481565b6040519081526020016102a3565b34801561039157600080fd5b5061037760135481565b3480156103a757600080fd5b506102976103b6366004611ff7565b6108cc565b3480156103c757600080fd5b50600254610377565b3480156103dc57600080fd5b506102976103eb366004612010565b6109f7565b3480156103fc57600080fd5b5061037760115481565b34801561041257600080fd5b5061037760145481565b34801561042857600080fd5b50604051601281526020016102a3565b34801561044457600080fd5b5061037760155481565b34801561045a57600080fd5b50610297610469366004611fcb565b610a1b565b34801561047a57600080fd5b50610377600a5481565b34801561049057600080fd5b5061037760165481565b3480156104a657600080fd5b50600e546102cc906001600160a01b031681565b3480156104c657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104e757600080fd5b506104fb6104f6366004611ff7565b610a3d565b005b34801561050957600080fd5b5061037760085481565b34801561051f57600080fd5b506104fb61052e366004612051565b610ae9565b34801561053f57600080fd5b506104fb61054e36600461208f565b610b3e565b34801561055f57600080fd5b50610377600b5481565b34801561057557600080fd5b506103776105843660046120b1565b6001600160a01b031660009081526020819052604090205490565b3480156105ab57600080fd5b506104fb610bd5565b3480156105c057600080fd5b5061037760075481565b3480156105d657600080fd5b506104fb610c0b565b3480156105eb57600080fd5b506006546102cc906001600160a01b031681565b34801561060b57600080fd5b50610377600f5481565b34801561062157600080fd5b506005546001600160a01b03166102cc565b34801561063f57600080fd5b506102cc7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067357600080fd5b5061031a610c5d565b6104fb610c6c565b34801561069057600080fd5b5061029761069f366004611fcb565b610f7f565b3480156106b057600080fd5b506102976106bf3660046120b1565b60196020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fcb565b610fd6565b34801561070057600080fd5b5061029761070f3660046120b1565b60186020526000908152604090205460ff1681565b34801561073057600080fd5b506104fb61073f366004612051565b610fe4565b34801561075057600080fd5b5061037761075f3660046120ce565b61106d565b34801561077057600080fd5b506104fb61077f366004611ff7565b611098565b34801561079057600080fd5b5061037760125481565b3480156107a657600080fd5b506104fb6107b53660046120b1565b611148565b3480156107c657600080fd5b506104fb6107d536600461208f565b6111e3565b6005546000906001600160a01b031633146108105760405162461bcd60e51b8152600401610807906120fc565b60405180910390fd5b506009805460ff19169055600190565b60606003805461082f90612131565b80601f016020809104026020016040519081016040528092919081815260200182805461085b90612131565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6000336108c0818585611276565b60019150505b92915050565b3360009081526017602052604081205460ff166108e857600080fd5b620186a06108f560025490565b6108ff9190612181565b82101561096c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610807565b6008548211156109d95760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610807565b6006546109ef906001600160a01b031683611283565b506001919050565b600033610a058582856112b9565b610a1085858561131f565b506001949350505050565b6000336108c0818585610a2e838361106d565b610a3891906121a3565b611276565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610807906120fc565b6002811015610ac35760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610807565b6103e8610acf60025490565b610ad990836121b6565b610ae39190612181565b600b5550565b6005546001600160a01b03163314610b135760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b685760405162461bcd60e51b8152600401610807906120fc565b60138290556014819055610b7c81836121a3565b6012819055600c1015610bd15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610807565b5050565b6005546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610807906120fc565b610c09600061137e565b565b6005546001600160a01b03163314610c355760405162461bcd60e51b8152600401610807906120fc565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b60606004805461082f90612131565b6005546001600160a01b03163314610c965760405162461bcd60e51b8152600401610807906120fc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1891906121cd565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da991906121cd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a91906121cd565b600680546001600160a01b0319166001600160a01b03929092169182179055610e44906001610ae9565b600654610e5b906001600160a01b031660016113d0565b610e88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611276565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610ed8306001600160a01b031660009081526020819052604090205490565b600080610eed6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f55573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f7a91906121ea565b505050565b60003381610f8d828661106d565b905083811015610fc957604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610807565b610a108286868403611276565b6000336108c081858561131f565b6005546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110c25760405162461bcd60e51b8152600401610807906120fc565b60058110156111225760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610807565b6103e861112e60025490565b61113890836121b6565b6111429190612181565b600a5550565b6005546001600160a01b031633146111725760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b0381166111d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b6111e08161137e565b50565b6005546001600160a01b0316331461120d5760405162461bcd60e51b8152600401610807906120fc565b6010829055601181905561122181836121a3565b600f819055600c1015610bd15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610807565b610f7a8383836001611424565b6001600160a01b0382166112ad57604051634b637e8f60e11b815260006004820152602401610807565b610bd1826000836114f9565b60006112c5848461106d565b90506000198114611319578181101561130a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610807565b61131984848484036000611424565b50505050565b6001600160a01b03831661134957604051634b637e8f60e11b815260006004820152602401610807565b6001600160a01b0382166113735760405163ec442f0560e01b815260006004820152602401610807565b610f7a8383836114f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661144e5760405163e602df0560e01b815260006004820152602401610807565b6001600160a01b03831661147857604051634a1406b160e11b815260006004820152602401610807565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114eb91815260200190565b60405180910390a350505050565b8060000361150d57610f7a83836000611b59565b6001600160a01b03831660009081526017602052604090205460ff1615801561154f57506001600160a01b03821660009081526017602052604090205460ff16155b156115a657600e54600160a01b900460ff166115a65760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610807565b60095460ff1680156115c15750600e54600160a01b900460ff165b15611884576005546001600160a01b038481169116148015906115f257506005546001600160a01b03838116911614155b801561160657506001600160a01b03821615155b801561161d57506001600160a01b03821661dead14155b80156116335750600654600160a01b900460ff16155b15611884576001600160a01b03831660009081526019602052604090205460ff16801561167957506001600160a01b03821660009081526018602052604090205460ff16155b1561175057600b548111156116e15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610807565b600a546001600160a01b03831660009081526020819052604090205461170790836121a3565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b611884565b6001600160a01b03821660009081526019602052604090205460ff16801561179157506001600160a01b03831660009081526018602052604090205460ff16155b156117fa57600b5481111561174b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610807565b6001600160a01b03821660009081526018602052604090205460ff1661188457600a546001600160a01b03831660009081526020819052604090205461184090836121a3565b11156118845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b30600090815260208190526040902054600754811080159081906118b15750600654600160a81b900460ff165b80156118c75750600654600160a01b900460ff16155b80156118eb57506001600160a01b03841660009081526019602052604090205460ff165b801561191057506001600160a01b03851660009081526017602052604090205460ff16155b801561193557506001600160a01b03841660009081526017602052604090205460ff16155b15611963576006805460ff60a01b1916600160a01b179055611955611c83565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119b157506001600160a01b03851660009081526017602052604090205460ff165b156119ba575060005b60008115611b45576001600160a01b03861660009081526019602052604090205460ff1680156119ec57506000601254115b15611a7a57611a116064611a0b60125488611d7d90919063ffffffff16565b90611d90565b905060125460145482611a2491906121b6565b611a2e9190612181565b60166000828254611a3f91906121a3565b9091555050601254601354611a5490836121b6565b611a5e9190612181565b60156000828254611a6f91906121a3565b90915550611b279050565b6001600160a01b03871660009081526019602052604090205460ff168015611aa457506000600f54115b15611b2757611ac36064611a0b600f5488611d7d90919063ffffffff16565b9050600f5460115482611ad691906121b6565b611ae09190612181565b60166000828254611af191906121a3565b9091555050600f54601054611b0690836121b6565b611b109190612181565b60156000828254611b2191906121a3565b90915550505b8015611b3857611b38873083611b59565b611b428186612218565b94505b611b50878787611b59565b50505050505050565b6001600160a01b038316611b84578060026000828254611b7991906121a3565b90915550611bf69050565b6001600160a01b03831660009081526020819052604090205481811015611bd75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610807565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1257600280548290039055611c31565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c7691815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611ca791906121a3565b90506000600754831115611cbb5760075492505b47611cc584611d9c565b6000611cd14783611f5c565b90506000611cee85611a0b60165485611d7d90919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d3c576040519150601f19603f3d011682016040523d82523d6000602084013e611d41565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b50573d6000803e3d6000fd5b6000611d8982846121b6565b9392505050565b6000611d898284612181565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dd157611dd161222b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7391906121cd565b81600181518110611e8657611e8661222b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611276565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f26908590600090869030904290600401612241565b600060405180830381600087803b158015611f4057600080fd5b505af1158015611f54573d6000803e3d6000fd5b505050505050565b6000611d898284612218565b600060208083528351808285015260005b81811015611f9557858101830151858201604001528201611f79565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111e057600080fd5b60008060408385031215611fde57600080fd5b8235611fe981611fb6565b946020939093013593505050565b60006020828403121561200957600080fd5b5035919050565b60008060006060848603121561202557600080fd5b833561203081611fb6565b9250602084013561204081611fb6565b929592945050506040919091013590565b6000806040838503121561206457600080fd5b823561206f81611fb6565b91506020830135801515811461208457600080fd5b809150509250929050565b600080604083850312156120a257600080fd5b50508035926020909101359150565b6000602082840312156120c357600080fd5b8135611d8981611fb6565b600080604083850312156120e157600080fd5b82356120ec81611fb6565b9150602083013561208481611fb6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061214557607f821691505b60208210810361216557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261219e57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c6576108c661216b565b80820281158282048414176108c6576108c661216b565b6000602082840312156121df57600080fd5b8151611d8981611fb6565b6000806000606084860312156121ff57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c6576108c661216b565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122915784516001600160a01b03168352938301939183019160010161226c565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201daaf09c9efa778d077d589acf87183154eb5eb4754b146412f3b8703a503a7464736f6c63430008130033

Deployed Bytecode Sourcemap

26750:11810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31060:120;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;31060:120:0;;;;;;;;27340:35;;;;;;;;;;-1:-1:-1;27340:35:0;;;;-1:-1:-1;;;;;27340:35:0;;;;;;-1:-1:-1;;;;;370:32:1;;;352:51;;340:2;325:18;27340:35:0;206:203:1;27427:28:0;;;;;;;;;;-1:-1:-1;27427:28:0;;;;-1:-1:-1;;;27427:28:0;;;;;;12873:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27105:30::-;;;;;;;;;;-1:-1:-1;27105:30:0;;;;;;;;15166:190;;;;;;;;;;-1:-1:-1;15166:190:0;;;;;:::i;:::-;;:::i;27493:22::-;;;;;;;;;;;;;;;;;;;1569:25:1;;;1557:2;1542:18;27493:22:0;1423:177:1;27583:23:0;;;;;;;;;;;;;;;;31188:450;;;;;;;;;;-1:-1:-1;31188:450:0;;;;;:::i;:::-;;:::i;13975:99::-;;;;;;;;;;-1:-1:-1;14054:12:0;;13975:99;;15934:249;;;;;;;;;;-1:-1:-1;15934:249:0;;;;;:::i;:::-;;:::i;27522:22::-;;;;;;;;;;;;;;;;27613:23;;;;;;;;;;;;;;;;13826:84;;;;;;;;;;-1:-1:-1;13826:84:0;;13900:2;2393:36:1;;2381:2;2366:18;13826:84:0;2251:184:1;27645:33:0;;;;;;;;;;;;;;;;16592:238;;;;;;;;;;-1:-1:-1;16592:238:0;;;;;:::i;:::-;;:::i;27142:26::-;;;;;;;;;;;;;;;;27685:33;;;;;;;;;;;;;;;;27382:36;;;;;;;;;;-1:-1:-1;27382:36:0;;;;-1:-1:-1;;;;;27382:36:0;;;26961:38;;;;;;;;;;-1:-1:-1;26961:38:0;;;;-1:-1:-1;;;26961:38:0;;;;;;31794:200;;;;;;;;;;-1:-1:-1;31794:200:0;;;;;:::i;:::-;;:::i;:::-;;27047:31;;;;;;;;;;;;;;;;32512:149;;;;;;;;;;-1:-1:-1;32512:149:0;;;;;:::i;:::-;;:::i;33221:264::-;;;;;;;;;;-1:-1:-1;33221:264:0;;;;;:::i;:::-;;:::i;27175:22::-;;;;;;;;;;;;;;;;14137:118;;;;;;;;;;-1:-1:-1;14137:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14229:18:0;14202:7;14229:18;;;;;;;;;;;;14137:118;25034:103;;;;;;;;;;;;;:::i;27006:34::-;;;;;;;;;;;;;;;;30871:114;;;;;;;;;;;;;:::i;26877:24::-;;;;;;;;;;-1:-1:-1;26877:24:0;;;;-1:-1:-1;;;;;26877:24:0;;;27464:22;;;;;;;;;;;;;;;;24383:87;;;;;;;;;;-1:-1:-1;24456:6:0;;-1:-1:-1;;;;;24456:6:0;24383:87;;26829:41;;;;;;;;;;;;;;;13083:95;;;;;;;;;;;;;:::i;30193:562::-;;;:::i;17518:504::-;;;;;;;;;;-1:-1:-1;17518:504:0;;;;;:::i;:::-;;:::i;28065:40::-;;;;;;;;;;-1:-1:-1;28065:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14460:182;;;;;;;;;;-1:-1:-1;14460:182:0;;;;;:::i;:::-;;:::i;27857:50::-;;;;;;;;;;-1:-1:-1;27857:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33652:183;;;;;;;;;;-1:-1:-1;33652:183:0;;;;;:::i;:::-;;:::i;14705:142::-;;;;;;;;;;-1:-1:-1;14705:142:0;;;;;:::i;:::-;;:::i;32119:207::-;;;;;;;;;;-1:-1:-1;32119:207:0;;;;;:::i;:::-;;:::i;27553:23::-;;;;;;;;;;;;;;;;25292:238;;;;;;;;;;-1:-1:-1;25292:238:0;;;;;:::i;:::-;;:::i;32812:257::-;;;;;;;;;;-1:-1:-1;32812:257:0;;;;;:::i;:::-;;:::i;31060:120::-;24456:6;;31114:4;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31131:11:0::1;:19:::0;;-1:-1:-1;;31131:19:0::1;::::0;;;31060:120;:::o;12873:91::-;12918:13;12951:5;12944:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12873:91;:::o;15166:190::-;15239:4;10042:10;15295:31;10042:10;15311:7;15320:5;15295:8;:31::i;:::-;15344:4;15337:11;;;15166:190;;;;;:::o;31188:450::-;28550:10;31284:4;28540:21;;;:9;:21;;;;;;;;28532:30;;;;;;31352:6:::1;31336:13;14054:12:::0;;;13975:99;31336:13:::1;:22;;;;:::i;:::-;31323:9;:35;;31301:138;;;::::0;-1:-1:-1;;;31301:138:0;;5290:2:1;31301:138:0::1;::::0;::::1;5272:21:1::0;5329:2;5309:18;;;5302:30;5368:34;5348:18;;;5341:62;-1:-1:-1;;;5419:18:1;;;5412:51;5480:19;;31301:138:0::1;5088:417:1::0;31301:138:0::1;31485:16;;31472:9;:29;;31450:129;;;::::0;-1:-1:-1;;;31450:129:0;;5712:2:1;31450:129:0::1;::::0;::::1;5694:21:1::0;5751:2;5731:18;;;5724:30;5790:34;5770:18;;;5763:62;-1:-1:-1;;;5841:18:1;;;5834:48;5899:19;;31450:129:0::1;5510:414:1::0;31450:129:0::1;31587:9;::::0;31581:27:::1;::::0;-1:-1:-1;;;;;31587:9:0::1;31598::::0;31581:5:::1;:27::i;:::-;-1:-1:-1::0;31626:4:0::1;31188:450:::0;;;:::o;15934:249::-;16021:4;10042:10;16079:37;16095:4;10042:10;16110:5;16079:15;:37::i;:::-;16127:26;16137:4;16143:2;16147:5;16127:9;:26::i;:::-;-1:-1:-1;16171:4:0;;15934:249;-1:-1:-1;;;;15934:249:0:o;16592:238::-;16680:4;10042:10;16736:64;10042:10;16752:7;16789:10;16761:25;10042:10;16752:7;16761:9;:25::i;:::-;:38;;;;:::i;:::-;16736:8;:64::i;31794:200::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;31894:1:::1;31884:6;:11;;31876:58;;;::::0;-1:-1:-1;;;31876:58:0;;6261:2:1;31876: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;;31876:58:0::1;6059:398:1::0;31876:58:0::1;31982:4;31965:13;14054:12:::0;;;13975:99;31965:13:::1;31956:22;::::0;:6;:22:::1;:::i;:::-;31955:31;;;;:::i;:::-;31945:7;:41:::0;-1:-1:-1;31794:200:0:o;32512:149::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32620:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;32620:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32512:149::o;33221:264::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;33326:8:::1;:16:::0;;;33353:8:::1;:16:::0;;;33391:19:::1;33364:5:::0;33337;33391:19:::1;:::i;:::-;33380:8;:30:::0;;;33441:2:::1;-1:-1:-1::0;33429:14:0::1;33421:56;;;::::0;-1:-1:-1;;;33421:56:0;;6837:2:1;33421:56:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915:31;6895:18;;;6888:59;6964:18;;33421:56:0::1;6635:353:1::0;33421:56:0::1;33221:264:::0;;:::o;25034:103::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;25099:30:::1;25126:1;25099:18;:30::i;:::-;25034:103::o:0;30871:114::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;30926:8:::1;:15:::0;;-1:-1:-1;;;;30926:15:0::1;-1:-1:-1::0;;;30926:15:0::1;::::0;;30952:18:::1;:25:::0;;-1:-1:-1;;;;30952:25:0::1;-1:-1:-1::0;;;30952:25:0::1;::::0;;30871:114::o;13083:95::-;13130:13;13163:7;13156:14;;;;;:::i;30193:562::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;30279:11:::1;-1:-1:-1::0;;;;;30279:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30265:47:0::1;;30321:4;30328:11;-1:-1:-1::0;;;;;30328:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30265:82;::::0;-1:-1:-1;;;;;;30265:82:0::1;::::0;;;;;;-1:-1:-1;;;;;7479:15:1;;;30265:82:0::1;::::0;::::1;7461:34:1::0;7531:15;;7511:18;;;7504:43;7396:18;;30265:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30253:9;:94:::0;;-1:-1:-1;;;;;;30253:94:0::1;-1:-1:-1::0;;;;;30253:94:0;;;::::1;::::0;;::::1;::::0;;30358:44:::1;::::0;-1:-1:-1;30358:18:0::1;:44::i;:::-;30434:9;::::0;30413:38:::1;::::0;-1:-1:-1;;;;;30434:9:0::1;::::0;30413:12:::1;:38::i;:::-;30462:64;30479:4;30494:11;-1:-1:-1::0;;30462:8:0::1;:64::i;:::-;30538:11;-1:-1:-1::0;;;;;30538:27:0::1;;30573:9;30606:4;30626:24;30644:4;-1:-1:-1::0;;;;;14229:18:0;14202:7;14229:18;;;;;;;;;;;;14137:118;30626:24:::1;30665:1;30682::::0;30699:7:::1;24456:6:::0;;-1:-1:-1;;;;;24456:6:0;;24383:87;30699:7:::1;30538:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;30538:209:0;;;-1:-1:-1;;;;;7917:15:1;;;30538:209:0::1;::::0;::::1;7899:34:1::0;7949:18;;;7942:34;;;;7992:18;;;7985:34;;;;8035:18;;;8028:34;8099:15;;;8078:19;;;8071:44;30721:15:0::1;8131:19:1::0;;;8124:35;7833:19;;30538:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30193:562::o:0;17518:504::-;17613:4;10042:10;17613:4;17696:25;10042:10;17713:7;17696:9;:25::i;:::-;17669:52;;17755:17;17736:16;:36;17732:150;;;17796:74;;-1:-1:-1;;;17796:74:0;;-1:-1:-1;;;;;8701:32:1;;17796:74:0;;;8683:51:1;8750:18;;;8743:34;;;8793:18;;;8786:34;;;8656:18;;17796:74:0;8481:345:1;17732:150:0;17917:62;17926:5;17933:7;17961:17;17942:16;:36;17917:8;:62::i;14460:182::-;14529:4;10042:10;14585:27;10042:10;14602:2;14606:5;14585:9;:27::i;33652:183::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33740:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;33740:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33785:42;;154:41:1;;;33785:42:0::1;::::0;127:18:1;33785:42:0::1;;;;;;;33652:183:::0;;:::o;14705:142::-;-1:-1:-1;;;;;14812:18:0;;;14785:7;14812:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14705:142::o;32119:207::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;32218:1:::1;32208:6;:11;;32200:62;;;::::0;-1:-1:-1;;;32200:62:0;;9033:2:1;32200:62:0::1;::::0;::::1;9015:21:1::0;9072:2;9052:18;;;9045:30;9111:34;9091:18;;;9084:62;-1:-1:-1;;;9162:18:1;;;9155:36;9208:19;;32200:62:0::1;8831:402:1::0;32200:62:0::1;32314:4;32297:13;14054:12:::0;;;13975:99;32297:13:::1;32288:22;::::0;:6;:22:::1;:::i;:::-;32287:31;;;;:::i;:::-;32273:11;:45:::0;-1:-1:-1;32119:207:0:o;25292:238::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25395:22:0;::::1;25373:110;;;::::0;-1:-1:-1;;;25373:110:0;;9440:2:1;25373:110:0::1;::::0;::::1;9422:21:1::0;9479:2;9459:18;;;9452:30;9518:34;9498:18;;;9491:62;-1:-1:-1;;;9569:18:1;;;9562:36;9615:19;;25373:110:0::1;9238:402:1::0;25373:110:0::1;25494:28;25513:8;25494:18;:28::i;:::-;25292:238:::0;:::o;32812:257::-;24456:6;;-1:-1:-1;;;;;24456:6:0;10042:10;24603:23;24595:68;;;;-1:-1:-1;;;24595:68:0;;;;;;;:::i;:::-;32916:7:::1;:15:::0;;;32942:7:::1;:15:::0;;;32978:17:::1;32952:5:::0;32926;32978:17:::1;:::i;:::-;32968:7;:27:::0;;;33025:2:::1;-1:-1:-1::0;33014:13:0::1;33006:55;;;::::0;-1:-1:-1;;;33006:55:0;;6837:2:1;33006:55:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915:31;6895:18;;;6888:59;6964:18;;33006:55:0::1;6635:353:1::0;21715:138:0;21808:37;21817:5;21824:7;21833:5;21840:4;21808:8;:37::i;21067:211::-;-1:-1:-1;;;;;21138:21:0;;21134:91;;21183:30;;-1:-1:-1;;;21183:30:0;;21210:1;21183:30;;;352:51:1;325:18;;21183:30:0;206:203:1;21134:91:0;21235:35;21243:7;21260:1;21264:5;21235:7;:35::i;23452:487::-;23552:24;23579:25;23589:5;23596:7;23579:9;:25::i;:::-;23552:52;;-1:-1:-1;;23619:16:0;:37;23615:317;;23696:5;23677:16;:24;23673:132;;;23729:60;;-1:-1:-1;;;23729:60:0;;-1:-1:-1;;;;;8701:32:1;;23729:60:0;;;8683:51:1;8750:18;;;8743:34;;;8793:18;;;8786:34;;;8656:18;;23729:60:0;8481:345:1;23673:132:0;23848:57;23857:5;23864:7;23892:5;23873:16;:24;23899:5;23848:8;:57::i;:::-;23541:398;23452:487;;;:::o;18407:308::-;-1:-1:-1;;;;;18491:18:0;;18487:88;;18533:30;;-1:-1:-1;;;18533:30:0;;18560:1;18533:30;;;352:51:1;325:18;;18533:30:0;206:203:1;18487:88:0;-1:-1:-1;;;;;18589:16:0;;18585:88;;18629:32;;-1:-1:-1;;;18629:32:0;;18658:1;18629:32;;;352:51:1;325:18;;18629:32:0;206:203:1;18585:88:0;18683:24;18691:4;18697:2;18701:5;18683:7;:24::i;25690:191::-;25783:6;;;-1:-1:-1;;;;;25800:17:0;;;-1:-1:-1;;;;;;25800:17:0;;;;;;;25833:40;;25783:6;;;25800:17;25783:6;;25833:40;;25764:16;;25833:40;25753:128;25690:191;:::o;33843:138::-;-1:-1:-1;;;;;33910:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;33910:22:0;;;;;;;;;;33950:23;;33910:22;;:14;33950:23;;;33843:138;;:::o;22720:443::-;-1:-1:-1;;;;;22833:19:0;;22829:91;;22876:32;;-1:-1:-1;;;22876:32:0;;22905:1;22876:32;;;352:51:1;325:18;;22876:32:0;206:203:1;22829:91:0;-1:-1:-1;;;;;22934:21:0;;22930:92;;22979:31;;-1:-1:-1;;;22979:31:0;;23007:1;22979:31;;;352:51:1;325:18;;22979:31:0;206:203:1;22930:92:0;-1:-1:-1;;;;;23032:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23078:78;;;;23129:7;-1:-1:-1;;;;;23113:31:0;23122:5;-1:-1:-1;;;;;23113:31:0;;23138:5;23113:31;;;;1569:25:1;;1557:2;1542:18;;1423:177;23113:31:0;;;;;;;;22720:443;;;;:::o;33989:3175::-;34115:6;34125:1;34115:11;34111:91;;34143:26;34157:4;34163:2;34167:1;34143:13;:26::i;34111:91::-;-1:-1:-1;;;;;34219:15:0;;;;;;:9;:15;;;;;;;;34218:16;:47;;;;-1:-1:-1;;;;;;34252:13:0;;;;;;:9;:13;;;;;;;;34251:14;34218:47;34214:96;;;34275:8;;-1:-1:-1;;;34275:8:0;;;;34267:43;;;;-1:-1:-1;;;34267:43:0;;9847:2:1;34267:43:0;;;9829:21:1;9886:2;9866:18;;;9859:30;-1:-1:-1;;;9905:18:1;;;9898:52;9967:18;;34267:43:0;9645:346:1;34267:43:0;34327:11;;;;:23;;;;-1:-1:-1;34342:8:0;;-1:-1:-1;;;34342:8:0;;;;34327:23;34323:1265;;;24456:6;;-1:-1:-1;;;;;34389:15:0;;;24456:6;;34389:15;;;;:49;;-1:-1:-1;24456:6:0;;-1:-1:-1;;;;;34425:13:0;;;24456:6;;34425:13;;34389:49;:86;;;;-1:-1:-1;;;;;;34459:16:0;;;;34389:86;:128;;;;-1:-1:-1;;;;;;34496:21:0;;34510:6;34496:21;;34389:128;:164;;;;-1:-1:-1;34539:14:0;;-1:-1:-1;;;34539:14:0;;;;34538:15;34389:164;34367:1210;;;-1:-1:-1;;;;;34622:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;34641:22:0;;;;;;:18;:22;;;;;;;;34640:23;34622:41;34618:944;;;34732:7;;34722:6;:17;;34688:143;;;;-1:-1:-1;;;34688:143:0;;10198:2:1;34688:143:0;;;10180:21:1;10237:2;10217:18;;;10210:30;10276:34;10256:18;;;10249:62;-1:-1:-1;;;10327:18:1;;;10320:38;10375:19;;34688:143:0;9996:404:1;34688:143:0;34914:11;;-1:-1:-1;;;;;14229:18:0;;14202:7;14229:18;;;;;;;;;;;34888:22;;:6;:22;:::i;:::-;:37;;34854:142;;;;-1:-1:-1;;;34854:142:0;;10607:2:1;34854:142:0;;;10589:21:1;10646:2;10626:18;;;10619:30;-1:-1:-1;;;10665:18:1;;;10658:49;10724:18;;34854:142:0;10405:343:1;34854:142:0;34618:944;;;-1:-1:-1;;;;;35094:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;35111:24:0;;;;;;:18;:24;;;;;;;;35110:25;35094:41;35068:494;;;35222:7;;35212:6;:17;;35178:144;;;;-1:-1:-1;;;35178:144:0;;10955:2:1;35178:144:0;;;10937:21:1;10994:2;10974:18;;;10967:30;11033:34;11013:18;;;11006:62;-1:-1:-1;;;11084:18:1;;;11077:39;11133:19;;35178:144:0;10753:405:1;35068:494:0;-1:-1:-1;;;;;35353:22:0;;;;;;:18;:22;;;;;;;;35348:214;;35460:11;;-1:-1:-1;;;;;14229:18:0;;14202:7;14229:18;;;;;;;;;;;35434:22;;:6;:22;:::i;:::-;:37;;35400:142;;;;-1:-1:-1;;;35400:142:0;;10607:2:1;35400:142:0;;;10589:21:1;10646:2;10626:18;;;10619:30;-1:-1:-1;;;10665:18:1;;;10658:49;10724:18;;35400:142:0;10405:343:1;35400:142:0;35649:4;35600:28;14229:18;;;;;;;;;;;35707:19;;35683:43;;;;;;;35757:42;;-1:-1:-1;35781:18:0;;-1:-1:-1;;;35781:18:0;;;;35757:42;:74;;;;-1:-1:-1;35817:14:0;;-1:-1:-1;;;35817:14:0;;;;35816:15;35757:74;:103;;;;-1:-1:-1;;;;;;35848:12:0;;;;;;:8;:12;;;;;;;;35757:103;:136;;;;-1:-1:-1;;;;;;35878:15:0;;;;;;:9;:15;;;;;;;;35877:16;35757:136;:167;;;;-1:-1:-1;;;;;;35911:13:0;;;;;;:9;:13;;;;;;;;35910:14;35757:167;35739:318;;;35951:14;:21;;-1:-1:-1;;;;35951:21:0;-1:-1:-1;;;35951:21:0;;;35989:17;:15;:17::i;:::-;36023:14;:22;;-1:-1:-1;;;;36023:22:0;;;35739:318;36085:14;;-1:-1:-1;;;;;36201:15:0;;36069:12;36201:15;;;:9;:15;;;;;;36085:14;-1:-1:-1;;;36085:14:0;;;;;36084:15;;36201;;:32;;-1:-1:-1;;;;;;36220:13:0;;;;;;:9;:13;;;;;;;;36201:32;36197:80;;;-1:-1:-1;36260:5:0;36197:80;36289:12;36394:7;36390:723;;;-1:-1:-1;;;;;36446:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;36473:1;36462:8;;:12;36446:28;36442:524;;;36502:29;36527:3;36502:20;36513:8;;36502:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;36495:36;;36592:8;;36580;;36573:4;:15;;;;:::i;:::-;36572:28;;;;:::i;:::-;36550:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;36661:8:0;;36649;;36642:15;;:4;:15;:::i;:::-;36641:28;;;;:::i;:::-;36619:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;36442:524:0;;-1:-1:-1;36442:524:0;;-1:-1:-1;;;;;36731:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;36759:1;36749:7;;:11;36731:29;36727:239;;;36788:28;36812:3;36788:19;36799:7;;36788:6;:10;;:19;;;;:::i;:28::-;36781:35;;36876:7;;36865;;36858:4;:14;;;;:::i;:::-;36857:26;;;;:::i;:::-;36835:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;36943:7:0;;36932;;36925:14;;:4;:14;:::i;:::-;36924:26;;;;:::i;:::-;36902:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;36727:239:0;36986:8;;36982:89;;37015:40;37029:4;37043;37050;37015:13;:40::i;:::-;37087:14;37097:4;37087:14;;:::i;:::-;;;36390:723;37125:31;37139:4;37145:2;37149:6;37125:13;:31::i;:::-;34100:3064;;;;33989:3175;;;:::o;19031:1135::-;-1:-1:-1;;;;;19121:18:0;;19117:552;;19275:5;19259:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19117:552:0;;-1:-1:-1;19117:552:0;;-1:-1:-1;;;;;19335:15:0;;19313:19;19335:15;;;;;;;;;;;19369:19;;;19365:117;;;19416:50;;-1:-1:-1;;;19416:50:0;;-1:-1:-1;;;;;8701:32:1;;19416:50:0;;;8683:51:1;8750:18;;;8743:34;;;8793:18;;;8786:34;;;8656:18;;19416:50:0;8481:345:1;19365:117:0;-1:-1:-1;;;;;19605:15:0;;:9;:15;;;;;;;;;;19623:19;;;;19605:37;;19117:552;-1:-1:-1;;;;;19685:16:0;;19681:435;;19851:12;:21;;;;;;;19681:435;;;-1:-1:-1;;;;;20067:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19681:435;20148:2;-1:-1:-1;;;;;20133:25:0;20142:4;-1:-1:-1;;;;;20133:25:0;;20152:5;20133:25;;;;1569::1;;1557:2;1542:18;;1423:177;20133:25:0;;;;;;;;19031:1135;;;:::o;37775:782::-;37865:4;37821:23;14229:18;;;;;;;;;;;37821:50;;37882:25;37931:18;;37910;;:39;;;;:::i;:::-;37882:67;;37960:12;38007:19;;37989:15;:37;37985:107;;;38061:19;;38043:37;;37985:107;38132:21;38166:51;38201:15;38166:34;:51::i;:::-;38230:18;38251:44;:21;38277:17;38251:25;:44::i;:::-;38230:65;;38308:21;38332:57;38371:17;38332:34;38347:18;;38332:10;:14;;:34;;;;:::i;:57::-;38424:21;;38416:61;;38308:81;;-1:-1:-1;;;;;;38424:21:0;;38308:81;;38416:61;;;;38308:81;38424:21;38416:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38496:20:0;;38488:61;;38402:75;;-1:-1:-1;;;;;;38496:20:0;;38527:21;38488:61;;;;;38496:20;38488:61;38496:20;38488:61;38527:21;38496:20;38488:61;;;;;;;;;;;;;;;;;;;3429:98;3487:7;3514:5;3518:1;3514;:5;:::i;:::-;3507:12;3429:98;-1:-1:-1;;;3429:98:0:o;3828:::-;3886:7;3913:5;3917:1;3913;:5;:::i;37172:595::-;37340:16;;;37354:1;37340:16;;;;;;;;37316:21;;37340:16;;;;;;;;;;-1:-1:-1;37340:16:0;37316:40;;37385:4;37367;37372:1;37367:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;37367:23:0;;;-1:-1:-1;;;;;37367:23:0;;;;;37411:11;-1:-1:-1;;;;;37411:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37401:4;37406:1;37401:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;37401:28:0;;;-1:-1:-1;;;;;37401:28:0;;;;;37442:58;37459:4;37474:11;37488;37442:8;:58::i;:::-;37539:220;;-1:-1:-1;;;37539:220:0;;-1:-1:-1;;;;;37539:11:0;:62;;;;:220;;37616:11;;37642:1;;37686:4;;37713;;37733:15;;37539:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37245:522;37172:595;:::o;3072:98::-;3130:7;3157:5;3161:1;3157;:5;:::i;414:548:1:-;526:4;555:2;584;573:9;566:21;616:6;610:13;659:6;654:2;643:9;639:18;632:34;684:1;694:140;708:6;705:1;702:13;694:140;;;803:14;;;799:23;;793:30;769:17;;;788:2;765:26;758:66;723:10;;694:140;;;698:3;883:1;878:2;869:6;858:9;854:22;850:31;843:42;953:2;946;942:7;937:2;929:6;925:15;921:29;910:9;906:45;902:54;894:62;;;;414:548;;;;:::o;967:131::-;-1:-1:-1;;;;;1042:31:1;;1032:42;;1022:70;;1088:1;1085;1078:12;1103:315;1171:6;1179;1232:2;1220:9;1211:7;1207:23;1203:32;1200:52;;;1248:1;1245;1238:12;1200:52;1287:9;1274:23;1306:31;1331:5;1306:31;:::i;:::-;1356:5;1408:2;1393:18;;;;1380:32;;-1:-1:-1;;;1103:315:1:o;1605:180::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;-1:-1:-1;1756:23:1;;1605:180;-1:-1:-1;1605:180:1:o;1790:456::-;1867:6;1875;1883;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;1991:9;1978:23;2010:31;2035:5;2010:31;:::i;:::-;2060:5;-1:-1:-1;2117:2:1;2102:18;;2089:32;2130:33;2089:32;2130:33;:::i;:::-;1790:456;;2182:7;;-1:-1:-1;;;2236:2:1;2221:18;;;;2208:32;;1790: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:356::-;4190:2;4172:21;;;4209:18;;;4202:30;4268:34;4263:2;4248:18;;4241:62;4335:2;4320:18;;3988:356::o;4349:380::-;4428:1;4424:12;;;;4471;;;4492:61;;4546:4;4538:6;4534:17;4524:27;;4492:61;4599:2;4591:6;4588:14;4568:18;4565:38;4562:161;;4645:10;4640:3;4636:20;4633:1;4626:31;4680:4;4677:1;4670:15;4708:4;4705:1;4698:15;4562:161;;4349:380;;;:::o;4734:127::-;4795:10;4790:3;4786:20;4783:1;4776:31;4826:4;4823:1;4816:15;4850:4;4847:1;4840:15;4866:217;4906:1;4932;4922:132;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4922:132;-1:-1:-1;5068:9:1;;4866:217::o;5929:125::-;5994:9;;;6015:10;;;6012:36;;;6028:18;;:::i;6462:168::-;6535:9;;;6566;;6583:15;;;6577:22;;6563:37;6553:71;;6604:18;;:::i;6993:251::-;7063:6;7116:2;7104:9;7095:7;7091:23;7087:32;7084:52;;;7132:1;7129;7122:12;7084:52;7164:9;7158:16;7183:31;7208:5;7183:31;:::i;8170:306::-;8258:6;8266;8274;8327:2;8315:9;8306:7;8302:23;8298:32;8295:52;;;8343:1;8340;8333:12;8295:52;8372:9;8366:16;8356:26;;8422:2;8411:9;8407:18;8401:25;8391:35;;8466:2;8455:9;8451:18;8445:25;8435:35;;8170:306;;;;;:::o;11163:128::-;11230:9;;;11251:11;;;11248:37;;;11265:18;;:::i;11638:127::-;11699:10;11694:3;11690:20;11687:1;11680:31;11730:4;11727:1;11720:15;11754:4;11751:1;11744:15;11770:980;12032:4;12080:3;12069:9;12065:19;12111:6;12100:9;12093:25;12137:2;12175:6;12170:2;12159:9;12155:18;12148:34;12218:3;12213:2;12202:9;12198:18;12191:31;12242:6;12277;12271:13;12308:6;12300;12293:22;12346:3;12335:9;12331:19;12324:26;;12385:2;12377:6;12373:15;12359:29;;12406:1;12416:195;12430:6;12427:1;12424:13;12416:195;;;12495:13;;-1:-1:-1;;;;;12491:39:1;12479:52;;12586:15;;;;12551:12;;;;12527:1;12445:9;12416:195;;;-1:-1:-1;;;;;;;12667:32:1;;;;12662:2;12647:18;;12640:60;-1:-1:-1;;;12731:3:1;12716:19;12709:35;12628:3;11770:980;-1:-1:-1;;;11770:980:1:o

Swarm Source

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