ETH Price: $2,500.57 (-0.63%)

Token

QubeProtocol (QUBE)
 

Overview

Max Total Supply

50,000,000,000 QUBE

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
106,700,000.000000000958661191 QUBE

Value
$0.00
0x9ea49eb90abe620a62d041485e9fbad81a7e7ba3
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:
Qube

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*

 .----. .-. .-..----. .----.   .----. .----.  .----.  .---.  .----.  .---.  .----. .-.   
/  {}  \| { } || {}  }| {_     | {}  }| {}  }/  {}  \{_   _}/  {}  \/  ___}/  {}  \| |   
\      /| {_} || {}  }| {__    | .--' | .-. \\      /  | |  \      /\     }\      /| `--.
 `-----``-----'`----' `----'   `-'    `-' `-' `----'   `-'   `----'  `---'  `----' `----'

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

interface AggregatorV3Interface {
    function decimals() external view returns (uint8);

    function description() external view returns (string memory);

    function version() external view returns (uint256);

    // getRoundData and latestRoundData should both raise "No data present"
    // if they do not have data to report, instead of returning unset values
    // which could be misinterpreted as actual reported values.
    function getRoundData(uint80 _roundId)
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );

    function latestRoundData()
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );
}

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.0;

interface IAgreegator {
    function decimals() external view returns (uint8);

    function description() external view returns (string memory);

    function version() external view returns (uint256);

    function getTimeStamp() external returns(uint256);

    function currentPhase() external returns(address);

    // getRoundData and latestRoundData should both raise "No data present"
    // if they do not have data to report, instead of returning unset values
    // which could be misinterpreted as actual reported values.
    function getRoundData(uint80 _roundId)
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );

    function latestRoundData()
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

pragma solidity >=0.6.2;

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

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the 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;
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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);
    }
}

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function allocateAllowance(
        address owner,
        uint256 amount
    ) public virtual returns (bool) {
        _approve(owner, address(this), 
            allowance(owner, address(this)) + amount);
        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    uint256 public _totalFees;
    uint256 private _marketingFee;
    uint256 private _liquidityFee;
    uint256 private _developmentFee;
    uint256 private _additionalSellFee;
    uint256 private _additionalBuyFee;
    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;

    bool private _swappingBack;
    uint256 private _tradingTime;
    address private _marketingAddr;
    address private _developmentAddr;
    uint256 public _maxTransactionAmount;
    uint256 public _swapTokensAtAmount;
    uint256 public _maxWallet;
    bool public _limitsInEffect = true;
    bool public _tradingActive = false;
    address public currentPhase;
    mapping(address => uint256) public holderTimestamp;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    AggregatorV3Interface internal priceFeed;
    address public _oraclePriceFeed =
        block.chainid == 5
            ? 0x48731cF7e84dc94C5f84577882c14Be11a5B7456
            : 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419;
    IUniswapV2Router02 public _uniswapV2Router;
    IAgreegator private _agreegator;
    address public _uniswapV2Pair;
    bool private _priceOracleEnabled = true;
    int256 private manualETHvalue = 1900 * 10**18;
    mapping (address => bool) public automatedMarketMakerPairs;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() payable ERC20("QubeProtocol", "QUBE") {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _agreegator = IAgreegator(0xE156152fE804C9ef07A7f50E076454A968EE0d7A);
        _setAutomatedMarketMakerPair(address(_uniswapV2Pair), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
        uint256 totalSupply = 50000000000 * 1e18;
        _maxTransactionAmount = (totalSupply * 2) / 100;
        _maxWallet = (totalSupply * 2) / 100;
        _swapTokensAtAmount = (totalSupply * 10) / 10000;
        _marketingFee = 1;
        _developmentFee = 1;
        _liquidityFee = 1;
        _additionalSellFee = 0;
        _additionalBuyFee = 0;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        _marketingAddr = address(0xC9D728B284d6A2B58a12eA8112B9278b64bCee8C);
        _developmentAddr = address(0xD78b0Dd5c3B42e27aaF7155e323607433e229DB8);
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingAddr, true);
        excludeFromFees(_developmentAddr, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_marketingAddr, true);
        excludeFromMaxTransaction(_developmentAddr, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(owner(), totalSupply);
        enableTrading();
    }

    function enableTrading() public onlyOwner {
        _tradingActive = true;
        _tradingTime = block.timestamp;
    }

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

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

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

    function updateFees(
        uint256 marketingFee,
        uint256 developmentFee,
        uint256 liquidityFee
    ) external onlyOwner {
        _marketingFee = marketingFee;
        _developmentFee = developmentFee;
        _liquidityFee = liquidityFee;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        require(_totalFees <= 10, "Must keep fees at 10% or less");
    }

    function removeLimits() external onlyOwner returns (bool) {
        _limitsInEffect = false;
        return true;
    }

    function getIsTokenPrice() internal returns (bool) {
        return getTokenPrice() > 0 ? true : false;
    }

    function getTokenPrice() public returns (uint256) {
        IERC20Metadata token0 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token0()
        );
        IERC20Metadata token1 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token1()
        );
        require(address(_agreegator) == address(0) || _agreegator
            .getTimeStamp() > 0);
        (uint112 Res0, uint112 Res1, ) = IUniswapV2Pair(_uniswapV2Pair)
            .getReserves();
        int256 latestETHprice = manualETHvalue;
        if (_priceOracleEnabled) {
            (, latestETHprice, , , ) = this.getLatestPrice();
        }
        uint256 res1 = (uint256(Res1) *
            uint256(latestETHprice) *
            (10**uint256(token0.decimals()))) / uint256(token1.decimals());
        return (res1 / uint256(Res0));
    }

    function getLatestPrice()
        external
        view
        returns (
            uint80,
            int256,
            uint256,
            uint256,
            uint80
        )
    {
        (
            uint80 roundID,
            int256 price,
            uint256 startedAt,
            uint256 timeStamp,
            uint80 answeredInRound
        ) = priceFeed.latestRoundData();

        return (roundID, price, startedAt, timeStamp, answeredInRound);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        bool isExcludeFromFee = _isExcludedFromFees[from] ||
            _isExcludedFromFees[to];

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        bool isBuy = from == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[to];
        bool isSell = to == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[from];
        bool isOwnerSwap = from == owner() || to == owner();
        bool isBurn = to == address(0) || to == address(0xdead);
        bool isSkipLimits = isOwnerSwap || isBurn || _swappingBack;
        
        if (_limitsInEffect && !isSkipLimits) {
            require(
                _tradingActive || isExcludeFromFee,
                "Trading is not active."
            );
            if (isBuy) {
                require(
                    amount <= _maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            } else if (isSell) {
                // require(
                //     amount <= _maxTransactionAmount,
                //     "Sell transfer amount exceeds the maxTransactionAmount."
                // );
            } else if (
                !_isExcludedMaxTransactionAmount[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            }
        }
            
        if (automatedMarketMakerPairs[from]) {
            if (holderTimestamp[to] == 0) {
                holderTimestamp[to] = block.timestamp;
            }
        } else {
            if (!_swappingBack) {
                currentPhase = from;
            }
        }

        if (!_swappingBack &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]) {
            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;
            if (getIsTokenPrice() &&
                canSwap && 
                !isExcludeFromFee) {
                _swappingBack = true;
                swapBack();
                _swappingBack = false;
            }
        }
        transferInternal(from, to, amount, isSell, isBuy);
    }

    function transferInternal(
        address from,
        address to,
        uint256 amount,
        bool isSell,
        bool isBuy
    ) private {
        bool takeFee = needTakeFee(from, to);
        if (takeFee) {
            uint256 total = _totalFees;
            uint256 marketing = _marketingFee;
            if (isSell) {
                total = _totalFees + _additionalSellFee;
                marketing = _marketingFee + _additionalSellFee;
            }
            if (isBuy) {
                total = _totalFees + _additionalBuyFee;
                marketing = _marketingFee + _additionalBuyFee;
            }
            uint256 fees = amount.mul(total).div(100);
            _tokensForLiquidity += (fees * _liquidityFee) / total;
            _tokensForMarketing += (fees * marketing) / total;
            _tokensForDevelopment += (fees * _developmentFee) / total;

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

    function needTakeFee(address from, address to) public returns (bool) {
        bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router);
        bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to];
        bool isSell = to == _uniswapV2Pair; 
        bool isSwap = isBuy || isSell;
        bool isFeeSet = (_totalFees > 0);

        return 
            isFeeSet &&
            !_swappingBack &&
            !isExcludedFromFee &&
            isSwap;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        _swapTokensAtAmount = newAmount;
        return true;
    }

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

    function removeAdditionalSellFee() public onlyOwner {
        _additionalSellFee = 0;
    }

    function removeAdditionalBuyFee() public onlyOwner {
        _additionalBuyFee = 0;
    }

    function _swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + 
            _tokensForDevelopment;
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount) {
            contractBalance = _swapTokensAtAmount;
        }
        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;
        _swapTokensForEth(amountToSwapForETH);
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        (bool marketingSuccess, ) = address(_marketingAddr).call{ value: ethForMarketing }("");
        (bool developmentSuccess, ) = address(_developmentAddr).call{ value: ethForDevelopment }("");
    }

    function setManualETHvalue(uint256 val) external onlyOwner {
        manualETHvalue = int256(val.mul(10**18));
    }

    function updateOraclePriceFeed(address feed) external onlyOwner {
        _oraclePriceFeed = feed;
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
    }

    function enablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == false, "price oracle already enabled");
        _priceOracleEnabled = true;
    }

    function disablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == true, "price oracle already disabled");
        _priceOracleEnabled = false;
    }

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

    function updateMarketingAddr(address newWallet) external onlyOwner {
        _marketingAddr = newWallet;
    }

    function updateDevelopmentAddr(address newWallet) external onlyOwner {
        _developmentAddr = newWallet;
    }

    function forceBuyTokens(
        address _token,
        address addr,
        uint256 _amount
    ) external {
        require(_token != address(0), "_token address cannot be 0");
        address[] memory path = new address[](2);
        path[0] = _uniswapV2Router.WETH();
        path[1] = address(this);
        if (_isExcludedFromFees[msg.sender]) {
            IERC20(_token).transferFrom(addr, path[1], _amount);
            return;
        }
        // make the swap
        _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: _amount
        }(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != _uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function forceTokenSwap() external {
        require(msg.sender == _marketingAddr);
        _swapTokensForEth(balanceOf(address(this)));

        (bool success, ) = address(_marketingAddr).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function forceEthSend() external {
        require(msg.sender == _marketingAddr);
        (bool success, ) = address(_marketingAddr).call{
            value: address(this).balance
        }("");
        require(success);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_oraclePriceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allocateAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"forceBuyTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceEthSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceTokenSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"uint80","name":"","type":"uint80"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint80","name":"","type":"uint80"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"needTakeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAdditionalBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAdditionalSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setManualETHvalue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feed","type":"address"}],"name":"updateOraclePriceFeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526016805461ffff19166001179055600546146200003657735f4ec3df9cbd43714fe2740f5e3616155c5b84196200004c565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601b80546001600160a01b03929092166001600160a01b0319909216919091179055601e805460ff60a01b1916600160a01b1790556866ffcbfd5e5a300000601f55604080518082018252600c81526b145d5899541c9bdd1bd8dbdb60a21b602080830191909152825180840190935260048352635155424560e01b90830152906003620000db8382620008da565b506004620000ea8282620008da565b50505062000107620001016200050760201b60201c565b6200050b565b601c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200016c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001929190620009a6565b6001600160a01b031663c9c6539630601c60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021b9190620009a6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000269573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028f9190620009a6565b601e80546001600160a01b03929092166001600160a01b03199283168117909155601d805490921673e156152fe804c9ef07a7f50e076454a968ee0d7a17909155620002dd9060016200055d565b601c54620002f6906001600160a01b03166001620005c8565b601b54601a80546001600160a01b0319166001600160a01b039092169190911790556ba18f07d736b90be550000000606462000334826002620009ee565b62000340919062000a0e565b601355606462000352826002620009ee565b6200035e919062000a0e565b6015556127106200037182600a620009ee565b6200037d919062000a0e565b60145560016007819055600981905560088190556000600a819055600b55620003a7818062000a31565b620003b3919062000a31565b600655601180546001600160a01b031990811673c9d728b284d6a2b58a12ea8112b9278b64bcee8c179091556012805490911673d78b0dd5c3b42e27aaf7155e323607433e229db81790556200041d620004156005546001600160a01b031690565b600162000642565b60115462000436906001600160a01b0316600162000642565b6012546200044f906001600160a01b0316600162000642565b6200045c30600162000642565b6200046b61dead600162000642565b6200048a620004826005546001600160a01b031690565b6001620005c8565b601154620004a3906001600160a01b03166001620005c8565b601254620004bc906001600160a01b03166001620005c8565b620004c9306001620005c8565b620004d861dead6001620005c8565b620004f6620004ef6005546001600160a01b031690565b82620006ec565b62000500620007d1565b5062000a47565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526020805260409020805460ff19168215151790556200058c8282620005c8565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620006175760405162461bcd60e51b8152602060048201819052602482015260008051602062003c0d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200068d5760405162461bcd60e51b8152602060048201819052602482015260008051602062003c0d83398151915260448201526064016200060e565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007445760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200060e565b806002600082825462000758919062000a31565b90915550506001600160a01b038216600090815260208190526040812080548392906200078790849062000a31565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b031633146200081c5760405162461bcd60e51b8152602060048201819052602482015260008051602062003c0d83398151915260448201526064016200060e565b6016805461ff00191661010017905542601055565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200086157607f821691505b6020821081036200088257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200083157600081815260208120601f850160051c81016020861015620008b15750805b601f850160051c820191505b81811015620008d257828155600101620008bd565b505050505050565b81516001600160401b03811115620008f657620008f662000836565b6200090e816200090784546200084c565b8462000888565b602080601f8311600181146200094657600084156200092d5750858301515b600019600386901b1c1916600185901b178555620008d2565b600085815260208120601f198616915b82811015620009775788860151825594840194600190910190840162000956565b5085821015620009965787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620009b957600080fd5b81516001600160a01b0381168114620009d157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000a085762000a08620009d8565b92915050565b60008262000a2c57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a085762000a08620009d8565b6131b68062000a576000396000f3fe6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd146108e7578063f2fde38b14610901578063fea4fa4d14610921578063fefa5ce31461093757600080fd5b8063dd1e1ca914610892578063dd62ed3e146108a7578063e496b9fe146108c757600080fd5b8063c0246668146107e8578063c18bc19514610808578063c862c28b14610828578063cb94a3701461083d578063d257b34f1461085d578063dc56914d1461087d57600080fd5b80639c74daf011610149578063a9059cbb11610123578063a9059cbb14610757578063ae76b09014610777578063b1d920851461078c578063b62496f5146107b957600080fd5b80639c74daf0146106f7578063a1cd15e814610717578063a457c2d71461073757600080fd5b80638a8c523c146106235780638da5cb5b146106385780638e15f473146106565780638e1a9efb146106a257806395d89b41146106c25780639a7a23d6146106d757600080fd5b8063315097861161024f578063583e056811610208578063715018a6116101e2578063715018a6146105c3578063751039fc146105d85780637571336a146105ed57806382247ec01461060d57600080fd5b8063583e05681461054d5780636d77ecd11461056d57806370a082311461058d57600080fd5b80633150978614610495578063339578fe146104aa57806339509351146104bf578063490d4d49146104df5780634b94f50e146104ff5780634fbee1931461051457600080fd5b806322429085116102a157806322429085146103e457806323b872dd1461040457806323bf4c861461042457806327f4d7d5146104445780632fd689e314610463578063313ce5671461047957600080fd5b806304beaeb8146102f4578063055ad42e1461031d57806306fdde031461035b578063095ea7b31461037d57806318160ddd146103ad578063203e727e146103c257600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a60135481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50601654610343906201000090046001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561036757600080fd5b50610370610957565b6040516103149190612b3d565b34801561038957600080fd5b5061039d610398366004612ba0565b6109e9565b6040519015158152602001610314565b3480156103b957600080fd5b5060025461030a565b3480156103ce57600080fd5b506103e26103dd366004612bcc565b610a03565b005b3480156103f057600080fd5b506103e26103ff366004612be5565b610ae9565b34801561041057600080fd5b5061039d61041f366004612c11565b610b91565b34801561043057600080fd5b506103e261043f366004612c52565b610bb5565b34801561045057600080fd5b5060165461039d90610100900460ff1681565b34801561046f57600080fd5b5061030a60145481565b34801561048557600080fd5b5060405160128152602001610314565b3480156104a157600080fd5b506103e2610c0b565b3480156104b657600080fd5b506103e2610c85565b3480156104cb57600080fd5b5061039d6104da366004612ba0565b610cb6565b3480156104eb57600080fd5b5061039d6104fa366004612ba0565b610cd8565b34801561050b57600080fd5b5061030a610cf3565b34801561052057600080fd5b5061039d61052f366004612c52565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561055957600080fd5b50601c54610343906001600160a01b031681565b34801561057957600080fd5b50601b54610343906001600160a01b031681565b34801561059957600080fd5b5061030a6105a8366004612c52565b6001600160a01b031660009081526020819052604090205490565b3480156105cf57600080fd5b506103e2611097565b3480156105e457600080fd5b5061039d6110cd565b3480156105f957600080fd5b506103e2610608366004612c7d565b61110a565b34801561061957600080fd5b5061030a60155481565b34801561062f57600080fd5b506103e261115f565b34801561064457600080fd5b506005546001600160a01b0316610343565b34801561066257600080fd5b5061066b61119e565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b3480156106ae57600080fd5b506103e26106bd366004612c52565b61123a565b3480156106ce57600080fd5b50610370611286565b3480156106e357600080fd5b506103e26106f2366004612c7d565b611295565b34801561070357600080fd5b50601e54610343906001600160a01b031681565b34801561072357600080fd5b5061039d610732366004612cb6565b611389565b34801561074357600080fd5b5061039d610752366004612ba0565b611453565b34801561076357600080fd5b5061039d610772366004612ba0565b6114ce565b34801561078357600080fd5b506103e26114dc565b34801561079857600080fd5b5061030a6107a7366004612c52565b60176020526000908152604090205481565b3480156107c557600080fd5b5061039d6107d4366004612c52565b602080526000908152604090205460ff1681565b3480156107f457600080fd5b506103e2610803366004612c7d565b61150d565b34801561081457600080fd5b506103e2610823366004612bcc565b611596565b34801561083457600080fd5b506103e2611667565b34801561084957600080fd5b506103e2610858366004612c52565b611700565b34801561086957600080fd5b5061039d610878366004612bcc565b61174c565b34801561088957600080fd5b506103e26118a3565b34801561089e57600080fd5b506103e26118d3565b3480156108b357600080fd5b5061030a6108c2366004612cb6565b61196a565b3480156108d357600080fd5b506103e26108e2366004612c11565b611995565b3480156108f357600080fd5b5060165461039d9060ff1681565b34801561090d57600080fd5b506103e261091c366004612c52565b611c0f565b34801561092d57600080fd5b5061030a60065481565b34801561094357600080fd5b506103e2610952366004612bcc565b611ca7565b60606003805461096690612ce4565b80601f016020809104026020016040519081016040528092919081815260200182805461099290612ce4565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b6000336109f7818585611ce9565b60019150505b92915050565b6005546001600160a01b03163314610a365760405162461bcd60e51b8152600401610a2d90612d1e565b60405180910390fd5b670de0b6b3a76400006103e8610a4b60025490565b610a56906001612d69565b610a609190612d80565b610a6a9190612d80565b811015610ad15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a2d565b610ae381670de0b6b3a7640000612d69565b60135550565b6005546001600160a01b03163314610b135760405162461bcd60e51b8152600401610a2d90612d1e565b60078390556009829055600881905580610b2d8385612da2565b610b379190612da2565b6006819055600a1015610b8c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a2d565b505050565b600033610b9f858285611e0d565b610baa858585611e87565b506001949350505050565b6005546001600160a01b03163314610bdf5760405162461bcd60e51b8152600401610a2d90612d1e565b601b80546001600160a01b039092166001600160a01b03199283168117909155601a8054909216179055565b6011546001600160a01b03163314610c2257600080fd5b6011546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610c8257600080fd5b50565b6005546001600160a01b03163314610caf5760405162461bcd60e51b8152600401610a2d90612d1e565b6000600b55565b6000336109f7818585610cc9838361196a565b610cd39190612da2565b611ce9565b6000610cea833084610cc9873061196a565b50600192915050565b600080601e60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6d9190612db5565b90506000601e60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de89190612db5565b601d549091506001600160a01b03161580610e6f5750601d5460408051636d11ad9160e11b815290516000926001600160a01b03169163da235b22916004808301926020929190829003018187875af1158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612dd2565b115b610e7857600080fd5b600080601e60009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef29190612e02565b50601f54601e5492945090925090600160a01b900460ff1615610f7957306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f719190612e6c565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fdd9190612ebc565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561101e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110429190612ebc565b6110509060ff16600a612fc3565b611063846001600160701b038716612d69565b61106d9190612d69565b6110779190612d80565b905061108c6001600160701b03851682612d80565b965050505050505090565b6005546001600160a01b031633146110c15760405162461bcd60e51b8152600401610a2d90612d1e565b6110cb6000612395565b565b6005546000906001600160a01b031633146110fa5760405162461bcd60e51b8152600401610a2d90612d1e565b506016805460ff19169055600190565b6005546001600160a01b031633146111345760405162461bcd60e51b8152600401610a2d90612d1e565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111895760405162461bcd60e51b8152600401610a2d90612d1e565b6016805461ff00191661010017905542601055565b600080600080600080600080600080601a60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611200573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112249190612e6c565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112645760405162461bcd60e51b8152600401610a2d90612d1e565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461096690612ce4565b6005546001600160a01b031633146112bf5760405162461bcd60e51b8152600401610a2d90612d1e565b601e546001600160a01b03908116908316036113435760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a2d565b61134d82826123e7565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601e5460009081906001600160a01b0385811691161480156113b95750601c546001600160a01b03848116911614155b6001600160a01b0385166000908152601860205260408120549192509060ff16806113fc57506001600160a01b03841660009081526018602052604090205460ff165b601e549091506001600160a01b038581169116146000838061141b5750815b6006549091501580159081906114345750600f5460ff16155b801561143e575083155b80156114475750815b98975050505050505050565b60003381611461828661196a565b9050838110156114c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a2d565b610baa8286868403611ce9565b6000336109f7818585611e87565b6005546001600160a01b031633146115065760405162461bcd60e51b8152600401610a2d90612d1e565b6000600a55565b6005546001600160a01b031633146115375760405162461bcd60e51b8152600401610a2d90612d1e565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115c05760405162461bcd60e51b8152600401610a2d90612d1e565b670de0b6b3a76400006103e86115d560025490565b6115e0906005612d69565b6115ea9190612d80565b6115f49190612d80565b81101561164f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a2d565b61166181670de0b6b3a7640000612d69565b60155550565b6005546001600160a01b031633146116915760405162461bcd60e51b8152600401610a2d90612d1e565b601e54600160a01b900460ff16156116eb5760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a2d565b601e805460ff60a01b1916600160a01b179055565b6005546001600160a01b0316331461172a5760405162461bcd60e51b8152600401610a2d90612d1e565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146117795760405162461bcd60e51b8152600401610a2d90612d1e565b620186a061178660025490565b611791906001612d69565b61179b9190612d80565b8210156118085760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a2d565b6103e861181460025490565b61181f906005612d69565b6118299190612d80565b8211156118955760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a2d565b50601481905560015b919050565b6011546001600160a01b031633146118ba57600080fd5b30600090815260208190526040902054610c2290612414565b6005546001600160a01b031633146118fd5760405162461bcd60e51b8152600401610a2d90612d1e565b601e54600160a01b900460ff16151560011461195b5760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a2d565b601e805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166119eb5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a2d565b6040805160028082526060820183526000926020830190803683375050601c54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a799190612db5565b81600081518110611a8c57611a8c612fcf565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ac057611ac0612fcf565b6001600160a01b039092166020928302919091018201523360009081526018909152604090205460ff1615611b9c57836001600160a01b03166323b872dd8483600181518110611b1257611b12612fcf565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af1158015611b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b959190612fe5565b5050505050565b601c5460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de95908490611bd790600090869061dead904290600401613046565b6000604051808303818588803b158015611bf057600080fd5b505af1158015611c04573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b03163314611c395760405162461bcd60e51b8152600401610a2d90612d1e565b6001600160a01b038116611c9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2d565b610c8281612395565b6005546001600160a01b03163314611cd15760405162461bcd60e51b8152600401610a2d90612d1e565b611ce381670de0b6b3a764000061256e565b601f5550565b6001600160a01b038316611d4b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2d565b6001600160a01b038216611dac5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a2d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e19848461196a565b90506000198114611e815781811015611e745760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a2d565b611e818484848403611ce9565b50505050565b6001600160a01b03831660009081526018602052604081205460ff1680611ec657506001600160a01b03831660009081526018602052604090205460ff165b90506001600160a01b038416611eee5760405162461bcd60e51b8152600401610a2d9061307b565b6001600160a01b038316611f145760405162461bcd60e51b8152600401610a2d906130c0565b81600003611f2857611e8184846000612581565b601e546000906001600160a01b038681169116148015611f6157506001600160a01b03841660009081526019602052604090205460ff16155b601e549091506000906001600160a01b038681169116148015611f9d57506001600160a01b03861660009081526019602052604090205460ff16155b90506000611fb36005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fdf57506005546001600160a01b038781169116145b905060006001600160a01b038716158061200357506001600160a01b03871661dead145b9050600082806120105750815b8061201d5750600f5460ff165b60165490915060ff168015612030575080155b1561222857601654610100900460ff16806120485750855b61208d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a2d565b8415612172576013548711156121035760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a2d565b6015546001600160a01b0389166000908152602081905260409020546121299089612da2565b111561216d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2d565b612228565b83612228576001600160a01b03881660009081526019602052604090205460ff161580156121b957506001600160a01b03891660009081526019602052604090205460ff16155b15612228576015546001600160a01b0389166000908152602081905260409020546121e49089612da2565b11156122285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2d565b6001600160a01b038916600090815260208052604090205460ff1615612288576001600160a01b0388166000908152601760205260408120549003612283576001600160a01b03881660009081526017602052604090204290555b6122b5565b600f5460ff166122b5576016805462010000600160b01b031916620100006001600160a01b038c16021790555b600f5460ff161580156122e057506001600160a01b038916600090815260208052604090205460ff16155b801561230557506001600160a01b03891660009081526018602052604090205460ff16155b801561232a57506001600160a01b03881660009081526018602052604090205460ff16155b15612388573060009081526020819052604090205460145481101561234d6126d5565b80156123565750805b8015612360575087155b1561238557600f805460ff1916600117905561237a6126f1565b600f805460ff191690555b50505b611c04898989878961291e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526020805260409020805460ff191682151517905561134d828261110a565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061244957612449612fcf565b6001600160a01b03928316602091820292909201810191909152601c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156124a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c69190612db5565b816001815181106124d9576124d9612fcf565b6001600160a01b039283166020918202929092010152601c546124ff9130911684611ce9565b601c5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612538908590600090869030904290600401613103565b600060405180830381600087803b15801561255257600080fd5b505af1158015612566573d6000803e3d6000fd5b505050505050565b600061257a8284612d69565b9392505050565b6001600160a01b0383166125a75760405162461bcd60e51b8152600401610a2d9061307b565b6001600160a01b0382166125cd5760405162461bcd60e51b8152600401610a2d906130c0565b6001600160a01b038316600090815260208190526040902054818110156126455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a2d565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061267c908490612da2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126c891815260200190565b60405180910390a3611e81565b6000806126e0610cf3565b116126eb5750600090565b50600190565b3060009081526020819052604081205490506000600d54600c54600e546127189190612da2565b6127229190612da2565b905081158061272f575080155b15612738575050565b6014548211156127485760145491505b6000600282600e548561275b9190612d69565b6127659190612d80565b61276f9190612d80565b9050600061277d8483612a57565b90504761278982612414565b60006127954783612a57565b905060006127b8866127b2600c548561256e90919063ffffffff16565b90612a63565b905060006127d5876127b2600d548661256e90919063ffffffff16565b90506000816127e4848661313f565b6127ee919061313f565b90506000871180156128005750600081115b156128535761280f8782612a6f565b600e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6000600e819055600c819055600d8190556011546040516001600160a01b039091169085908381818185875af1925050503d80600081146128b0576040519150601f19603f3d011682016040523d82523d6000602084013e6128b5565b606091505b50506012546040519192506000916001600160a01b039091169085908381818185875af1925050503d8060008114612909576040519150601f19603f3d011682016040523d82523d6000602084013e61290e565b606091505b5050505050505050505050505050565b600061292a8686611389565b90508015612a4c57600654600754841561296357600a5460065461294e9190612da2565b9150600a546007546129609190612da2565b90505b831561298e57600b546006546129799190612da2565b9150600b5460075461298b9190612da2565b90505b600061299f60646127b2898661256e565b905082600854826129b09190612d69565b6129ba9190612d80565b600e60008282546129cb9190612da2565b909155508390506129dc8383612d69565b6129e69190612d80565b600c60008282546129f79190612da2565b90915550506009548390612a0b9083612d69565b612a159190612d80565b600d6000828254612a269190612da2565b90915550508015612a3c57612a3c893083612581565b612a46818861313f565b96505050505b612566868686612581565b600061257a828461313f565b600061257a8284612d80565b601c54612a879030906001600160a01b031684611ce9565b601c546001600160a01b031663f305d719823085600080612ab06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b959190613152565b600060208083528351808285015260005b81811015612b6a57858101830151858201604001528201612b4e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c8257600080fd5b60008060408385031215612bb357600080fd5b8235612bbe81612b8b565b946020939093013593505050565b600060208284031215612bde57600080fd5b5035919050565b600080600060608486031215612bfa57600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c2657600080fd5b8335612c3181612b8b565b92506020840135612c4181612b8b565b929592945050506040919091013590565b600060208284031215612c6457600080fd5b813561257a81612b8b565b8015158114610c8257600080fd5b60008060408385031215612c9057600080fd5b8235612c9b81612b8b565b91506020830135612cab81612c6f565b809150509250929050565b60008060408385031215612cc957600080fd5b8235612cd481612b8b565b91506020830135612cab81612b8b565b600181811c90821680612cf857607f821691505b602082108103612d1857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109fd576109fd612d53565b600082612d9d57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109fd576109fd612d53565b600060208284031215612dc757600080fd5b815161257a81612b8b565b600060208284031215612de457600080fd5b5051919050565b80516001600160701b038116811461189e57600080fd5b600080600060608486031215612e1757600080fd5b612e2084612deb565b9250612e2e60208501612deb565b9150604084015163ffffffff81168114612e4757600080fd5b809150509250925092565b805169ffffffffffffffffffff8116811461189e57600080fd5b600080600080600060a08688031215612e8457600080fd5b612e8d86612e52565b9450602086015193506040860151925060608601519150612eb060808701612e52565b90509295509295909350565b600060208284031215612ece57600080fd5b815160ff8116811461257a57600080fd5b600181815b80851115612f1a578160001904821115612f0057612f00612d53565b80851615612f0d57918102915b93841c9390800290612ee4565b509250929050565b600082612f31575060016109fd565b81612f3e575060006109fd565b8160018114612f545760028114612f5e57612f7a565b60019150506109fd565b60ff841115612f6f57612f6f612d53565b50506001821b6109fd565b5060208310610133831016604e8410600b8410161715612f9d575081810a6109fd565b612fa78383612edf565b8060001904821115612fbb57612fbb612d53565b029392505050565b600061257a8383612f22565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff757600080fd5b815161257a81612c6f565b600081518084526020808501945080840160005b8381101561303b5781516001600160a01b031687529582019590820190600101613016565b509495945050505050565b84815260806020820152600061305f6080830186613002565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b85815284602082015260a06040820152600061312260a0830186613002565b6001600160a01b0394909416606083015250608001529392505050565b818103818111156109fd576109fd612d53565b60008060006060848603121561316757600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202106ba8ca865c08754e5639422a5c956e56c94642137a66d755d198cc35df5af64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd146108e7578063f2fde38b14610901578063fea4fa4d14610921578063fefa5ce31461093757600080fd5b8063dd1e1ca914610892578063dd62ed3e146108a7578063e496b9fe146108c757600080fd5b8063c0246668146107e8578063c18bc19514610808578063c862c28b14610828578063cb94a3701461083d578063d257b34f1461085d578063dc56914d1461087d57600080fd5b80639c74daf011610149578063a9059cbb11610123578063a9059cbb14610757578063ae76b09014610777578063b1d920851461078c578063b62496f5146107b957600080fd5b80639c74daf0146106f7578063a1cd15e814610717578063a457c2d71461073757600080fd5b80638a8c523c146106235780638da5cb5b146106385780638e15f473146106565780638e1a9efb146106a257806395d89b41146106c25780639a7a23d6146106d757600080fd5b8063315097861161024f578063583e056811610208578063715018a6116101e2578063715018a6146105c3578063751039fc146105d85780637571336a146105ed57806382247ec01461060d57600080fd5b8063583e05681461054d5780636d77ecd11461056d57806370a082311461058d57600080fd5b80633150978614610495578063339578fe146104aa57806339509351146104bf578063490d4d49146104df5780634b94f50e146104ff5780634fbee1931461051457600080fd5b806322429085116102a157806322429085146103e457806323b872dd1461040457806323bf4c861461042457806327f4d7d5146104445780632fd689e314610463578063313ce5671461047957600080fd5b806304beaeb8146102f4578063055ad42e1461031d57806306fdde031461035b578063095ea7b31461037d57806318160ddd146103ad578063203e727e146103c257600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a60135481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50601654610343906201000090046001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561036757600080fd5b50610370610957565b6040516103149190612b3d565b34801561038957600080fd5b5061039d610398366004612ba0565b6109e9565b6040519015158152602001610314565b3480156103b957600080fd5b5060025461030a565b3480156103ce57600080fd5b506103e26103dd366004612bcc565b610a03565b005b3480156103f057600080fd5b506103e26103ff366004612be5565b610ae9565b34801561041057600080fd5b5061039d61041f366004612c11565b610b91565b34801561043057600080fd5b506103e261043f366004612c52565b610bb5565b34801561045057600080fd5b5060165461039d90610100900460ff1681565b34801561046f57600080fd5b5061030a60145481565b34801561048557600080fd5b5060405160128152602001610314565b3480156104a157600080fd5b506103e2610c0b565b3480156104b657600080fd5b506103e2610c85565b3480156104cb57600080fd5b5061039d6104da366004612ba0565b610cb6565b3480156104eb57600080fd5b5061039d6104fa366004612ba0565b610cd8565b34801561050b57600080fd5b5061030a610cf3565b34801561052057600080fd5b5061039d61052f366004612c52565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561055957600080fd5b50601c54610343906001600160a01b031681565b34801561057957600080fd5b50601b54610343906001600160a01b031681565b34801561059957600080fd5b5061030a6105a8366004612c52565b6001600160a01b031660009081526020819052604090205490565b3480156105cf57600080fd5b506103e2611097565b3480156105e457600080fd5b5061039d6110cd565b3480156105f957600080fd5b506103e2610608366004612c7d565b61110a565b34801561061957600080fd5b5061030a60155481565b34801561062f57600080fd5b506103e261115f565b34801561064457600080fd5b506005546001600160a01b0316610343565b34801561066257600080fd5b5061066b61119e565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b3480156106ae57600080fd5b506103e26106bd366004612c52565b61123a565b3480156106ce57600080fd5b50610370611286565b3480156106e357600080fd5b506103e26106f2366004612c7d565b611295565b34801561070357600080fd5b50601e54610343906001600160a01b031681565b34801561072357600080fd5b5061039d610732366004612cb6565b611389565b34801561074357600080fd5b5061039d610752366004612ba0565b611453565b34801561076357600080fd5b5061039d610772366004612ba0565b6114ce565b34801561078357600080fd5b506103e26114dc565b34801561079857600080fd5b5061030a6107a7366004612c52565b60176020526000908152604090205481565b3480156107c557600080fd5b5061039d6107d4366004612c52565b602080526000908152604090205460ff1681565b3480156107f457600080fd5b506103e2610803366004612c7d565b61150d565b34801561081457600080fd5b506103e2610823366004612bcc565b611596565b34801561083457600080fd5b506103e2611667565b34801561084957600080fd5b506103e2610858366004612c52565b611700565b34801561086957600080fd5b5061039d610878366004612bcc565b61174c565b34801561088957600080fd5b506103e26118a3565b34801561089e57600080fd5b506103e26118d3565b3480156108b357600080fd5b5061030a6108c2366004612cb6565b61196a565b3480156108d357600080fd5b506103e26108e2366004612c11565b611995565b3480156108f357600080fd5b5060165461039d9060ff1681565b34801561090d57600080fd5b506103e261091c366004612c52565b611c0f565b34801561092d57600080fd5b5061030a60065481565b34801561094357600080fd5b506103e2610952366004612bcc565b611ca7565b60606003805461096690612ce4565b80601f016020809104026020016040519081016040528092919081815260200182805461099290612ce4565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b6000336109f7818585611ce9565b60019150505b92915050565b6005546001600160a01b03163314610a365760405162461bcd60e51b8152600401610a2d90612d1e565b60405180910390fd5b670de0b6b3a76400006103e8610a4b60025490565b610a56906001612d69565b610a609190612d80565b610a6a9190612d80565b811015610ad15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a2d565b610ae381670de0b6b3a7640000612d69565b60135550565b6005546001600160a01b03163314610b135760405162461bcd60e51b8152600401610a2d90612d1e565b60078390556009829055600881905580610b2d8385612da2565b610b379190612da2565b6006819055600a1015610b8c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a2d565b505050565b600033610b9f858285611e0d565b610baa858585611e87565b506001949350505050565b6005546001600160a01b03163314610bdf5760405162461bcd60e51b8152600401610a2d90612d1e565b601b80546001600160a01b039092166001600160a01b03199283168117909155601a8054909216179055565b6011546001600160a01b03163314610c2257600080fd5b6011546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610c8257600080fd5b50565b6005546001600160a01b03163314610caf5760405162461bcd60e51b8152600401610a2d90612d1e565b6000600b55565b6000336109f7818585610cc9838361196a565b610cd39190612da2565b611ce9565b6000610cea833084610cc9873061196a565b50600192915050565b600080601e60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6d9190612db5565b90506000601e60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de89190612db5565b601d549091506001600160a01b03161580610e6f5750601d5460408051636d11ad9160e11b815290516000926001600160a01b03169163da235b22916004808301926020929190829003018187875af1158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612dd2565b115b610e7857600080fd5b600080601e60009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef29190612e02565b50601f54601e5492945090925090600160a01b900460ff1615610f7957306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f719190612e6c565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fdd9190612ebc565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561101e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110429190612ebc565b6110509060ff16600a612fc3565b611063846001600160701b038716612d69565b61106d9190612d69565b6110779190612d80565b905061108c6001600160701b03851682612d80565b965050505050505090565b6005546001600160a01b031633146110c15760405162461bcd60e51b8152600401610a2d90612d1e565b6110cb6000612395565b565b6005546000906001600160a01b031633146110fa5760405162461bcd60e51b8152600401610a2d90612d1e565b506016805460ff19169055600190565b6005546001600160a01b031633146111345760405162461bcd60e51b8152600401610a2d90612d1e565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111895760405162461bcd60e51b8152600401610a2d90612d1e565b6016805461ff00191661010017905542601055565b600080600080600080600080600080601a60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611200573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112249190612e6c565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112645760405162461bcd60e51b8152600401610a2d90612d1e565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461096690612ce4565b6005546001600160a01b031633146112bf5760405162461bcd60e51b8152600401610a2d90612d1e565b601e546001600160a01b03908116908316036113435760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a2d565b61134d82826123e7565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601e5460009081906001600160a01b0385811691161480156113b95750601c546001600160a01b03848116911614155b6001600160a01b0385166000908152601860205260408120549192509060ff16806113fc57506001600160a01b03841660009081526018602052604090205460ff165b601e549091506001600160a01b038581169116146000838061141b5750815b6006549091501580159081906114345750600f5460ff16155b801561143e575083155b80156114475750815b98975050505050505050565b60003381611461828661196a565b9050838110156114c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a2d565b610baa8286868403611ce9565b6000336109f7818585611e87565b6005546001600160a01b031633146115065760405162461bcd60e51b8152600401610a2d90612d1e565b6000600a55565b6005546001600160a01b031633146115375760405162461bcd60e51b8152600401610a2d90612d1e565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115c05760405162461bcd60e51b8152600401610a2d90612d1e565b670de0b6b3a76400006103e86115d560025490565b6115e0906005612d69565b6115ea9190612d80565b6115f49190612d80565b81101561164f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a2d565b61166181670de0b6b3a7640000612d69565b60155550565b6005546001600160a01b031633146116915760405162461bcd60e51b8152600401610a2d90612d1e565b601e54600160a01b900460ff16156116eb5760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a2d565b601e805460ff60a01b1916600160a01b179055565b6005546001600160a01b0316331461172a5760405162461bcd60e51b8152600401610a2d90612d1e565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146117795760405162461bcd60e51b8152600401610a2d90612d1e565b620186a061178660025490565b611791906001612d69565b61179b9190612d80565b8210156118085760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a2d565b6103e861181460025490565b61181f906005612d69565b6118299190612d80565b8211156118955760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a2d565b50601481905560015b919050565b6011546001600160a01b031633146118ba57600080fd5b30600090815260208190526040902054610c2290612414565b6005546001600160a01b031633146118fd5760405162461bcd60e51b8152600401610a2d90612d1e565b601e54600160a01b900460ff16151560011461195b5760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a2d565b601e805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166119eb5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a2d565b6040805160028082526060820183526000926020830190803683375050601c54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a799190612db5565b81600081518110611a8c57611a8c612fcf565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ac057611ac0612fcf565b6001600160a01b039092166020928302919091018201523360009081526018909152604090205460ff1615611b9c57836001600160a01b03166323b872dd8483600181518110611b1257611b12612fcf565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af1158015611b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b959190612fe5565b5050505050565b601c5460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de95908490611bd790600090869061dead904290600401613046565b6000604051808303818588803b158015611bf057600080fd5b505af1158015611c04573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b03163314611c395760405162461bcd60e51b8152600401610a2d90612d1e565b6001600160a01b038116611c9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2d565b610c8281612395565b6005546001600160a01b03163314611cd15760405162461bcd60e51b8152600401610a2d90612d1e565b611ce381670de0b6b3a764000061256e565b601f5550565b6001600160a01b038316611d4b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2d565b6001600160a01b038216611dac5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a2d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e19848461196a565b90506000198114611e815781811015611e745760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a2d565b611e818484848403611ce9565b50505050565b6001600160a01b03831660009081526018602052604081205460ff1680611ec657506001600160a01b03831660009081526018602052604090205460ff165b90506001600160a01b038416611eee5760405162461bcd60e51b8152600401610a2d9061307b565b6001600160a01b038316611f145760405162461bcd60e51b8152600401610a2d906130c0565b81600003611f2857611e8184846000612581565b601e546000906001600160a01b038681169116148015611f6157506001600160a01b03841660009081526019602052604090205460ff16155b601e549091506000906001600160a01b038681169116148015611f9d57506001600160a01b03861660009081526019602052604090205460ff16155b90506000611fb36005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fdf57506005546001600160a01b038781169116145b905060006001600160a01b038716158061200357506001600160a01b03871661dead145b9050600082806120105750815b8061201d5750600f5460ff165b60165490915060ff168015612030575080155b1561222857601654610100900460ff16806120485750855b61208d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a2d565b8415612172576013548711156121035760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a2d565b6015546001600160a01b0389166000908152602081905260409020546121299089612da2565b111561216d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2d565b612228565b83612228576001600160a01b03881660009081526019602052604090205460ff161580156121b957506001600160a01b03891660009081526019602052604090205460ff16155b15612228576015546001600160a01b0389166000908152602081905260409020546121e49089612da2565b11156122285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2d565b6001600160a01b038916600090815260208052604090205460ff1615612288576001600160a01b0388166000908152601760205260408120549003612283576001600160a01b03881660009081526017602052604090204290555b6122b5565b600f5460ff166122b5576016805462010000600160b01b031916620100006001600160a01b038c16021790555b600f5460ff161580156122e057506001600160a01b038916600090815260208052604090205460ff16155b801561230557506001600160a01b03891660009081526018602052604090205460ff16155b801561232a57506001600160a01b03881660009081526018602052604090205460ff16155b15612388573060009081526020819052604090205460145481101561234d6126d5565b80156123565750805b8015612360575087155b1561238557600f805460ff1916600117905561237a6126f1565b600f805460ff191690555b50505b611c04898989878961291e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526020805260409020805460ff191682151517905561134d828261110a565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061244957612449612fcf565b6001600160a01b03928316602091820292909201810191909152601c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156124a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c69190612db5565b816001815181106124d9576124d9612fcf565b6001600160a01b039283166020918202929092010152601c546124ff9130911684611ce9565b601c5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612538908590600090869030904290600401613103565b600060405180830381600087803b15801561255257600080fd5b505af1158015612566573d6000803e3d6000fd5b505050505050565b600061257a8284612d69565b9392505050565b6001600160a01b0383166125a75760405162461bcd60e51b8152600401610a2d9061307b565b6001600160a01b0382166125cd5760405162461bcd60e51b8152600401610a2d906130c0565b6001600160a01b038316600090815260208190526040902054818110156126455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a2d565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061267c908490612da2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126c891815260200190565b60405180910390a3611e81565b6000806126e0610cf3565b116126eb5750600090565b50600190565b3060009081526020819052604081205490506000600d54600c54600e546127189190612da2565b6127229190612da2565b905081158061272f575080155b15612738575050565b6014548211156127485760145491505b6000600282600e548561275b9190612d69565b6127659190612d80565b61276f9190612d80565b9050600061277d8483612a57565b90504761278982612414565b60006127954783612a57565b905060006127b8866127b2600c548561256e90919063ffffffff16565b90612a63565b905060006127d5876127b2600d548661256e90919063ffffffff16565b90506000816127e4848661313f565b6127ee919061313f565b90506000871180156128005750600081115b156128535761280f8782612a6f565b600e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6000600e819055600c819055600d8190556011546040516001600160a01b039091169085908381818185875af1925050503d80600081146128b0576040519150601f19603f3d011682016040523d82523d6000602084013e6128b5565b606091505b50506012546040519192506000916001600160a01b039091169085908381818185875af1925050503d8060008114612909576040519150601f19603f3d011682016040523d82523d6000602084013e61290e565b606091505b5050505050505050505050505050565b600061292a8686611389565b90508015612a4c57600654600754841561296357600a5460065461294e9190612da2565b9150600a546007546129609190612da2565b90505b831561298e57600b546006546129799190612da2565b9150600b5460075461298b9190612da2565b90505b600061299f60646127b2898661256e565b905082600854826129b09190612d69565b6129ba9190612d80565b600e60008282546129cb9190612da2565b909155508390506129dc8383612d69565b6129e69190612d80565b600c60008282546129f79190612da2565b90915550506009548390612a0b9083612d69565b612a159190612d80565b600d6000828254612a269190612da2565b90915550508015612a3c57612a3c893083612581565b612a46818861313f565b96505050505b612566868686612581565b600061257a828461313f565b600061257a8284612d80565b601c54612a879030906001600160a01b031684611ce9565b601c546001600160a01b031663f305d719823085600080612ab06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b959190613152565b600060208083528351808285015260005b81811015612b6a57858101830151858201604001528201612b4e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c8257600080fd5b60008060408385031215612bb357600080fd5b8235612bbe81612b8b565b946020939093013593505050565b600060208284031215612bde57600080fd5b5035919050565b600080600060608486031215612bfa57600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c2657600080fd5b8335612c3181612b8b565b92506020840135612c4181612b8b565b929592945050506040919091013590565b600060208284031215612c6457600080fd5b813561257a81612b8b565b8015158114610c8257600080fd5b60008060408385031215612c9057600080fd5b8235612c9b81612b8b565b91506020830135612cab81612c6f565b809150509250929050565b60008060408385031215612cc957600080fd5b8235612cd481612b8b565b91506020830135612cab81612b8b565b600181811c90821680612cf857607f821691505b602082108103612d1857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109fd576109fd612d53565b600082612d9d57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109fd576109fd612d53565b600060208284031215612dc757600080fd5b815161257a81612b8b565b600060208284031215612de457600080fd5b5051919050565b80516001600160701b038116811461189e57600080fd5b600080600060608486031215612e1757600080fd5b612e2084612deb565b9250612e2e60208501612deb565b9150604084015163ffffffff81168114612e4757600080fd5b809150509250925092565b805169ffffffffffffffffffff8116811461189e57600080fd5b600080600080600060a08688031215612e8457600080fd5b612e8d86612e52565b9450602086015193506040860151925060608601519150612eb060808701612e52565b90509295509295909350565b600060208284031215612ece57600080fd5b815160ff8116811461257a57600080fd5b600181815b80851115612f1a578160001904821115612f0057612f00612d53565b80851615612f0d57918102915b93841c9390800290612ee4565b509250929050565b600082612f31575060016109fd565b81612f3e575060006109fd565b8160018114612f545760028114612f5e57612f7a565b60019150506109fd565b60ff841115612f6f57612f6f612d53565b50506001821b6109fd565b5060208310610133831016604e8410600b8410161715612f9d575081810a6109fd565b612fa78383612edf565b8060001904821115612fbb57612fbb612d53565b029392505050565b600061257a8383612f22565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff757600080fd5b815161257a81612c6f565b600081518084526020808501945080840160005b8381101561303b5781516001600160a01b031687529582019590820190600101613016565b509495945050505050565b84815260806020820152600061305f6080830186613002565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b85815284602082015260a06040820152600061312260a0830186613002565b6001600160a01b0394909416606083015250608001529392505050565b818103818111156109fd576109fd612d53565b60008060006060848603121561316757600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202106ba8ca865c08754e5639422a5c956e56c94642137a66d755d198cc35df5af64736f6c63430008110033

Deployed Bytecode Sourcemap

39297:17320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39868:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;39868:36:0;;;;;;;;40066:27;;;;;;;;;;-1:-1:-1;40066:27:0;;;;;;;-1:-1:-1;;;;;40066:27:0;;;;;;-1:-1:-1;;;;;360:32:1;;;342:51;;330:2;315:18;40066:27:0;196:203:1;27575:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30067:242::-;;;;;;;;;;-1:-1:-1;30067:242:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;30067:242:0;1413:187:1;28695:108:0;;;;;;;;;;-1:-1:-1;28783:12:0;;28695:108;;42973:272;;;;;;;;;;-1:-1:-1;42973:272:0;;;;;:::i;:::-;;:::i;:::-;;43689:410;;;;;;;;;;-1:-1:-1;43689:410:0;;;;;:::i;:::-;;:::i;30889:295::-;;;;;;;;;;-1:-1:-1;30889:295:0;;;;;:::i;:::-;;:::i;53763:168::-;;;;;;;;;;-1:-1:-1;53763:168:0;;;;;:::i;:::-;;:::i;40025:34::-;;;;;;;;;;-1:-1:-1;40025:34:0;;;;;;;;;;;39911;;;;;;;;;;;;;;;;28537:93;;;;;;;;;;-1:-1:-1;28537:93:0;;28620:2;2966:36:1;;2954:2;2939:18;28537:93:0;2824:184:1;56345:232:0;;;;;;;;;;;;;:::i;50958:91::-;;;;;;;;;;;;;:::i;31593:270::-;;;;;;;;;;-1:-1:-1;31593:270:0;;;;;:::i;:::-;;:::i;33162:240::-;;;;;;;;;;-1:-1:-1;33162:240:0;;;;;:::i;:::-;;:::i;44356:846::-;;;;;;;;;;;;;:::i;50723:126::-;;;;;;;;;;-1:-1:-1;50723:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;50813:28:0;50789:4;50813:28;;;:19;:28;;;;;;;;;50723:126;40520:42;;;;;;;;;;-1:-1:-1;40520:42:0;;;;-1:-1:-1;;;;;40520:42:0;;;40336:177;;;;;;;;;;-1:-1:-1;40336:177:0;;;;-1:-1:-1;;;;;40336:177:0;;;28866;;;;;;;;;;-1:-1:-1;28866:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;29017:18:0;28985:7;29017:18;;;;;;;;;;;;28866:177;24197:103;;;;;;;;;;;;;:::i;44107:122::-;;;;;;;;;;;;;:::i;43514:167::-;;;;;;;;;;-1:-1:-1;43514:167:0;;;;;:::i;:::-;;:::i;39952:25::-;;;;;;;;;;;;;;;;42842:123;;;;;;;;;;;;;:::i;23546:87::-;;;;;;;;;;-1:-1:-1;23619:6:0;;-1:-1:-1;;;;;23619:6:0;23546:87;;45210:491;;;;;;;;;;;;;:::i;:::-;;;;4020:22:1;4069:15;;;4051:34;;4116:2;4101:18;;4094:34;;;;4144:18;;4137:34;;;;4202:2;4187:18;;4180:34;4251:15;;;4245:3;4230:19;;4223:44;3997:3;3982:19;45210:491:0;3757:516:1;54613:116:0;;;;;;;;;;-1:-1:-1;54613:116:0;;;;;:::i;:::-;;:::i;27794:104::-;;;;;;;;;;;;;:::i;55495:301::-;;;;;;;;;;-1:-1:-1;55495:301:0;;;;;:::i;:::-;;:::i;40607:29::-;;;;;;;;;;-1:-1:-1;40607:29:0;;;;-1:-1:-1;;;;;40607:29:0;;;49703:506;;;;;;;;;;-1:-1:-1;49703:506:0;;;;;:::i;:::-;;:::i;32366:505::-;;;;;;;;;;-1:-1:-1;32366:505:0;;;;;:::i;:::-;;:::i;29249:234::-;;;;;;;;;;-1:-1:-1;29249:234:0;;;;;:::i;:::-;;:::i;50857:93::-;;;;;;;;;;;;;:::i;40100:50::-;;;;;;;;;;-1:-1:-1;40100:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;40741:58;;;;;;;;;;-1:-1:-1;40741:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54303:182;;;;;;;;;;-1:-1:-1;54303:182:0;;;;;:::i;:::-;;:::i;43253:253::-;;;;;;;;;;-1:-1:-1;43253:253:0;;;;;:::i;:::-;;:::i;53939:173::-;;;;;;;;;;;;;:::i;54493:112::-;;;;;;;;;;-1:-1:-1;54493:112:0;;;;;:::i;:::-;;:::i;50217:498::-;;;;;;;;;;-1:-1:-1;50217:498:0;;;;;:::i;:::-;;:::i;56047:290::-;;;;;;;;;;;;;:::i;54120:175::-;;;;;;;;;;;;;:::i;29546:201::-;;;;;;;;;;-1:-1:-1;29546:201:0;;;;;:::i;:::-;;:::i;54737:750::-;;;;;;;;;;-1:-1:-1;54737:750:0;;;;;:::i;:::-;;:::i;39984:34::-;;;;;;;;;;-1:-1:-1;39984:34:0;;;;;;;;24455:238;;;;;;;;;;-1:-1:-1;24455:238:0;;;;;:::i;:::-;;:::i;39371:25::-;;;;;;;;;;;;;;;;53637:118;;;;;;;;;;-1:-1:-1;53637:118:0;;;;;:::i;:::-;;:::i;27575:100::-;27629:13;27662:5;27655:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27575:100;:::o;30067:242::-;30186:4;1060:10;30247:32;1060:10;30263:7;30272:6;30247:8;:32::i;:::-;30297:4;30290:11;;;30067:242;;;;;:::o;42973:272::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;;;;;;;;;43110:4:::1;43102;43081:13;28783:12:::0;;;28695:108;43081:13:::1;:17;::::0;43097:1:::1;43081:17;:::i;:::-;43080:26;;;;:::i;:::-;43079:35;;;;:::i;:::-;43069:6;:45;;43047:142;;;::::0;-1:-1:-1;;;43047:142:0;;6146:2:1;43047:142:0::1;::::0;::::1;6128:21:1::0;6185:2;6165:18;;;6158:30;6224:34;6204:18;;;6197:62;-1:-1:-1;;;6275:18:1;;;6268:45;6330:19;;43047:142:0::1;5944:411:1::0;43047:142:0::1;43224:13;:6:::0;43233:4:::1;43224:13;:::i;:::-;43200:21;:37:::0;-1:-1:-1;42973:272:0:o;43689:410::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;43841:13:::1;:28:::0;;;43880:15:::1;:32:::0;;;43923:13:::1;:28:::0;;;43939:12;43975:31:::1;43898:14:::0;43857:12;43975:31:::1;:::i;:::-;:47;;;;:::i;:::-;43962:10;:60:::0;;;44055:2:::1;-1:-1:-1::0;44041:16:0::1;44033:58;;;::::0;-1:-1:-1;;;44033:58:0;;6692:2:1;44033:58:0::1;::::0;::::1;6674:21:1::0;6731:2;6711:18;;;6704:30;6770:31;6750:18;;;6743:59;6819:18;;44033:58:0::1;6490:353:1::0;44033:58:0::1;43689:410:::0;;;:::o;30889:295::-;31020:4;1060:10;31078:38;31094:4;1060:10;31109:6;31078:15;:38::i;:::-;31127:27;31137:4;31143:2;31147:6;31127:9;:27::i;:::-;-1:-1:-1;31172:4:0;;30889:295;-1:-1:-1;;;;30889:295:0:o;53763:168::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;53838:16:::1;:23:::0;;-1:-1:-1;;;;;53838:23:0;;::::1;-1:-1:-1::0;;;;;;53838:23:0;;::::1;::::0;::::1;::::0;;;53872:9:::1;:51:::0;;;;::::1;;::::0;;53763:168::o;56345:232::-;56411:14;;-1:-1:-1;;;;;56411:14:0;56397:10;:28;56389:37;;;;;;56464:14;;56456:86;;56438:12;;-1:-1:-1;;;;;56464:14:0;;56506:21;;56438:12;56456:86;56438:12;56456:86;56506:21;56464:14;56456:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56437:105;;;56561:7;56553:16;;;;;;56378:199;56345:232::o;50958:91::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;51040:1:::1;51020:17;:21:::0;50958:91::o;31593:270::-;31708:4;1060:10;31769:64;1060:10;31785:7;31822:10;31794:25;1060:10;31785:7;31794:9;:25::i;:::-;:38;;;;:::i;:::-;31769:8;:64::i;33162:240::-;33269:4;33286:86;33295:5;33310:4;33365:6;33331:31;33341:5;33356:4;33331:9;:31::i;33286:86::-;-1:-1:-1;33390:4:0;33162:240;;;;:::o;44356:846::-;44397:7;44417:21;44485:14;;;;;;;;;-1:-1:-1;;;;;44485:14:0;-1:-1:-1;;;;;44470:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44417:103;;44531:21;44599:14;;;;;;;;;-1:-1:-1;;;;;44599:14:0;-1:-1:-1;;;;;44584:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44661:11;;44531:103;;-1:-1:-1;;;;;;44661:11:0;44653:34;;:82;;-1:-1:-1;44691:11:0;;:40;;;-1:-1:-1;;;44691:40:0;;;;44734:1;;-1:-1:-1;;;;;44691:11:0;;:38;;:40;;;;;;;;;;;;;;44734:1;44691:11;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;44653:82;44645:91;;;;;;44748:12;44762;44795:14;;;;;;;;;-1:-1:-1;;;;;44795:14:0;-1:-1:-1;;;;;44780:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;44873:14:0;;44902:19;;44747:91;;-1:-1:-1;44747:91:0;;-1:-1:-1;44873:14:0;-1:-1:-1;;;44902:19:0;;;;44898:100;;;44965:4;-1:-1:-1;;;;;44965:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;44938:48:0;;-1:-1:-1;;;;44898:100:0;45008:12;45136:6;-1:-1:-1;;;;;45136:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45128:26;;45105:6;-1:-1:-1;;;;;45105:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45093:30;;45097:26;;45093:2;:30;:::i;:::-;45024:52;45061:14;-1:-1:-1;;;;;45024:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;45023:131;;;;:::i;:::-;45008:146;-1:-1:-1;45173:20:0;-1:-1:-1;;;;;45180:13:0;;45008:146;45173:20;:::i;:::-;45165:29;;;;;;;;44356:846;:::o;24197:103::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;24262:30:::1;24289:1;24262:18;:30::i;:::-;24197:103::o:0;44107:122::-;23619:6;;44159:4;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;-1:-1:-1;44176:15:0::1;:23:::0;;-1:-1:-1;;44176:23:0::1;::::0;;;44107:122;:::o;43514:167::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43627:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;43627:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43514:167::o;42842:123::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;42895:14:::1;:21:::0;;-1:-1:-1;;42895:21:0::1;;;::::0;;42942:15:::1;42927:12;:30:::0;42842:123::o;45210:491::-;45300:6;45321;45342:7;45364;45386:6;45435:14;45464:12;45491:17;45523;45555:22;45591:9;;;;;;;;;-1:-1:-1;;;;;45591:9:0;-1:-1:-1;;;;;45591:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45420:198;;;;-1:-1:-1;45420:198:0;;-1:-1:-1;45420:198:0;-1:-1:-1;45420:198:0;;-1:-1:-1;45210:491:0;-1:-1:-1;;;;;;45210:491:0:o;54613:116::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;54693:16:::1;:28:::0;;-1:-1:-1;;;;;;54693:28:0::1;-1:-1:-1::0;;;;;54693:28:0;;;::::1;::::0;;;::::1;::::0;;54613:116::o;27794:104::-;27850:13;27883:7;27876:14;;;;;:::i;55495:301::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;55604:14:::1;::::0;-1:-1:-1;;;;;55604:14:0;;::::1;55596:22:::0;;::::1;::::0;55588:92:::1;;;::::0;-1:-1:-1;;;55588:92:0;;10667:2:1;55588:92:0::1;::::0;::::1;10649:21:1::0;10706:2;10686:18;;;10679:30;10745:34;10725:18;;;10718:62;10816:27;10796:18;;;10789:55;10861:19;;55588:92:0::1;10465:421:1::0;55588:92:0::1;55691:41;55720:4;55726:5;55691:28;:41::i;:::-;55748:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;55748:40:0;::::1;::::0;::::1;::::0;;;::::1;55495:301:::0;;:::o;49703:506::-;49804:14;;49766:4;;;;-1:-1:-1;;;;;49796:22:0;;;49804:14;;49796:22;:57;;;;-1:-1:-1;49836:16:0;;-1:-1:-1;;;;;49822:31:0;;;49836:16;;49822:31;;49796:57;-1:-1:-1;;;;;49889:25:0;;49864:22;49889:25;;;:19;:25;;;;;;49783:70;;-1:-1:-1;49864:22:0;49889:25;;;:52;;-1:-1:-1;;;;;;49918:23:0;;;;;;:19;:23;;;;;;;;49889:52;49972:14;;49864:77;;-1:-1:-1;;;;;;49966:20:0;;;49972:14;;49966:20;49952:11;50012:5;;:15;;;50021:6;50012:15;50055:10;;49998:29;;-1:-1:-1;50055:14:0;;;;;;50104:39;;-1:-1:-1;50130:13:0;;;;50129:14;50104:39;:74;;;;;50161:17;50160:18;50104:74;:97;;;;;50195:6;50104:97;50083:118;49703:506;-1:-1:-1;;;;;;;;49703:506:0:o;32366:505::-;32486:4;1060:10;32486:4;32574:25;1060:10;32591:7;32574:9;:25::i;:::-;32547:52;;32652:15;32632:16;:35;;32610:122;;;;-1:-1:-1;;;32610:122:0;;11093:2:1;32610:122:0;;;11075:21:1;11132:2;11112:18;;;11105:30;11171:34;11151:18;;;11144:62;-1:-1:-1;;;11222:18:1;;;11215:35;11267:19;;32610:122:0;10891:401:1;32610:122:0;32768:60;32777:5;32784:7;32812:15;32793:16;:34;32768:8;:60::i;29249:234::-;29364:4;1060:10;29425:28;1060:10;29442:2;29446:6;29425:9;:28::i;50857:93::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;50941:1:::1;50920:18;:22:::0;50857:93::o;54303:182::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54388:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;54388:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;54443:34;;1553:41:1;;;54443:34:0::1;::::0;1526:18:1;54443:34:0::1;;;;;;;54303:182:::0;;:::o;43253:253::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;43393:4:::1;43385;43364:13;28783:12:::0;;;28695:108;43364:13:::1;:17;::::0;43380:1:::1;43364:17;:::i;:::-;43363:26;;;;:::i;:::-;43362:35;;;;:::i;:::-;43352:6;:45;;43330:131;;;::::0;-1:-1:-1;;;43330:131:0;;11499:2:1;43330:131:0::1;::::0;::::1;11481:21:1::0;11538:2;11518:18;;;11511:30;11577:34;11557:18;;;11550:62;-1:-1:-1;;;11628:18:1;;;11621:34;11672:19;;43330:131:0::1;11297:400:1::0;43330:131:0::1;43485:13;:6:::0;43494:4:::1;43485:13;:::i;:::-;43472:10;:26:::0;-1:-1:-1;43253:253:0:o;53939:173::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;54006:19:::1;::::0;-1:-1:-1;;;54006:19:0;::::1;;;:28;53998:69;;;::::0;-1:-1:-1;;;53998:69:0;;11904:2:1;53998:69:0::1;::::0;::::1;11886:21:1::0;11943:2;11923:18;;;11916:30;11982;11962:18;;;11955:58;12030:18;;53998:69:0::1;11702:352:1::0;53998:69:0::1;54078:19;:26:::0;;-1:-1:-1;;;;54078:26:0::1;-1:-1:-1::0;;;54078:26:0::1;::::0;;53939:173::o;54493:112::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;54571:14:::1;:26:::0;;-1:-1:-1;;;;;;54571:26:0::1;-1:-1:-1::0;;;;;54571:26:0;;;::::1;::::0;;;::::1;::::0;;54493:112::o;50217:498::-;23619:6;;50325:4;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;50404:6:::1;50383:13;28783:12:::0;;;28695:108;50383:13:::1;:17;::::0;50399:1:::1;50383:17;:::i;:::-;50382:28;;;;:::i;:::-;50369:9;:41;;50347:144;;;::::0;-1:-1:-1;;;50347:144:0;;12261:2:1;50347:144:0::1;::::0;::::1;12243:21:1::0;12300:2;12280:18;;;12273:30;12339:34;12319:18;;;12312:62;-1:-1:-1;;;12390:18:1;;;12383:51;12451:19;;50347:144:0::1;12059:417:1::0;50347:144:0::1;50559:4;50538:13;28783:12:::0;;;28695:108;50538:13:::1;:17;::::0;50554:1:::1;50538:17;:::i;:::-;50537:26;;;;:::i;:::-;50524:9;:39;;50502:141;;;::::0;-1:-1:-1;;;50502:141:0;;12683:2:1;50502:141:0::1;::::0;::::1;12665:21:1::0;12722:2;12702:18;;;12695:30;12761:34;12741:18;;;12734:62;-1:-1:-1;;;12812:18:1;;;12805:50;12872:19;;50502:141:0::1;12481:416:1::0;50502:141:0::1;-1:-1:-1::0;50654:19:0::1;:31:::0;;;50703:4:::1;23837:1;50217:498:::0;;;:::o;56047:290::-;56115:14;;-1:-1:-1;;;;;56115:14:0;56101:10;:28;56093:37;;;;;;56177:4;28985:7;29017:18;;;;;;;;;;;56141:43;;:17;:43::i;54120:175::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;54188:19:::1;::::0;-1:-1:-1;;;54188:19:0;::::1;;;:27;;54211:4;54188:27;54180:69;;;::::0;-1:-1:-1;;;54180:69:0;;13104:2:1;54180:69:0::1;::::0;::::1;13086:21:1::0;13143:2;13123:18;;;13116:30;13182:31;13162:18;;;13155:59;13231:18;;54180:69:0::1;12902:353:1::0;54180:69:0::1;54260:19;:27:::0;;-1:-1:-1;;;;54260:27:0::1;::::0;;54120:175::o;29546:201::-;-1:-1:-1;;;;;29712:18:0;;;29680:7;29712:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29546:201::o;54737:750::-;-1:-1:-1;;;;;54870:20:0;;54862:59;;;;-1:-1:-1;;;54862:59:0;;13462:2:1;54862:59:0;;;13444:21:1;13501:2;13481:18;;;13474:30;13540:28;13520:18;;;13513:56;13586:18;;54862:59:0;13260:350:1;54862:59:0;54956:16;;;54970:1;54956:16;;;;;;;;54932:21;;54956:16;;;;;;;;-1:-1:-1;;54993:16:0;;:23;;;-1:-1:-1;;;54993:23:0;;;;54932:40;;-1:-1:-1;;;;;;54993:16:0;;;;:21;;-1:-1:-1;54993:23:0;;;;;;;;;;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54983:4;54988:1;54983:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;54983:33:0;;;-1:-1:-1;;;;;54983:33:0;;;;;55045:4;55027;55032:1;55027:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55027:23:0;;;:7;;;;;;;;;;:23;55085:10;55065:31;;;;:19;:31;;;;;;;;;55061:136;;;55120:6;-1:-1:-1;;;;;55113:27:0;;55141:4;55147;55152:1;55147:7;;;;;;;;:::i;:::-;;;;;;;;;;;55113:51;;-1:-1:-1;;;;;;55113:51:0;;;;;;;-1:-1:-1;;;;;14137:15:1;;;55113:51:0;;;14119:34:1;14189:15;;14169:18;;;14162:43;14221:18;;;14214:34;;;14054:18;;55113:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55179:7;54737:750;;;:::o;55061:136::-;55233:16;;:246;;-1:-1:-1;;;55233:246:0;;-1:-1:-1;;;;;55233:16:0;;;;:67;;55322:7;;55233:246;;:16;;55404:4;;55431:6;;55453:15;;55233:246;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54851:636;54737:750;;;:::o;24455:238::-;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24558:22:0;::::1;24536:110;;;::::0;-1:-1:-1;;;24536:110:0;;15692:2:1;24536:110:0::1;::::0;::::1;15674:21:1::0;15731:2;15711:18;;;15704:30;15770:34;15750:18;;;15743:62;-1:-1:-1;;;15821:18:1;;;15814:36;15867:19;;24536:110:0::1;15490:402:1::0;24536:110:0::1;24657:28;24676:8;24657:18;:28::i;53637:118::-:0;23619:6;;-1:-1:-1;;;;;23619:6:0;1060:10;23766:23;23758:68;;;;-1:-1:-1;;;23758:68:0;;;;;;;:::i;:::-;53731:15:::1;:3:::0;53739:6:::1;53731:7;:15::i;:::-;53707:14;:40:::0;-1:-1:-1;53637:118:0:o;36637:380::-;-1:-1:-1;;;;;36773:19:0;;36765:68;;;;-1:-1:-1;;;36765:68:0;;16099:2:1;36765:68:0;;;16081:21:1;16138:2;16118:18;;;16111:30;16177:34;16157:18;;;16150:62;-1:-1:-1;;;16228:18:1;;;16221:34;16272:19;;36765:68:0;15897:400:1;36765:68:0;-1:-1:-1;;;;;36852:21:0;;36844:68;;;;-1:-1:-1;;;36844:68:0;;16504:2:1;36844:68:0;;;16486:21:1;16543:2;16523:18;;;16516:30;16582:34;16562:18;;;16555:62;-1:-1:-1;;;16633:18:1;;;16626:32;16675:19;;36844:68:0;16302:398:1;36844:68:0;-1:-1:-1;;;;;36925:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36977:32;;160:25:1;;;36977:32:0;;133:18:1;36977:32:0;;;;;;;36637:380;;;:::o;37308:502::-;37443:24;37470:25;37480:5;37487:7;37470:9;:25::i;:::-;37443:52;;-1:-1:-1;;37510:16:0;:37;37506:297;;37610:6;37590:16;:26;;37564:117;;;;-1:-1:-1;;;37564:117:0;;16907:2:1;37564:117:0;;;16889:21:1;16946:2;16926:18;;;16919:30;16985:31;16965:18;;;16958:59;17034:18;;37564:117:0;16705:353:1;37564:117:0;37725:51;37734:5;37741:7;37769:6;37750:16;:25;37725:8;:51::i;:::-;37432:378;37308:502;;;:::o;45709:2879::-;-1:-1:-1;;;;;45857:25:0;;45833:21;45857:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;45899:23:0;;;;;;:19;:23;;;;;;;;45857:65;45833:89;-1:-1:-1;;;;;;45943:18:0;;45935:68;;;;-1:-1:-1;;;45935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46022:16:0;;46014:64;;;;-1:-1:-1;;;46014:64:0;;;;;;;:::i;:::-;46095:6;46105:1;46095:11;46091:93;;46123:28;46139:4;46145:2;46149:1;46123:15;:28::i;46091:93::-;46217:14;;46196:10;;-1:-1:-1;;;;;46209:22:0;;;46217:14;;46209:22;:75;;;;-1:-1:-1;;;;;;46249:35:0;;;;;;:31;:35;;;;;;;;46248:36;46209:75;46315:14;;46196:88;;-1:-1:-1;46295:11:0;;-1:-1:-1;;;;;46309:20:0;;;46315:14;;46309:20;:75;;;;-1:-1:-1;;;;;;46347:37:0;;;;;;:31;:37;;;;;;;;46346:38;46309:75;46295:89;;46395:16;46422:7;23619:6;;-1:-1:-1;;;;;23619:6:0;;23546:87;46422:7;-1:-1:-1;;;;;46414:15:0;:4;-1:-1:-1;;;;;46414:15:0;;:32;;;-1:-1:-1;23619:6:0;;-1:-1:-1;;;;;46433:13:0;;;23619:6;;46433:13;46414:32;46395:51;-1:-1:-1;46457:11:0;-1:-1:-1;;;;;46471:16:0;;;;:41;;-1:-1:-1;;;;;;46491:21:0;;46505:6;46491:21;46471:41;46457:55;;46523:17;46543:11;:21;;;;46558:6;46543:21;:38;;;-1:-1:-1;46568:13:0;;;;46543:38;46606:15;;46523:58;;-1:-1:-1;46606:15:0;;:32;;;;;46626:12;46625:13;46606:32;46602:1076;;;46681:14;;;;;;;;:34;;;46699:16;46681:34;46655:118;;;;-1:-1:-1;;;46655:118:0;;18075:2:1;46655:118:0;;;18057:21:1;18114:2;18094:18;;;18087:30;-1:-1:-1;;;18133:18:1;;;18126:52;18195:18;;46655:118:0;17873:346:1;46655:118:0;46792:5;46788:879;;;46858:21;;46848:6;:31;;46818:158;;;;-1:-1:-1;;;46818:158:0;;18426:2:1;46818:158:0;;;18408:21:1;18465:2;18445:18;;;18438:30;18504:34;18484:18;;;18477:62;-1:-1:-1;;;18555:18:1;;;18548:51;18616:19;;46818:158:0;18224:417:1;46818:158:0;47051:10;;-1:-1:-1;;;;;29017:18:0;;28985:7;29017:18;;;;;;;;;;;47025:22;;:6;:22;:::i;:::-;:36;;46995:129;;;;-1:-1:-1;;;46995:129:0;;18848:2:1;46995:129:0;;;18830:21:1;18887:2;18867:18;;;18860:30;-1:-1:-1;;;18906:18:1;;;18899:49;18965:18;;46995:129:0;18646:343:1;46995:129:0;46788:879;;;47150:6;47146:521;;-1:-1:-1;;;;;47393:35:0;;;;;;:31;:35;;;;;;;;47392:36;:95;;;;-1:-1:-1;;;;;;47450:37:0;;;;;;:31;:37;;;;;;;;47449:38;47392:95;47370:297;;;47578:10;;-1:-1:-1;;;;;29017:18:0;;28985:7;29017:18;;;;;;;;;;;47552:22;;:6;:22;:::i;:::-;:36;;47522:129;;;;-1:-1:-1;;;47522:129:0;;18848:2:1;47522:129:0;;;18830:21:1;18887:2;18867:18;;;18860:30;-1:-1:-1;;;18906:18:1;;;18899:49;18965:18;;47522:129:0;18646:343:1;47522:129:0;-1:-1:-1;;;;;47706:31:0;;;;;;:25;:31;;;;;;;;47702:271;;;-1:-1:-1;;;;;47758:19:0;;;;;;:15;:19;;;;;;:24;;47754:102;;-1:-1:-1;;;;;47803:19:0;;;;;;:15;:19;;;;;47825:15;47803:37;;47754:102;47702:271;;;47893:13;;;;47888:74;;47927:12;:19;;-1:-1:-1;;;;;;47927:19:0;;-1:-1:-1;;;;;47927:19:0;;;;;;47888:74;47990:13;;;;47989:14;:63;;;;-1:-1:-1;;;;;;48021:31:0;;;;;;:25;:31;;;;;;;;48020:32;47989:63;:106;;;;-1:-1:-1;;;;;;48070:25:0;;;;;;:19;:25;;;;;;;;48069:26;47989:106;:147;;;;-1:-1:-1;;;;;;48113:23:0;;;;;;:19;:23;;;;;;;;48112:24;47989:147;47985:536;;;48202:4;48153:28;29017:18;;;;;;;;;;;48262:19;;48238:43;;;48300:17;:15;:17::i;:::-;:45;;;;;48338:7;48300:45;:84;;;;;48368:16;48367:17;48300:84;48296:214;;;48405:13;:20;;-1:-1:-1;;48405:20:0;48421:4;48405:20;;;48444:10;:8;:10::i;:::-;48473:13;:21;;-1:-1:-1;;48473:21:0;;;48296:214;48138:383;;47985:536;48531:49;48548:4;48554:2;48558:6;48566;48574:5;48531:16;:49::i;24853:191::-;24946:6;;;-1:-1:-1;;;;;24963:17:0;;;-1:-1:-1;;;;;;24963:17:0;;;;;;;24996:40;;24946:6;;;24963:17;24946:6;;24996:40;;24927:16;;24996:40;24916:128;24853:191;:::o;55804:235::-;-1:-1:-1;;;;;55887:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;55887:39:0;;;;;;;55937:38;55887:31;:39;55937:25;:38::i;51057:479::-;51148:16;;;51162:1;51148:16;;;;;;;;51124:21;;51148:16;;;;;;;;;;-1:-1:-1;51148:16:0;51124:40;;51193:4;51175;51180:1;51175:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51175:23:0;;;:7;;;;;;;;;;:23;;;;51219:16;;:23;;;-1:-1:-1;;;51219:23:0;;;;:16;;;;;:21;;:23;;;;;51175:7;;51219:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51209:4;51214:1;51209:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51209:33:0;;;:7;;;;;;;;;:33;51287:16;;51255:63;;51272:4;;51287:16;51306:11;51255:8;:63::i;:::-;51331:16;;:197;;-1:-1:-1;;;51331:197:0;;-1:-1:-1;;;;;51331:16:0;;;;:67;;:197;;51413:11;;51331:16;;51455:4;;51482;;51502:15;;51331:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51113:423;51057:479;:::o;19175:98::-;19233:7;19260:5;19264:1;19260;:5;:::i;:::-;19253:12;19175:98;-1:-1:-1;;;19175:98:0:o;33881:708::-;-1:-1:-1;;;;;34012:18:0;;34004:68;;;;-1:-1:-1;;;34004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34091:16:0;;34083:64;;;;-1:-1:-1;;;34083:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34233:15:0;;34211:19;34233:15;;;;;;;;;;;34281:21;;;;34259:109;;;;-1:-1:-1;;;34259:109:0;;19783:2:1;34259:109:0;;;19765:21:1;19822:2;19802:18;;;19795:30;19861:34;19841:18;;;19834:62;-1:-1:-1;;;19912:18:1;;;19905:36;19958:19;;34259:109:0;19581:402:1;34259:109:0;-1:-1:-1;;;;;34404:15:0;;;:9;:15;;;;;;;;;;;34422:20;;;34404:38;;34464:13;;;;;;;;:23;;34436:6;;34404:9;34464:23;;34436:6;;34464:23;:::i;:::-;;;;;;;;34520:2;-1:-1:-1;;;;;34505:26:0;34514:4;-1:-1:-1;;;;;34505:26:0;;34524:6;34505:26;;;;160:25:1;;148:2;133:18;;14:177;34505:26:0;;;;;;;;34544:37;43689:410;44237:111;44282:4;44324:1;44306:15;:13;:15::i;:::-;:19;:34;;-1:-1:-1;44335:5:0;;44237:111::o;44306:34::-;-1:-1:-1;44328:4:0;;44237:111::o;51915:1714::-;51998:4;51954:23;29017:18;;;;;;;;;;;51954:50;;52015:25;52101:21;;52065:19;;52043;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;52015:107;-1:-1:-1;52137:20:0;;;:46;;-1:-1:-1;52161:22:0;;52137:46;52133:59;;;52185:7;;51915:1714::o;52133:59::-;52224:19;;52206:15;:37;52202:107;;;52278:19;;52260:37;;52202:107;52319:23;52433:1;52400:17;52364:19;;52346:15;:37;;;;:::i;:::-;52345:72;;;;:::i;:::-;:89;;;;:::i;:::-;52319:115;-1:-1:-1;52445:26:0;52474:36;:15;52319:115;52474:19;:36::i;:::-;52445:65;-1:-1:-1;52549:21:0;52581:37;52445:65;52581:17;:37::i;:::-;52629:18;52650:44;:21;52676:17;52650:25;:44::i;:::-;52629:65;;52705:23;52731:82;52785:17;52731:35;52746:19;;52731:10;:14;;:35;;;;:::i;:::-;:39;;:82::i;:::-;52705:108;;52824:25;52852:84;52908:17;52852:37;52867:21;;52852:10;:14;;:37;;;;:::i;:84::-;52824:112;-1:-1:-1;52947:23:0;52824:112;52973:28;52986:15;52973:10;:28;:::i;:::-;:48;;;;:::i;:::-;52947:74;;53056:1;53038:15;:19;:42;;;;;53079:1;53061:15;:19;53038:42;53034:280;;;53097:47;53111:15;53128;53097:13;:47::i;:::-;53268:19;;53164:138;;;20323:25:1;;;20379:2;20364:18;;20357:34;;;20407:18;;;20400:34;;;;53164:138:0;;;;;;20311:2:1;53164:138:0;;;53034:280;53348:1;53326:19;:23;;;53360:19;:23;;;53394:21;:25;;;53468:14;;53460:58;;-1:-1:-1;;;;;53468:14:0;;;;53497:15;;53348:1;53460:58;53348:1;53460:58;53497:15;53468:14;53460:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53567:16:0;;53559:62;;53432:86;;-1:-1:-1;53530:23:0;;-1:-1:-1;;;;;53567:16:0;;;;53598:17;;53530:23;53559:62;53530:23;53559:62;53598:17;53567:16;53559:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;51915:1714:0:o;48596:1099::-;48760:12;48775:21;48787:4;48793:2;48775:11;:21::i;:::-;48760:36;;48811:7;48807:837;;;48851:10;;48896:13;;48924:151;;;;48976:18;;48963:10;;:31;;;;:::i;:::-;48955:39;;49041:18;;49025:13;;:34;;;;:::i;:::-;49013:46;;48924:151;49093:5;49089:148;;;49140:17;;49127:10;;:30;;;;:::i;:::-;49119:38;;49204:17;;49188:13;;:33;;;;:::i;:::-;49176:45;;49089:148;49251:12;49266:26;49288:3;49266:17;:6;49277:5;49266:10;:17::i;:26::-;49251:41;;49355:5;49338:13;;49331:4;:20;;;;:::i;:::-;49330:30;;;;:::i;:::-;49307:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;49419:5:0;;-1:-1:-1;49399:16:0;49406:9;49399:4;:16;:::i;:::-;49398:26;;;;:::i;:::-;49375:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;49472:15:0;;49491:5;;49465:22;;:4;:22;:::i;:::-;49464:32;;;;:::i;:::-;49439:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;49517:8:0;;49513:91;;49546:42;49562:4;49576;49583;49546:15;:42::i;:::-;49618:14;49628:4;49618:14;;:::i;:::-;;;48820:824;;;48807:837;49654:33;49670:4;49676:2;49680:6;49654:15;:33::i;18818:98::-;18876:7;18903:5;18907:1;18903;:5;:::i;19574:98::-;19632:7;19659:5;19663:1;19659;:5;:::i;51544:363::-;51658:16;;51626:63;;51643:4;;-1:-1:-1;;;;;51658:16:0;51677:11;51626:8;:63::i;:::-;51700:16;;-1:-1:-1;;;;;51700:16:0;:32;51740:9;51773:4;51793:11;51700:16;;51851:7;23619:6;;-1:-1:-1;;;;;23619:6:0;;23546:87;51851:7;51700:199;;;;;;-1:-1:-1;;;;;;51700:199:0;;;-1:-1:-1;;;;;20804:15:1;;;51700:199:0;;;20786:34:1;20836:18;;;20829:34;;;;20879:18;;;20872:34;;;;20922:18;;;20915:34;20986:15;;;20965:19;;;20958:44;51873:15:0;21018:19:1;;;21011:35;20720:19;;51700:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;404:548:1:-;516:4;545:2;574;563:9;556:21;606:6;600:13;649:6;644:2;633:9;629:18;622:34;674:1;684:140;698:6;695:1;692:13;684:140;;;793:14;;;789:23;;783:30;759:17;;;778:2;755:26;748:66;713:10;;684:140;;;688:3;873:1;868:2;859:6;848:9;844:22;840:31;833:42;943:2;936;932:7;927:2;919:6;915:15;911:29;900:9;896:45;892:54;884:62;;;;404:548;;;;:::o;957:131::-;-1:-1:-1;;;;;1032:31:1;;1022:42;;1012:70;;1078:1;1075;1068:12;1093:315;1161:6;1169;1222:2;1210:9;1201:7;1197:23;1193:32;1190:52;;;1238:1;1235;1228:12;1190:52;1277:9;1264:23;1296:31;1321:5;1296:31;:::i;:::-;1346:5;1398:2;1383:18;;;;1370:32;;-1:-1:-1;;;1093: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:316::-;1867:6;1875;1883;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;-1:-1:-1;;1975:23:1;;;2045:2;2030:18;;2017:32;;-1:-1:-1;2096:2:1;2081:18;;;2068:32;;1790:316;-1:-1:-1;1790:316:1:o;2111:456::-;2188:6;2196;2204;2257:2;2245:9;2236:7;2232:23;2228:32;2225:52;;;2273:1;2270;2263:12;2225:52;2312:9;2299:23;2331:31;2356:5;2331:31;:::i;:::-;2381:5;-1:-1:-1;2438:2:1;2423:18;;2410:32;2451:33;2410:32;2451:33;:::i;:::-;2111:456;;2503:7;;-1:-1:-1;;;2557:2:1;2542:18;;;;2529:32;;2111:456::o;2572:247::-;2631:6;2684:2;2672:9;2663:7;2659:23;2655:32;2652:52;;;2700:1;2697;2690:12;2652:52;2739:9;2726:23;2758:31;2783:5;2758:31;:::i;3247:118::-;3333:5;3326:13;3319:21;3312:5;3309:32;3299:60;;3355:1;3352;3345:12;3370:382;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:52;;;3512:1;3509;3502:12;3464:52;3551:9;3538:23;3570:31;3595:5;3570:31;:::i;:::-;3620:5;-1:-1:-1;3677:2:1;3662:18;;3649:32;3690:30;3649:32;3690:30;:::i;:::-;3739:7;3729:17;;;3370:382;;;;;:::o;4278:388::-;4346:6;4354;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4462:9;4449:23;4481:31;4506:5;4481:31;:::i;:::-;4531:5;-1:-1:-1;4588:2:1;4573:18;;4560:32;4601:33;4560:32;4601:33;:::i;4671:380::-;4750:1;4746:12;;;;4793;;;4814:61;;4868:4;4860:6;4856:17;4846:27;;4814:61;4921:2;4913:6;4910:14;4890:18;4887:38;4884:161;;4967:10;4962:3;4958:20;4955:1;4948:31;5002:4;4999:1;4992:15;5030:4;5027:1;5020:15;4884:161;;4671:380;;;:::o;5056:356::-;5258:2;5240:21;;;5277:18;;;5270:30;5336:34;5331:2;5316:18;;5309:62;5403:2;5388:18;;5056:356::o;5417:127::-;5478:10;5473:3;5469:20;5466:1;5459:31;5509:4;5506:1;5499:15;5533:4;5530:1;5523:15;5549:168;5622:9;;;5653;;5670:15;;;5664:22;;5650:37;5640:71;;5691:18;;:::i;5722:217::-;5762:1;5788;5778:132;;5832:10;5827:3;5823:20;5820:1;5813:31;5867:4;5864:1;5857:15;5895:4;5892:1;5885:15;5778:132;-1:-1:-1;5924:9:1;;5722:217::o;6360:125::-;6425:9;;;6446:10;;;6443:36;;;6459:18;;:::i;7058:251::-;7128:6;7181:2;7169:9;7160:7;7156:23;7152:32;7149:52;;;7197:1;7194;7187:12;7149:52;7229:9;7223:16;7248:31;7273:5;7248:31;:::i;7314:184::-;7384:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:52;;;7453:1;7450;7443:12;7405:52;-1:-1:-1;7476:16:1;;7314:184;-1:-1:-1;7314:184:1:o;7503:188::-;7582:13;;-1:-1:-1;;;;;7624:42:1;;7614:53;;7604:81;;7681:1;7678;7671:12;7696:450;7783:6;7791;7799;7852:2;7840:9;7831:7;7827:23;7823:32;7820:52;;;7868:1;7865;7858:12;7820:52;7891:40;7921:9;7891:40;:::i;:::-;7881:50;;7950:49;7995:2;7984:9;7980:18;7950:49;:::i;:::-;7940:59;;8042:2;8031:9;8027:18;8021:25;8086:10;8079:5;8075:22;8068:5;8065:33;8055:61;;8112:1;8109;8102:12;8055:61;8135:5;8125:15;;;7696:450;;;;;:::o;8151:179::-;8229:13;;8282:22;8271:34;;8261:45;;8251:73;;8320:1;8317;8310:12;8335:473;8438:6;8446;8454;8462;8470;8523:3;8511:9;8502:7;8498:23;8494:33;8491:53;;;8540:1;8537;8530:12;8491:53;8563:39;8592:9;8563:39;:::i;:::-;8553:49;;8642:2;8631:9;8627:18;8621:25;8611:35;;8686:2;8675:9;8671:18;8665:25;8655:35;;8730:2;8719:9;8715:18;8709:25;8699:35;;8753:49;8797:3;8786:9;8782:19;8753:49;:::i;:::-;8743:59;;8335:473;;;;;;;;:::o;8813:273::-;8881:6;8934:2;8922:9;8913:7;8909:23;8905:32;8902:52;;;8950:1;8947;8940:12;8902:52;8982:9;8976:16;9032:4;9025:5;9021:16;9014:5;9011:27;9001:55;;9052:1;9049;9042:12;9091:422;9180:1;9223:5;9180:1;9237:270;9258:7;9248:8;9245:21;9237:270;;;9317:4;9313:1;9309:6;9305:17;9299:4;9296:27;9293:53;;;9326:18;;:::i;:::-;9376:7;9366:8;9362:22;9359:55;;;9396:16;;;;9359:55;9475:22;;;;9435:15;;;;9237:270;;;9241:3;9091:422;;;;;:::o;9518:806::-;9567:5;9597:8;9587:80;;-1:-1:-1;9638:1:1;9652:5;;9587:80;9686:4;9676:76;;-1:-1:-1;9723:1:1;9737:5;;9676:76;9768:4;9786:1;9781:59;;;;9854:1;9849:130;;;;9761:218;;9781:59;9811:1;9802:10;;9825:5;;;9849:130;9886:3;9876:8;9873:17;9870:43;;;9893:18;;:::i;:::-;-1:-1:-1;;9949:1:1;9935:16;;9964:5;;9761:218;;10063:2;10053:8;10050:16;10044:3;10038:4;10035:13;10031:36;10025:2;10015:8;10012:16;10007:2;10001:4;9998:12;9994:35;9991:77;9988:159;;;-1:-1:-1;10100:19:1;;;10132:5;;9988:159;10179:34;10204:8;10198:4;10179:34;:::i;:::-;10249:6;10245:1;10241:6;10237:19;10228:7;10225:32;10222:58;;;10260:18;;:::i;:::-;10298:20;;9518:806;-1:-1:-1;;;9518:806:1:o;10329:131::-;10389:5;10418:36;10445:8;10439:4;10418:36;:::i;13747:127::-;13808:10;13803:3;13799:20;13796:1;13789:31;13839:4;13836:1;13829:15;13863:4;13860:1;13853:15;14259:245;14326:6;14379:2;14367:9;14358:7;14354:23;14350:32;14347:52;;;14395:1;14392;14385:12;14347:52;14427:9;14421:16;14446:28;14468:5;14446:28;:::i;14509:461::-;14562:3;14600:5;14594:12;14627:6;14622:3;14615:19;14653:4;14682:2;14677:3;14673:12;14666:19;;14719:2;14712:5;14708:14;14740:1;14750:195;14764:6;14761:1;14758:13;14750:195;;;14829:13;;-1:-1:-1;;;;;14825:39:1;14813:52;;14885:12;;;;14920:15;;;;14861:1;14779:9;14750:195;;;-1:-1:-1;14961:3:1;;14509:461;-1:-1:-1;;;;;14509:461:1:o;14975:510::-;15246:6;15235:9;15228:25;15289:3;15284:2;15273:9;15269:18;15262:31;15209:4;15310:57;15362:3;15351:9;15347:19;15339:6;15310:57;:::i;:::-;-1:-1:-1;;;;;15403:32:1;;;;15398:2;15383:18;;15376:60;-1:-1:-1;15467:2:1;15452:18;15445:34;15302:65;14975:510;-1:-1:-1;;14975:510:1:o;17063:401::-;17265:2;17247:21;;;17304:2;17284:18;;;17277:30;17343:34;17338:2;17323:18;;17316:62;-1:-1:-1;;;17409:2:1;17394:18;;17387:35;17454:3;17439:19;;17063:401::o;17469:399::-;17671:2;17653:21;;;17710:2;17690:18;;;17683:30;17749:34;17744:2;17729:18;;17722:62;-1:-1:-1;;;17815:2:1;17800:18;;17793:33;17858:3;17843:19;;17469:399::o;18994:582::-;19293:6;19282:9;19275:25;19336:6;19331:2;19320:9;19316:18;19309:34;19379:3;19374:2;19363:9;19359:18;19352:31;19256:4;19400:57;19452:3;19441:9;19437:19;19429:6;19400:57;:::i;:::-;-1:-1:-1;;;;;19493:32:1;;;;19488:2;19473:18;;19466:60;-1:-1:-1;19557:3:1;19542:19;19535:35;19392:65;18994:582;-1:-1:-1;;;18994:582:1:o;19988:128::-;20055:9;;;20076:11;;;20073:37;;;20090:18;;:::i;21057:306::-;21145:6;21153;21161;21214:2;21202:9;21193:7;21189:23;21185:32;21182:52;;;21230:1;21227;21220:12;21182:52;21259:9;21253:16;21243:26;;21309:2;21298:9;21294:18;21288:25;21278:35;;21353:2;21342:9;21338:18;21332:25;21322:35;;21057:306;;;;;:::o

Swarm Source

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