ETH Price: $3,318.33 (-0.84%)
 

Overview

Max Total Supply

1,000,000,000 NODEV

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: NODEV 7
Balance
17,987,994.664176234954474099 NODEV

Value
$0.00
0xaf78d7c45d57bff5e4157e8b7fc80ea547430cb2
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:
NODEV

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

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











// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        if (amount > 0) {

        emit Transfer(sender, recipient, amount);}

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

    /**
     * @dev 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 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 {}
}


// File: contracts/test.sol


pragma solidity ^0.8.16;


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

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
   
    struct BuyFee {
        
        uint16 devFee;
    }

    struct SellFee {
        
        uint16 devFee;
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    

    uint256 public swapTokensAtAmount = 2 * 10**7 * 10**18; 


    uint256 public maxBuyAmount = 1 * 10**7 * 10**18; // 1% of the supply (antiwhale)
    uint256 public maxSellAmount = 2 * 10**7 * 10**18; // 2% of the supply (antiwhale)
    uint256 public maxWalletAmount = 2 * 10**7 * 10**18; // 2% of the supply (antiwhale)

    uint16 private totalBuyFee;
    uint16 private totalSellFee;
    

    bool public swapEnabled;
    bool private isTradingEnabled;
   

    address payable devWallet = payable(address(0x88FEA7B7C685f089d5cE32187317224314E635Cb)); 
   
   
    

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;
    mapping(address => bool) public automatedMarketMakerPairs;

    
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    modifier lockTheSwap() {
        swapping = true;
        _;
        swapping = false;
    }

    constructor() ERC20("NODEV", "NODEV") {
       
        buyFee.devFee = 0;
        totalBuyFee = 0; 

        
        sellFee.devFee = 0;
        totalSellFee = 0;

        

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap V2 Router
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

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

        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1 * 10**9 * (10**18)); // 1 Billion Tokens
    }

    receive() external payable {}

    function updateRouter(address newAddress) external onlyOwner {
    require(newAddress != address(uniswapV2Router), "ERC20: The router already has that address");
            uniswapV2Router = IUniswapV2Router02(newAddress);
         address get_pair =
            IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this),
            uniswapV2Router.WETH());
        if (get_pair == address(0)) {
          uniswapV2Pair =
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),
             uniswapV2Router.WETH());
    } else {
        uniswapV2Pair = get_pair;
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "ERC20: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

     function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rugs");
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

    function excludefromLimit(address account, bool excluded)
        external
        onlyOwner
    {
        _isExcludedFromLimit[account] = excluded;
    }


   function enableTrading() external onlyOwner {
        isTradingEnabled = true;
       
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "ERC20: The Uniswap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "ERC20: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }
            
    function setBuyFees(
        uint16 newBuyFee
        ) external onlyOwner

    {
        buyFee.devFee = newBuyFee;
         totalBuyFee = newBuyFee;
        require(totalBuyFee <= 0,
         "Max buy fees limit  is 0%");
    }

   
    function setSellFee(
        uint16 newSellFee
        
    ) external onlyOwner  {
        sellFee.devFee = newSellFee;
        totalSellFee = newSellFee;
        require (totalSellFee <= 0, 
        "Max sell fees limit is 0%");
    }

                    

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

    // function to change dev wallet
    function setDevWallet(address newWallet) external onlyOwner {
    require (newWallet != address(0), "Dev wallet can not be a zero address");
        devWallet = payable(newWallet);
    }
  
    // Function to set Max Wallet limit ( How many tokens a wallet can hold)
    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount > 20000000, "Can't set lower amount, No rugPull");
        maxWalletAmount = amount * 10**18;
    }
    // // function to set Max Buy limit per transaction
    function setMaxBuyAmount(uint256 amount) external onlyOwner {
      require(amount >= 10000000, "Can't set lower amount, No rugPull");
        maxBuyAmount = amount * 10**18;
    }
    // function to set Max sell limit per transaction
    function setMaxSellAmount(uint256 amount) external onlyOwner {
        require(amount >= 100000000, "Can't set lower amount, No rugPull");
        maxSellAmount = amount * 10**18;
    }

    // function to set threshold for eth conversion
   function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
       swapTokensAtAmount =  amount * 10**18;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "Token: transfer from the zero address");
        require(to != address(0), "Token: transfer to the zero address");
       
        require( isTradingEnabled || _isExcludedFromFees[from],
            "Trading not enabled yet"
        );

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >=
            swapTokensAtAmount;

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            
            uint256 swapTokens = contractTokenBalance;
            swapAndSendToDev(swapTokens);

        }

        bool takeFee = true;

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

        if (takeFee) {
            uint256 fees;

          

            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[to]) {
                    require(amount <= maxSellAmount, "Sell exceeds per transaction limit");
                } else if (automatedMarketMakerPairs[from]) {
                  require(amount <= maxBuyAmount, "Buy exceeds per transaction limit");
                   
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "Antiwhale: Balance exceeds limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);

            super._transfer(from, address(this), feeAmount);
        }

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

    function swapAndSendToDev (uint256 tokens) private lockTheSwap {
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance.sub(initialBalance);

        
       (bool os, ) = payable(devWallet).call{value: newBalance}("");
       require(os,"transaction failed");

    }
   

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

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

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

        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"buyFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newBuyFee","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSellFee","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a108b2a2c28029094000000600a556a084595161401484a000000600b556a108b2a2c28029094000000600c556a108b2a2c28029094000000600d557388fea7b7c685f089d5ce32187317224314e635cb600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a257600080fd5b506040518060400160405280600581526020017f4e4f4445560000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e4f444556000000000000000000000000000000000000000000000000000000815250816003908162000120919062000c68565b50806004908162000132919062000c68565b50505062000155620001496200046f60201b60201c565b6200047760201b60201c565b6000600860000160006101000a81548161ffff021916908361ffff1602179055506000600e60006101000a81548161ffff021916908361ffff1602179055506000600960000160006101000a81548161ffff021916908361ffff1602179055506000600e60026101000a81548161ffff021916908361ffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000db9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000db9565b6040518363ffffffff1660e01b81526004016200030d92919062000dfc565b6020604051808303816000875af11580156200032d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000353919062000db9565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ea8160016200053d60201b60201c565b6200040c620003fe6200067360201b60201c565b60016200069d60201b60201c565b6200041f3060016200069d60201b60201c565b6001600e60046101000a81548160ff021916908315150217905550620004676200044e6200067360201b60201c565b6b033b2e3c9fd0803ce80000006200086c60201b60201c565b505062001120565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620005d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c99062000eb0565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006ad6200046f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d36200067360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007239062000f22565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620007c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b89062000fba565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000860919062000ff9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062001066565b60405180910390fd5b620008f260008383620009e460201b60201c565b8060026000828254620009069190620010b7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200095d9190620010b7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c4919062001103565b60405180910390a3620009e060008383620009e960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7057607f821691505b60208210810362000a865762000a8562000a28565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab1565b62000afc868362000ab1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b4962000b4362000b3d8462000b14565b62000b1e565b62000b14565b9050919050565b6000819050919050565b62000b658362000b28565b62000b7d62000b748262000b50565b84845462000abe565b825550505050565b600090565b62000b9462000b85565b62000ba181848462000b5a565b505050565b5b8181101562000bc95762000bbd60008262000b8a565b60018101905062000ba7565b5050565b601f82111562000c185762000be28162000a8c565b62000bed8462000aa1565b8101602085101562000bfd578190505b62000c1562000c0c8562000aa1565b83018262000ba6565b50505b505050565b600082821c905092915050565b600062000c3d6000198460080262000c1d565b1980831691505092915050565b600062000c58838362000c2a565b9150826002028217905092915050565b62000c7382620009ee565b67ffffffffffffffff81111562000c8f5762000c8e620009f9565b5b62000c9b825462000a57565b62000ca882828562000bcd565b600060209050601f83116001811462000ce0576000841562000ccb578287015190505b62000cd7858262000c4a565b86555062000d47565b601f19841662000cf08662000a8c565b60005b8281101562000d1a5784890151825560018201915060208501945060208101905062000cf3565b8683101562000d3a578489015162000d36601f89168262000c2a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d818262000d54565b9050919050565b62000d938162000d74565b811462000d9f57600080fd5b50565b60008151905062000db38162000d88565b92915050565b60006020828403121562000dd25762000dd162000d4f565b5b600062000de28482850162000da2565b91505092915050565b62000df68162000d74565b82525050565b600060408201905062000e13600083018562000deb565b62000e22602083018462000deb565b9392505050565b600082825260208201905092915050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000e98603f8362000e29565b915062000ea58262000e3a565b604082019050919050565b6000602082019050818103600083015262000ecb8162000e89565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0a60208362000e29565b915062000f178262000ed2565b602082019050919050565b6000602082019050818103600083015262000f3d8162000efb565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000fa260318362000e29565b915062000faf8262000f44565b604082019050919050565b6000602082019050818103600083015262000fd58162000f93565b9050919050565b60008115159050919050565b62000ff38162000fdc565b82525050565b600060208201905062001010600083018462000fe8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200104e601f8362000e29565b91506200105b8262001016565b602082019050919050565b6000602082019050818103600083015262001081816200103f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010c48262000b14565b9150620010d18362000b14565b9250828201905080821115620010ec57620010eb62001088565b5b92915050565b620010fd8162000b14565b82525050565b60006020820190506200111a6000830184620010f2565b92915050565b614af680620011306000396000f3fe6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b604051610257919061349a565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613555565b610989565b60405161029491906135b0565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf919061362a565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613654565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366f565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369c565b610b06565b60405161035091906135b0565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370c565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613743565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613555565b610c21565b6040516103e391906135b0565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061378a565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370c565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c6565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366f565b610e21565b60405161049f91906135b0565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137e1565b610e77565b005b3480156104dd57600080fd5b506104e6610f56565b6040516104f39190613654565b60405180910390f35b34801561050857600080fd5b50610511610f5c565b60405161051e91906135b0565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366f565b610f6f565b60405161055b9190613654565b60405180910390f35b34801561057057600080fd5b50610579610fb7565b005b34801561058757600080fd5b506105a2600480360381019061059d919061383a565b61103f565b005b3480156105b057600080fd5b506105b9611116565b6040516105c69190613654565b60405180910390f35b3480156105db57600080fd5b506105e461111c565b005b3480156105f257600080fd5b506105fb6111b5565b60405161060891906137c6565b60405180910390f35b34801561061d57600080fd5b506106266111df565b604051610633919061349a565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061383a565b611271565b005b34801561067157600080fd5b5061068c60048036038101906106879190613555565b61138b565b60405161069991906135b0565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613555565b611476565b6040516106d691906135b0565b60405180910390f35b3480156106eb57600080fd5b506106f4611494565b6040516107019190613654565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137e1565b61149a565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366f565b611533565b60405161076791906135b0565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061383a565b611553565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366f565b61170a565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061387a565b611c54565b6040516107f69190613654565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061378a565b611cdb565b005b34801561083457600080fd5b5061083d611def565b60405161084a9190613654565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e1565b611df5565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366f565b611ed5565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137e1565b611fcc565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366f565b6120ab565b005b606060038054610906906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e9565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d61099661232b565b8484612333565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df61232b565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f8565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a8a565b60405180910390fd5b610bf285610bea61232b565b858403612333565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e61232b565b848460016000610c3c61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad9565b612333565b6001905092915050565b610cd561232b565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613966565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506000600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b59565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f61232b565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613966565b60405180910390fd5b6301312d008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613beb565b60405180910390fd5b670de0b6b3a764000081610f4d9190613c0b565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbf61232b565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613966565b60405180910390fd5b61103d6000612bca565b565b61104761232b565b73ffffffffffffffffffffffffffffffffffffffff166110656111b5565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613966565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b61112461232b565b73ffffffffffffffffffffffffffffffffffffffff166111426111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613966565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ee906138e9565b80601f016020809104026020016040519081016040528092919081815260200182805461121a906138e9565b80156112675780601f1061123c57610100808354040283529160200191611267565b820191906000526020600020905b81548152906001019060200180831161124a57829003601f168201915b5050505050905090565b61127961232b565b73ffffffffffffffffffffffffffffffffffffffff166112976111b5565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613966565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ce5565b60405180910390fd5b6113878282612c90565b5050565b6000806001600061139a61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613d77565b60405180910390fd5b61146b61146261232b565b85858403612333565b600191505092915050565b600061148a61148361232b565b84846124fc565b6001905092915050565b600d5481565b6114a261232b565b73ffffffffffffffffffffffffffffffffffffffff166114c06111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613966565b60405180910390fd5b670de0b6b3a76400008161152a9190613c0b565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155b61232b565b73ffffffffffffffffffffffffffffffffffffffff166115796111b5565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613966565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613e09565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fe91906135b0565b60405180910390a25050565b61171261232b565b73ffffffffffffffffffffffffffffffffffffffff166117306111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613966565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613e9b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ea9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190613ed0565b6040518363ffffffff1660e01b81526004016119b4929190613efd565b602060405180830381865afa1580156119d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f59190613ed0565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613ed0565b6040518363ffffffff1660e01b8152600401611b86929190613efd565b6020604051808303816000875af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc99190613ed0565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c50565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce361232b565b73ffffffffffffffffffffffffffffffffffffffff16611d016111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613966565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506000600e60029054906101000a900461ffff1661ffff161115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613f72565b60405180910390fd5b50565b600a5481565b611dfd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611e1b6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613966565b60405180910390fd5b6305f5e100811015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613beb565b60405180910390fd5b670de0b6b3a764000081611ecc9190613c0b565b600c8190555050565b611edd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614004565b60405180910390fd5b611fc981612bca565b50565b611fd461232b565b73ffffffffffffffffffffffffffffffffffffffff16611ff26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613966565b60405180910390fd5b6298968081101561208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613beb565b60405180910390fd5b670de0b6b3a7640000816120a29190613c0b565b600b8190555050565b6120b361232b565b73ffffffffffffffffffffffffffffffffffffffff166120d16111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613966565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614070565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221c576121d16111b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612216573d6000803e3d6000fd5b50612328565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225c91906137c6565b602060405180830381865afa158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d91906140a5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c36111b5565b836040518363ffffffff1660e01b81526004016122e19291906140d2565b6020604051808303816000875af1158015612300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123249190614110565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906141af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890614241565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ef9190613654565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190614365565b60405180910390fd5b600e60059054906101000a900460ff168061263e5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906143d1565b60405180910390fd5b600081036126965761269183836000612dc3565b612bc5565b60006126a130610f6f565b90506000600a548210159050600e60049054906101000a900460ff1680156126d65750600760149054906101000a900460ff16155b80156127305750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127395750805b1561274e57600082905061274c8161304c565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f55750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127ff57600090505b8015612bb6576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287557600e60029054906101000a900461ffff1661ffff1690506128e0565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128df57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129845750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6957601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2557600c54851115612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614463565b60405180910390fd5b612abe565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abd57600b54851115612abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab3906144f5565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6857600d5485612b1c88610f6f565b612b269190613ad9565b1115612b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5e90614561565b60405180910390fd5b5b5b6000612b916064612b83848961317b90919063ffffffff16565b61319190919063ffffffff16565b9050612ba681876131a790919063ffffffff16565b9550612bb3883083612dc3565b50505b612bc1868686612dc3565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d19906145f3565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2990614685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9890614717565b60405180910390fd5b612eac8383836131bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906147a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc59190613ad9565b92505081905550600082111561303b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130329190613654565b60405180910390a35b6130468484846131c2565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613075826131c7565b600061308a82476131a790919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d4906147fa565b60006040518083038185875af1925050503d8060008114613111576040519150601f19603f3d011682016040523d82523d6000602084013e613116565b606091505b505090508061315a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131519061485b565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131899190613c0b565b905092915050565b6000818361319f91906148aa565b905092915050565b600081836131b591906148db565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e4576131e361490f565b5b6040519080825280602002602001820160405280156132125781602001602082028036833780820191505090505b509050308160008151811061322a5761322961493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f59190613ed0565b816001815181106133095761330861493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337030600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612333565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d4959493929190614a66565b600060405180830381600087803b1580156133ee57600080fd5b505af1158015613402573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613444578082015181840152602081019050613429565b60008484015250505050565b6000601f19601f8301169050919050565b600061346c8261340a565b6134768185613415565b9350613486818560208601613426565b61348f81613450565b840191505092915050565b600060208201905081810360008301526134b48184613461565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ec826134c1565b9050919050565b6134fc816134e1565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b6000819050919050565b6135328161351f565b811461353d57600080fd5b50565b60008135905061354f81613529565b92915050565b6000806040838503121561356c5761356b6134bc565b5b600061357a8582860161350a565b925050602061358b85828601613540565b9150509250929050565b60008115159050919050565b6135aa81613595565b82525050565b60006020820190506135c560008301846135a1565b92915050565b6000819050919050565b60006135f06135eb6135e6846134c1565b6135cb565b6134c1565b9050919050565b6000613602826135d5565b9050919050565b6000613614826135f7565b9050919050565b61362481613609565b82525050565b600060208201905061363f600083018461361b565b92915050565b61364e8161351f565b82525050565b60006020820190506136696000830184613645565b92915050565b600060208284031215613685576136846134bc565b5b60006136938482850161350a565b91505092915050565b6000806000606084860312156136b5576136b46134bc565b5b60006136c38682870161350a565b93505060206136d48682870161350a565b92505060406136e586828701613540565b9150509250925092565b600061ffff82169050919050565b613706816136ef565b82525050565b600060208201905061372160008301846136fd565b92915050565b600060ff82169050919050565b61373d81613727565b82525050565b60006020820190506137586000830184613734565b92915050565b613767816136ef565b811461377257600080fd5b50565b6000813590506137848161375e565b92915050565b6000602082840312156137a05761379f6134bc565b5b60006137ae84828501613775565b91505092915050565b6137c0816134e1565b82525050565b60006020820190506137db60008301846137b7565b92915050565b6000602082840312156137f7576137f66134bc565b5b600061380584828501613540565b91505092915050565b61381781613595565b811461382257600080fd5b50565b6000813590506138348161380e565b92915050565b60008060408385031215613851576138506134bc565b5b600061385f8582860161350a565b925050602061387085828601613825565b9150509250929050565b60008060408385031215613891576138906134bc565b5b600061389f8582860161350a565b92505060206138b08582860161350a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061390157607f821691505b602082108103613914576139136138ba565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613950602083613415565b915061395b8261391a565b602082019050919050565b6000602082019050818103600083015261397f81613943565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e2602483613415565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a74602883613415565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae48261351f565b9150613aef8361351f565b9250828201905080821115613b0757613b06613aaa565b5b92915050565b7f4d6178206275792066656573206c696d69742020697320302500000000000000600082015250565b6000613b43601983613415565b9150613b4e82613b0d565b602082019050919050565b60006020820190508181036000830152613b7281613b36565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd5602283613415565b9150613be082613b79565b604082019050919050565b60006020820190508181036000830152613c0481613bc8565b9050919050565b6000613c168261351f565b9150613c218361351f565b9250828202613c2f8161351f565b91508282048414831517613c4657613c45613aaa565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ccf604883613415565b9150613cda82613c4d565b606082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d61602583613415565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df3603183613415565b9150613dfe82613d97565b604082019050919050565b60006020820190508181036000830152613e2281613de6565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e85602a83613415565b9150613e9082613e29565b604082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b600081519050613eca816134f3565b92915050565b600060208284031215613ee657613ee56134bc565b5b6000613ef484828501613ebb565b91505092915050565b6000604082019050613f1260008301856137b7565b613f1f60208301846137b7565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320302500000000000000600082015250565b6000613f5c601983613415565b9150613f6782613f26565b602082019050919050565b60006020820190508181036000830152613f8b81613f4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fee602683613415565b9150613ff982613f92565b604082019050919050565b6000602082019050818103600083015261401d81613fe1565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b600061405a600783613415565b915061406582614024565b602082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b60008151905061409f81613529565b92915050565b6000602082840312156140bb576140ba6134bc565b5b60006140c984828501614090565b91505092915050565b60006040820190506140e760008301856137b7565b6140f46020830184613645565b9392505050565b60008151905061410a8161380e565b92915050565b600060208284031215614126576141256134bc565b5b6000614134848285016140fb565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614199602483613415565b91506141a48261413d565b604082019050919050565b600060208201905081810360008301526141c88161418c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422b602283613415565b9150614236826141cf565b604082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bd602583613415565b91506142c882614261565b604082019050919050565b600060208201905081810360008301526142ec816142b0565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434f602383613415565b915061435a826142f3565b604082019050919050565b6000602082019050818103600083015261437e81614342565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143bb601783613415565b91506143c682614385565b602082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444d602283613415565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144df602183613415565b91506144ea82614483565b604082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b600061454b602083613415565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145dd603f83613415565b91506145e882614581565b604082019050919050565b6000602082019050818103600083015261460c816145d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061466f602583613415565b915061467a82614613565b604082019050919050565b6000602082019050818103600083015261469e81614662565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614701602383613415565b915061470c826146a5565b604082019050919050565b60006020820190508181036000830152614730816146f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614793602683613415565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b600081905092915050565b50565b60006147e46000836147c9565b91506147ef826147d4565b600082019050919050565b6000614805826147d7565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614845601283613415565b91506148508261480f565b602082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b58261351f565b91506148c08361351f565b9250826148d0576148cf61487b565b5b828204905092915050565b60006148e68261351f565b91506148f18361351f565b925082820390508181111561490957614908613aaa565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499261498d6149888461496d565b6135cb565b61351f565b9050919050565b6149a281614977565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149dd816134e1565b82525050565b60006149ef83836149d4565b60208301905092915050565b6000602082019050919050565b6000614a13826149a8565b614a1d81856149b3565b9350614a28836149c4565b8060005b83811015614a59578151614a4088826149e3565b9750614a4b836149fb565b925050600181019050614a2c565b5085935050505092915050565b600060a082019050614a7b6000830188613645565b614a886020830187614999565b8181036040830152614a9a8186614a08565b9050614aa960608301856137b7565b614ab66080830184613645565b969550505050505056fea26469706673582212206aecfb209d5ce1ccc88485a4ea483ebff7c7ebdce6c0d22a5e4b8bdc907d309764736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b604051610257919061349a565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613555565b610989565b60405161029491906135b0565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf919061362a565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613654565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366f565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369c565b610b06565b60405161035091906135b0565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370c565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613743565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613555565b610c21565b6040516103e391906135b0565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061378a565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370c565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c6565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366f565b610e21565b60405161049f91906135b0565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137e1565b610e77565b005b3480156104dd57600080fd5b506104e6610f56565b6040516104f39190613654565b60405180910390f35b34801561050857600080fd5b50610511610f5c565b60405161051e91906135b0565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366f565b610f6f565b60405161055b9190613654565b60405180910390f35b34801561057057600080fd5b50610579610fb7565b005b34801561058757600080fd5b506105a2600480360381019061059d919061383a565b61103f565b005b3480156105b057600080fd5b506105b9611116565b6040516105c69190613654565b60405180910390f35b3480156105db57600080fd5b506105e461111c565b005b3480156105f257600080fd5b506105fb6111b5565b60405161060891906137c6565b60405180910390f35b34801561061d57600080fd5b506106266111df565b604051610633919061349a565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061383a565b611271565b005b34801561067157600080fd5b5061068c60048036038101906106879190613555565b61138b565b60405161069991906135b0565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613555565b611476565b6040516106d691906135b0565b60405180910390f35b3480156106eb57600080fd5b506106f4611494565b6040516107019190613654565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137e1565b61149a565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366f565b611533565b60405161076791906135b0565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061383a565b611553565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366f565b61170a565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061387a565b611c54565b6040516107f69190613654565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061378a565b611cdb565b005b34801561083457600080fd5b5061083d611def565b60405161084a9190613654565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e1565b611df5565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366f565b611ed5565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137e1565b611fcc565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366f565b6120ab565b005b606060038054610906906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e9565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d61099661232b565b8484612333565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df61232b565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f8565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a8a565b60405180910390fd5b610bf285610bea61232b565b858403612333565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e61232b565b848460016000610c3c61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad9565b612333565b6001905092915050565b610cd561232b565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613966565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506000600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b59565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f61232b565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613966565b60405180910390fd5b6301312d008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613beb565b60405180910390fd5b670de0b6b3a764000081610f4d9190613c0b565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbf61232b565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613966565b60405180910390fd5b61103d6000612bca565b565b61104761232b565b73ffffffffffffffffffffffffffffffffffffffff166110656111b5565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613966565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b61112461232b565b73ffffffffffffffffffffffffffffffffffffffff166111426111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613966565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ee906138e9565b80601f016020809104026020016040519081016040528092919081815260200182805461121a906138e9565b80156112675780601f1061123c57610100808354040283529160200191611267565b820191906000526020600020905b81548152906001019060200180831161124a57829003601f168201915b5050505050905090565b61127961232b565b73ffffffffffffffffffffffffffffffffffffffff166112976111b5565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613966565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ce5565b60405180910390fd5b6113878282612c90565b5050565b6000806001600061139a61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613d77565b60405180910390fd5b61146b61146261232b565b85858403612333565b600191505092915050565b600061148a61148361232b565b84846124fc565b6001905092915050565b600d5481565b6114a261232b565b73ffffffffffffffffffffffffffffffffffffffff166114c06111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613966565b60405180910390fd5b670de0b6b3a76400008161152a9190613c0b565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155b61232b565b73ffffffffffffffffffffffffffffffffffffffff166115796111b5565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613966565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613e09565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fe91906135b0565b60405180910390a25050565b61171261232b565b73ffffffffffffffffffffffffffffffffffffffff166117306111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613966565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613e9b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ea9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190613ed0565b6040518363ffffffff1660e01b81526004016119b4929190613efd565b602060405180830381865afa1580156119d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f59190613ed0565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613ed0565b6040518363ffffffff1660e01b8152600401611b86929190613efd565b6020604051808303816000875af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc99190613ed0565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c50565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce361232b565b73ffffffffffffffffffffffffffffffffffffffff16611d016111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613966565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506000600e60029054906101000a900461ffff1661ffff161115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613f72565b60405180910390fd5b50565b600a5481565b611dfd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611e1b6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613966565b60405180910390fd5b6305f5e100811015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613beb565b60405180910390fd5b670de0b6b3a764000081611ecc9190613c0b565b600c8190555050565b611edd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614004565b60405180910390fd5b611fc981612bca565b50565b611fd461232b565b73ffffffffffffffffffffffffffffffffffffffff16611ff26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613966565b60405180910390fd5b6298968081101561208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613beb565b60405180910390fd5b670de0b6b3a7640000816120a29190613c0b565b600b8190555050565b6120b361232b565b73ffffffffffffffffffffffffffffffffffffffff166120d16111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613966565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614070565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221c576121d16111b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612216573d6000803e3d6000fd5b50612328565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225c91906137c6565b602060405180830381865afa158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d91906140a5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c36111b5565b836040518363ffffffff1660e01b81526004016122e19291906140d2565b6020604051808303816000875af1158015612300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123249190614110565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906141af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890614241565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ef9190613654565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190614365565b60405180910390fd5b600e60059054906101000a900460ff168061263e5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906143d1565b60405180910390fd5b600081036126965761269183836000612dc3565b612bc5565b60006126a130610f6f565b90506000600a548210159050600e60049054906101000a900460ff1680156126d65750600760149054906101000a900460ff16155b80156127305750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127395750805b1561274e57600082905061274c8161304c565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f55750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127ff57600090505b8015612bb6576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287557600e60029054906101000a900461ffff1661ffff1690506128e0565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128df57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129845750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6957601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2557600c54851115612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614463565b60405180910390fd5b612abe565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abd57600b54851115612abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab3906144f5565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6857600d5485612b1c88610f6f565b612b269190613ad9565b1115612b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5e90614561565b60405180910390fd5b5b5b6000612b916064612b83848961317b90919063ffffffff16565b61319190919063ffffffff16565b9050612ba681876131a790919063ffffffff16565b9550612bb3883083612dc3565b50505b612bc1868686612dc3565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d19906145f3565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2990614685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9890614717565b60405180910390fd5b612eac8383836131bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906147a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc59190613ad9565b92505081905550600082111561303b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130329190613654565b60405180910390a35b6130468484846131c2565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613075826131c7565b600061308a82476131a790919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d4906147fa565b60006040518083038185875af1925050503d8060008114613111576040519150601f19603f3d011682016040523d82523d6000602084013e613116565b606091505b505090508061315a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131519061485b565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131899190613c0b565b905092915050565b6000818361319f91906148aa565b905092915050565b600081836131b591906148db565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e4576131e361490f565b5b6040519080825280602002602001820160405280156132125781602001602082028036833780820191505090505b509050308160008151811061322a5761322961493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f59190613ed0565b816001815181106133095761330861493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337030600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612333565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d4959493929190614a66565b600060405180830381600087803b1580156133ee57600080fd5b505af1158015613402573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613444578082015181840152602081019050613429565b60008484015250505050565b6000601f19601f8301169050919050565b600061346c8261340a565b6134768185613415565b9350613486818560208601613426565b61348f81613450565b840191505092915050565b600060208201905081810360008301526134b48184613461565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ec826134c1565b9050919050565b6134fc816134e1565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b6000819050919050565b6135328161351f565b811461353d57600080fd5b50565b60008135905061354f81613529565b92915050565b6000806040838503121561356c5761356b6134bc565b5b600061357a8582860161350a565b925050602061358b85828601613540565b9150509250929050565b60008115159050919050565b6135aa81613595565b82525050565b60006020820190506135c560008301846135a1565b92915050565b6000819050919050565b60006135f06135eb6135e6846134c1565b6135cb565b6134c1565b9050919050565b6000613602826135d5565b9050919050565b6000613614826135f7565b9050919050565b61362481613609565b82525050565b600060208201905061363f600083018461361b565b92915050565b61364e8161351f565b82525050565b60006020820190506136696000830184613645565b92915050565b600060208284031215613685576136846134bc565b5b60006136938482850161350a565b91505092915050565b6000806000606084860312156136b5576136b46134bc565b5b60006136c38682870161350a565b93505060206136d48682870161350a565b92505060406136e586828701613540565b9150509250925092565b600061ffff82169050919050565b613706816136ef565b82525050565b600060208201905061372160008301846136fd565b92915050565b600060ff82169050919050565b61373d81613727565b82525050565b60006020820190506137586000830184613734565b92915050565b613767816136ef565b811461377257600080fd5b50565b6000813590506137848161375e565b92915050565b6000602082840312156137a05761379f6134bc565b5b60006137ae84828501613775565b91505092915050565b6137c0816134e1565b82525050565b60006020820190506137db60008301846137b7565b92915050565b6000602082840312156137f7576137f66134bc565b5b600061380584828501613540565b91505092915050565b61381781613595565b811461382257600080fd5b50565b6000813590506138348161380e565b92915050565b60008060408385031215613851576138506134bc565b5b600061385f8582860161350a565b925050602061387085828601613825565b9150509250929050565b60008060408385031215613891576138906134bc565b5b600061389f8582860161350a565b92505060206138b08582860161350a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061390157607f821691505b602082108103613914576139136138ba565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613950602083613415565b915061395b8261391a565b602082019050919050565b6000602082019050818103600083015261397f81613943565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e2602483613415565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a74602883613415565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae48261351f565b9150613aef8361351f565b9250828201905080821115613b0757613b06613aaa565b5b92915050565b7f4d6178206275792066656573206c696d69742020697320302500000000000000600082015250565b6000613b43601983613415565b9150613b4e82613b0d565b602082019050919050565b60006020820190508181036000830152613b7281613b36565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd5602283613415565b9150613be082613b79565b604082019050919050565b60006020820190508181036000830152613c0481613bc8565b9050919050565b6000613c168261351f565b9150613c218361351f565b9250828202613c2f8161351f565b91508282048414831517613c4657613c45613aaa565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ccf604883613415565b9150613cda82613c4d565b606082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d61602583613415565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df3603183613415565b9150613dfe82613d97565b604082019050919050565b60006020820190508181036000830152613e2281613de6565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e85602a83613415565b9150613e9082613e29565b604082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b600081519050613eca816134f3565b92915050565b600060208284031215613ee657613ee56134bc565b5b6000613ef484828501613ebb565b91505092915050565b6000604082019050613f1260008301856137b7565b613f1f60208301846137b7565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320302500000000000000600082015250565b6000613f5c601983613415565b9150613f6782613f26565b602082019050919050565b60006020820190508181036000830152613f8b81613f4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fee602683613415565b9150613ff982613f92565b604082019050919050565b6000602082019050818103600083015261401d81613fe1565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b600061405a600783613415565b915061406582614024565b602082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b60008151905061409f81613529565b92915050565b6000602082840312156140bb576140ba6134bc565b5b60006140c984828501614090565b91505092915050565b60006040820190506140e760008301856137b7565b6140f46020830184613645565b9392505050565b60008151905061410a8161380e565b92915050565b600060208284031215614126576141256134bc565b5b6000614134848285016140fb565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614199602483613415565b91506141a48261413d565b604082019050919050565b600060208201905081810360008301526141c88161418c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422b602283613415565b9150614236826141cf565b604082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bd602583613415565b91506142c882614261565b604082019050919050565b600060208201905081810360008301526142ec816142b0565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434f602383613415565b915061435a826142f3565b604082019050919050565b6000602082019050818103600083015261437e81614342565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143bb601783613415565b91506143c682614385565b602082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444d602283613415565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144df602183613415565b91506144ea82614483565b604082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b600061454b602083613415565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145dd603f83613415565b91506145e882614581565b604082019050919050565b6000602082019050818103600083015261460c816145d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061466f602583613415565b915061467a82614613565b604082019050919050565b6000602082019050818103600083015261469e81614662565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614701602383613415565b915061470c826146a5565b604082019050919050565b60006020820190508181036000830152614730816146f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614793602683613415565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b600081905092915050565b50565b60006147e46000836147c9565b91506147ef826147d4565b600082019050919050565b6000614805826147d7565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614845601283613415565b91506148508261480f565b602082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b58261351f565b91506148c08361351f565b9250826148d0576148cf61487b565b5b828204905092915050565b60006148e68261351f565b91506148f18361351f565b925082820390508181111561490957614908613aaa565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499261498d6149888461496d565b6135cb565b61351f565b9050919050565b6149a281614977565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149dd816134e1565b82525050565b60006149ef83836149d4565b60208301905092915050565b6000602082019050919050565b6000614a13826149a8565b614a1d81856149b3565b9350614a28836149c4565b8060005b83811015614a59578151614a4088826149e3565b9750614a4b836149fb565b925050600181019050614a2c565b5085935050505092915050565b600060a082019050614a7b6000830188613645565b614a886020830187614999565b8181036040830152614a9a8186614a08565b9050614aa960608301856137b7565b614ab66080830184613645565b969550505050505056fea26469706673582212206aecfb209d5ce1ccc88485a4ea483ebff7c7ebdce6c0d22a5e4b8bdc907d309764736f6c63430008120033

Deployed Bytecode Sourcemap

34695:10277:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24639:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26806:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34770:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25759:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40480:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27457:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35045:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25601:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28358:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39781:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35018:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34818:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40308:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40757:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35237:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35492:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25930:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18060:103;;;;;;;;;;;;;:::i;:::-;;38811:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35150:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38979:95;;;;;;;;;;;;;:::i;:::-;;17409:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24858:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39082:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29076:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26270:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35325:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41496:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35798:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38046:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37409:629;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26508:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40032:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35084:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41248:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18318:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41004:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38389:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24639:100;24693:13;24726:5;24719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24639:100;:::o;26806:169::-;26889:4;26906:39;26915:12;:10;:12::i;:::-;26929:7;26938:6;26906:8;:39::i;:::-;26963:4;26956:11;;26806:169;;;;:::o;34770:41::-;;;;;;;;;;;;;:::o;25759:108::-;25820:7;25847:12;;25840:19;;25759:108;:::o;40480:189::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40577:1:::1;40556:23;;:9;:23;;::::0;40547:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40651:9;40631;;:30;;;;;;;;;;;;;;;;;;40480:189:::0;:::o;27457:492::-;27597:4;27614:36;27624:6;27632:9;27643:6;27614:9;:36::i;:::-;27663:24;27690:11;:19;27702:6;27690:19;;;;;;;;;;;;;;;:33;27710:12;:10;:12::i;:::-;27690:33;;;;;;;;;;;;;;;;27663:60;;27762:6;27742:16;:26;;27734:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;27849:57;27858:6;27866:12;:10;:12::i;:::-;27899:6;27880:16;:25;27849:8;:57::i;:::-;27937:4;27930:11;;;27457:492;;;;;:::o;35045:22::-;;;;;;;;;;;;;;;;;;:::o;25601:93::-;25659:5;25684:2;25677:9;;25601:93;:::o;28358:215::-;28446:4;28463:80;28472:12;:10;:12::i;:::-;28486:7;28532:10;28495:11;:25;28507:12;:10;:12::i;:::-;28495:25;;;;;;;;;;;;;;;:34;28521:7;28495:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28463:8;:80::i;:::-;28561:4;28554:11;;28358:215;;;;:::o;39781:238::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39892:9:::1;39876:6;:13;;;:25;;;;;;;;;;;;;;;;;;39927:9;39913:11;;:23;;;;;;;;;;;;;;;;;;39970:1;39955:11;;;;;;;;;;;:16;;;;39947:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39781:238:::0;:::o;35018:20::-;;;;;;;;;;;;;;;;;;:::o;34818:29::-;;;;;;;;;;;;;:::o;40308:126::-;40374:4;40398:19;:28;40418:7;40398:28;;;;;;;;;;;;;;;;;;;;;;;;;40391:35;;40308:126;;;:::o;40757:184::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40842:8:::1;40833:6;:17;40825:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40927:6;40918;:15;;;;:::i;:::-;40900;:33;;;;40757:184:::0;:::o;35237:49::-;;;;:::o;35492:23::-;;;;;;;;;;;;;:::o;25930:127::-;26004:7;26031:9;:18;26041:7;26031:18;;;;;;;;;;;;;;;;26024:25;;25930:127;;;:::o;18060:103::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18125:30:::1;18152:1;18125:18;:30::i;:::-;18060:103::o:0;38811:159::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38954:8:::1;38922:20;:29;38943:7;38922:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;38811:159:::0;;:::o;35150:48::-;;;;:::o;38979:95::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39053:4:::1;39034:16;;:23;;;;;;;;;;;;;;;;;;38979:95::o:0;17409:87::-;17455:7;17482:6;;;;;;;;;;;17475:13;;17409:87;:::o;24858:104::-;24914:13;24947:7;24940:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24858:104;:::o;39082:319::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39226:13:::1;;;;;;;;;;;39218:21;;:4;:21;;::::0;39196:143:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39352:41;39381:4;39387:5;39352:28;:41::i;:::-;39082:319:::0;;:::o;29076:413::-;29169:4;29186:24;29213:11;:25;29225:12;:10;:12::i;:::-;29213:25;;;;;;;;;;;;;;;:34;29239:7;29213:34;;;;;;;;;;;;;;;;29186:61;;29286:15;29266:16;:35;;29258:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29379:67;29388:12;:10;:12::i;:::-;29402:7;29430:15;29411:16;:34;29379:8;:67::i;:::-;29477:4;29470:11;;;29076:413;;;;:::o;26270:175::-;26356:4;26373:42;26383:12;:10;:12::i;:::-;26397:9;26408:6;26373:9;:42::i;:::-;26433:4;26426:11;;26270:175;;;;:::o;35325:51::-;;;;:::o;41496:121::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41603:6:::1;41594;:15;;;;:::i;:::-;41572:18;:37;;;;41496:121:::0;:::o;35798:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38046:334::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38185:8:::1;38153:40;;:19;:28;38173:7;38153:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;38131:139:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38312:8;38281:19;:28;38301:7;38281:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38354:7;38338:34;;;38363:8;38338:34;;;;;;:::i;:::-;;;;;;;;38046:334:::0;;:::o;37409:629::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37507:15:::1;;;;;;;;;;;37485:38;;:10;:38;;::::0;37477:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37622:10;37585:15;;:48;;;;;;;;;;;;;;;;;;37645:16;37695:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37677:52;;;37738:4;37758:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37677:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37645:136;;37816:1;37796:22;;:8;:22;;::::0;37792:239:::1;;37880:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37862:55;;;37926:4;37947:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37862:108;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37833:13;;:137;;;;;;;;;;;;;;;;;;37792:239;;;38011:8;37995:13;;:24;;;;;;;;;;;;;;;;;;37792:239;37470:568;37409:629:::0;:::o;26508:151::-;26597:7;26624:11;:18;26636:5;26624:18;;;;;;;;;;;;;;;:27;26643:7;26624:27;;;;;;;;;;;;;;;;26617:34;;26508:151;;;;:::o;40032:244::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40145:10:::1;40128:7;:14;;;:27;;;;;;;;;;;;;;;;;;40181:10;40166:12;;:25;;;;;;;;;;;;;;;;;;40227:1;40211:12;;;;;;;;;;;:17;;;;40202:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;40032:244:::0;:::o;35084:54::-;;;;:::o;41248:188::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41338:9:::1;41328:6;:19;;41320:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41422:6;41413;:15;;;;:::i;:::-;41397:13;:31;;;;41248:188:::0;:::o;18318:201::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18427:1:::1;18407:22;;:8;:22;;::::0;18399:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18483:28;18502:8;18483:18;:28::i;:::-;18318:201:::0;:::o;41004:183::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41091:8:::1;41081:6;:18;;41073:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41173:6;41164;:15;;;;:::i;:::-;41149:12;:30;;;;41004:183:::0;:::o;38389:414::-;17640:12;:10;:12::i;:::-;17629:23;;:7;:5;:7::i;:::-;:23;;;17621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38487:4:::1;38469:23;;:6;:23;;::::0;38461:43:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38537:3;38519:22;;:6;:22;;::::0;38515:124:::1;;38566:7;:5;:7::i;:::-;38558:25;;:48;38584:21;38558:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38621:7;;38515:124;38649:17;38676:6;38649:34;;38694:15;38712:10;:20;;;38741:4;38712:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38694:53;;38758:10;:19;;;38778:7;:5;:7::i;:::-;38787;38758:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38450:353;;17700:1;38389:414:::0;:::o;16113:98::-;16166:7;16193:10;16186:17;;16113:98;:::o;32790:380::-;32943:1;32926:19;;:5;:19;;;32918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33024:1;33005:21;;:7;:21;;;32997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33108:6;33078:11;:18;33090:5;33078:18;;;;;;;;;;;;;;;:27;33097:7;33078:27;;;;;;;;;;;;;;;:36;;;;33146:7;33130:32;;33139:5;33130:32;;;33155:6;33130:32;;;;;;:::i;:::-;;;;;;;;32790:380;;;:::o;41625:2370::-;41773:1;41757:18;;:4;:18;;;41749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41850:1;41836:16;;:2;:16;;;41828:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41921:16;;;;;;;;;;;:45;;;;41941:19;:25;41961:4;41941:25;;;;;;;;;;;;;;;;;;;;;;;;;41921:45;41912:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;42044:1;42034:6;:11;42030:93;;42062:28;42078:4;42084:2;42088:1;42062:15;:28::i;:::-;42105:7;;42030:93;42135:28;42166:24;42184:4;42166:9;:24::i;:::-;42135:55;;42201:28;42269:18;;42232:20;:55;;42201:86;;42318:11;;;;;;;;;;;:37;;;;;42347:8;;;;;;;;;;;42346:9;42318:37;:75;;;;;42380:13;;;;;;;;;;;42372:21;;:4;:21;;;;42318:75;:115;;;;;42410:23;42318:115;42300:272;;;42474:18;42495:20;42474:41;;42530:28;42547:10;42530:16;:28::i;:::-;42445:127;42300:272;42584:12;42599:4;42584:19;;42705;:25;42725:4;42705:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42734:19;:23;42754:2;42734:23;;;;;;;;;;;;;;;;;;;;;;;;;42705:52;42701:100;;;42784:5;42774:15;;42701:100;42817:7;42813:1129;;;42841:12;42888:25;:29;42914:2;42888:29;;;;;;;;;;;;;;;;;;;;;;;;;42884:185;;;42945:12;;;;;;;;;;;42938:19;;;;42884:185;;;42983:25;:31;43009:4;42983:31;;;;;;;;;;;;;;;;;;;;;;;;;42979:90;;;43042:11;;;;;;;;;;;43035:18;;;;42979:90;42884:185;43090:20;:26;43111:4;43090:26;;;;;;;;;;;;;;;;;;;;;;;;;43089:27;:56;;;;;43121:20;:24;43142:2;43121:24;;;;;;;;;;;;;;;;;;;;;;;;;43120:25;43089:56;43085:675;;;43170:25;:29;43196:2;43170:29;;;;;;;;;;;;;;;;;;;;;;;;;43166:321;;;43242:13;;43232:6;:23;;43224:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43166:321;;;43324:25;:31;43350:4;43324:31;;;;;;;;;;;;;;;;;;;;;;;;;43320:167;;;43396:12;;43386:6;:22;;43378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43320:167;43166:321;43512:25;:29;43538:2;43512:29;;;;;;;;;;;;;;;;;;;;;;;;;43507:238;;43626:15;;43616:6;43600:13;43610:2;43600:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;43566:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;43507:238;43085:675;43776:17;43796:25;43817:3;43796:16;43807:4;43796:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;43776:45;;43845:21;43856:9;43845:6;:10;;:21;;;;:::i;:::-;43836:30;;43883:47;43899:4;43913;43920:9;43883:15;:47::i;:::-;42826:1116;;42813:1129;43954:33;43970:4;43976:2;43980:6;43954:15;:33::i;:::-;41738:2257;;;41625:2370;;;;:::o;18679:191::-;18753:16;18772:6;;;;;;;;;;;18753:25;;18798:8;18789:6;;:17;;;;;;;;;;;;;;;;;;18853:8;18822:40;;18843:8;18822:40;;;;;;;;;;;;18742:128;18679:191;:::o;39409:352::-;39549:5;39514:40;;:25;:31;39540:4;39514:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;39492:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;39690:5;39656:25;:31;39682:4;39656:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39747:5;39713:40;;39741:4;39713:40;;;;;;;;;;;;39409:352;;:::o;29979:763::-;30137:1;30119:20;;:6;:20;;;30111:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30221:1;30200:23;;:9;:23;;;30192:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30276:47;30297:6;30305:9;30316:6;30276:20;:47::i;:::-;30336:21;30360:9;:17;30370:6;30360:17;;;;;;;;;;;;;;;;30336:41;;30413:6;30396:13;:23;;30388:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30534:6;30518:13;:22;30498:9;:17;30508:6;30498:17;;;;;;;;;;;;;;;:42;;;;30586:6;30562:9;:20;30572:9;30562:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;30618:1;30609:6;:10;30605:71;;;30656:9;30639:35;;30648:6;30639:35;;;30667:6;30639:35;;;;;;:::i;:::-;;;;;;;;30605:71;30688:46;30708:6;30716:9;30727:6;30688:19;:46::i;:::-;30100:642;29979:763;;;:::o;44003:362::-;36188:4;36177:8;;:15;;;;;;;;;;;;;;;;;;44077:22:::1;44102:21;44077:46;;44134:24;44151:6;44134:16;:24::i;:::-;44169:18;44190:41;44216:14;44190:21;:25;;:41;;;;:::i;:::-;44169:62;;44254:7;44275:9;;;;;;;;;;;44267:23;;44298:10;44267:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44253:60;;;44331:2;44323:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;44066:299;;;36226:5:::0;36215:8;;:16;;;;;;;;;;;;;;;;;;44003:362;:::o;12007:98::-;12065:7;12096:1;12092;:5;;;;:::i;:::-;12085:12;;12007:98;;;;:::o;12406:::-;12464:7;12495:1;12491;:5;;;;:::i;:::-;12484:12;;12406:98;;;;:::o;11650:::-;11708:7;11739:1;11735;:5;;;;:::i;:::-;11728:12;;11650:98;;;;:::o;33770:125::-;;;;:::o;34499:124::-;;;;:::o;44378:591::-;44504:21;44542:1;44528:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44504:40;;44573:4;44555;44560:1;44555:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44599:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44589:4;44594:1;44589:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44634:62;44651:4;44666:15;;;;;;;;;;;44684:11;44634:8;:62::i;:::-;44735:15;;;;;;;;;;;:66;;;44816:11;44842:1;44886:4;44913;44933:15;44735:226;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44433:536;44378:591;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:329::-;4830:6;4879:2;4867:9;4858:7;4854:23;4850:32;4847:119;;;4885:79;;:::i;:::-;4847:119;5005:1;5030:53;5075:7;5066:6;5055:9;5051:22;5030:53;:::i;:::-;5020:63;;4976:117;4771:329;;;;:::o;5106:619::-;5183:6;5191;5199;5248:2;5236:9;5227:7;5223:23;5219:32;5216:119;;;5254:79;;:::i;:::-;5216:119;5374:1;5399:53;5444:7;5435:6;5424:9;5420:22;5399:53;:::i;:::-;5389:63;;5345:117;5501:2;5527:53;5572:7;5563:6;5552:9;5548:22;5527:53;:::i;:::-;5517:63;;5472:118;5629:2;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5600:118;5106:619;;;;;:::o;5731:89::-;5767:7;5807:6;5800:5;5796:18;5785:29;;5731:89;;;:::o;5826:115::-;5911:23;5928:5;5911:23;:::i;:::-;5906:3;5899:36;5826:115;;:::o;5947:218::-;6038:4;6076:2;6065:9;6061:18;6053:26;;6089:69;6155:1;6144:9;6140:17;6131:6;6089:69;:::i;:::-;5947:218;;;;:::o;6171:86::-;6206:7;6246:4;6239:5;6235:16;6224:27;;6171:86;;;:::o;6263:112::-;6346:22;6362:5;6346:22;:::i;:::-;6341:3;6334:35;6263:112;;:::o;6381:214::-;6470:4;6508:2;6497:9;6493:18;6485:26;;6521:67;6585:1;6574:9;6570:17;6561:6;6521:67;:::i;:::-;6381:214;;;;:::o;6601:120::-;6673:23;6690:5;6673:23;:::i;:::-;6666:5;6663:34;6653:62;;6711:1;6708;6701:12;6653:62;6601:120;:::o;6727:137::-;6772:5;6810:6;6797:20;6788:29;;6826:32;6852:5;6826:32;:::i;:::-;6727:137;;;;:::o;6870:327::-;6928:6;6977:2;6965:9;6956:7;6952:23;6948:32;6945:119;;;6983:79;;:::i;:::-;6945:119;7103:1;7128:52;7172:7;7163:6;7152:9;7148:22;7128:52;:::i;:::-;7118:62;;7074:116;6870:327;;;;:::o;7203:118::-;7290:24;7308:5;7290:24;:::i;:::-;7285:3;7278:37;7203:118;;:::o;7327:222::-;7420:4;7458:2;7447:9;7443:18;7435:26;;7471:71;7539:1;7528:9;7524:17;7515:6;7471:71;:::i;:::-;7327:222;;;;:::o;7555:329::-;7614:6;7663:2;7651:9;7642:7;7638:23;7634:32;7631:119;;;7669:79;;:::i;:::-;7631:119;7789:1;7814:53;7859:7;7850:6;7839:9;7835:22;7814:53;:::i;:::-;7804:63;;7760:117;7555:329;;;;:::o;7890:116::-;7960:21;7975:5;7960:21;:::i;:::-;7953:5;7950:32;7940:60;;7996:1;7993;7986:12;7940:60;7890:116;:::o;8012:133::-;8055:5;8093:6;8080:20;8071:29;;8109:30;8133:5;8109:30;:::i;:::-;8012:133;;;;:::o;8151:468::-;8216:6;8224;8273:2;8261:9;8252:7;8248:23;8244:32;8241:119;;;8279:79;;:::i;:::-;8241:119;8399:1;8424:53;8469:7;8460:6;8449:9;8445:22;8424:53;:::i;:::-;8414:63;;8370:117;8526:2;8552:50;8594:7;8585:6;8574:9;8570:22;8552:50;:::i;:::-;8542:60;;8497:115;8151:468;;;;;:::o;8625:474::-;8693:6;8701;8750:2;8738:9;8729:7;8725:23;8721:32;8718:119;;;8756:79;;:::i;:::-;8718:119;8876:1;8901:53;8946:7;8937:6;8926:9;8922:22;8901:53;:::i;:::-;8891:63;;8847:117;9003:2;9029:53;9074:7;9065:6;9054:9;9050:22;9029:53;:::i;:::-;9019:63;;8974:118;8625:474;;;;;:::o;9105:180::-;9153:77;9150:1;9143:88;9250:4;9247:1;9240:15;9274:4;9271:1;9264:15;9291:320;9335:6;9372:1;9366:4;9362:12;9352:22;;9419:1;9413:4;9409:12;9440:18;9430:81;;9496:4;9488:6;9484:17;9474:27;;9430:81;9558:2;9550:6;9547:14;9527:18;9524:38;9521:84;;9577:18;;:::i;:::-;9521:84;9342:269;9291:320;;;:::o;9617:182::-;9757:34;9753:1;9745:6;9741:14;9734:58;9617:182;:::o;9805:366::-;9947:3;9968:67;10032:2;10027:3;9968:67;:::i;:::-;9961:74;;10044:93;10133:3;10044:93;:::i;:::-;10162:2;10157:3;10153:12;10146:19;;9805:366;;;:::o;10177:419::-;10343:4;10381:2;10370:9;10366:18;10358:26;;10430:9;10424:4;10420:20;10416:1;10405:9;10401:17;10394:47;10458:131;10584:4;10458:131;:::i;:::-;10450:139;;10177:419;;;:::o;10602:223::-;10742:34;10738:1;10730:6;10726:14;10719:58;10811:6;10806:2;10798:6;10794:15;10787:31;10602:223;:::o;10831:366::-;10973:3;10994:67;11058:2;11053:3;10994:67;:::i;:::-;10987:74;;11070:93;11159:3;11070:93;:::i;:::-;11188:2;11183:3;11179:12;11172:19;;10831:366;;;:::o;11203:419::-;11369:4;11407:2;11396:9;11392:18;11384:26;;11456:9;11450:4;11446:20;11442:1;11431:9;11427:17;11420:47;11484:131;11610:4;11484:131;:::i;:::-;11476:139;;11203:419;;;:::o;11628:227::-;11768:34;11764:1;11756:6;11752:14;11745:58;11837:10;11832:2;11824:6;11820:15;11813:35;11628:227;:::o;11861:366::-;12003:3;12024:67;12088:2;12083:3;12024:67;:::i;:::-;12017:74;;12100:93;12189:3;12100:93;:::i;:::-;12218:2;12213:3;12209:12;12202:19;;11861:366;;;:::o;12233:419::-;12399:4;12437:2;12426:9;12422:18;12414:26;;12486:9;12480:4;12476:20;12472:1;12461:9;12457:17;12450:47;12514:131;12640:4;12514:131;:::i;:::-;12506:139;;12233:419;;;:::o;12658:180::-;12706:77;12703:1;12696:88;12803:4;12800:1;12793:15;12827:4;12824:1;12817:15;12844:191;12884:3;12903:20;12921:1;12903:20;:::i;:::-;12898:25;;12937:20;12955:1;12937:20;:::i;:::-;12932:25;;12980:1;12977;12973:9;12966:16;;13001:3;12998:1;12995:10;12992:36;;;13008:18;;:::i;:::-;12992:36;12844:191;;;;:::o;13041:175::-;13181:27;13177:1;13169:6;13165:14;13158:51;13041:175;:::o;13222:366::-;13364:3;13385:67;13449:2;13444:3;13385:67;:::i;:::-;13378:74;;13461:93;13550:3;13461:93;:::i;:::-;13579:2;13574:3;13570:12;13563:19;;13222:366;;;:::o;13594:419::-;13760:4;13798:2;13787:9;13783:18;13775:26;;13847:9;13841:4;13837:20;13833:1;13822:9;13818:17;13811:47;13875:131;14001:4;13875:131;:::i;:::-;13867:139;;13594:419;;;:::o;14019:221::-;14159:34;14155:1;14147:6;14143:14;14136:58;14228:4;14223:2;14215:6;14211:15;14204:29;14019:221;:::o;14246:366::-;14388:3;14409:67;14473:2;14468:3;14409:67;:::i;:::-;14402:74;;14485:93;14574:3;14485:93;:::i;:::-;14603:2;14598:3;14594:12;14587:19;;14246:366;;;:::o;14618:419::-;14784:4;14822:2;14811:9;14807:18;14799:26;;14871:9;14865:4;14861:20;14857:1;14846:9;14842:17;14835:47;14899:131;15025:4;14899:131;:::i;:::-;14891:139;;14618:419;;;:::o;15043:410::-;15083:7;15106:20;15124:1;15106:20;:::i;:::-;15101:25;;15140:20;15158:1;15140:20;:::i;:::-;15135:25;;15195:1;15192;15188:9;15217:30;15235:11;15217:30;:::i;:::-;15206:41;;15396:1;15387:7;15383:15;15380:1;15377:22;15357:1;15350:9;15330:83;15307:139;;15426:18;;:::i;:::-;15307:139;15091:362;15043:410;;;;:::o;15459:296::-;15599:34;15595:1;15587:6;15583:14;15576:58;15668:34;15663:2;15655:6;15651:15;15644:59;15737:10;15732:2;15724:6;15720:15;15713:35;15459:296;:::o;15761:366::-;15903:3;15924:67;15988:2;15983:3;15924:67;:::i;:::-;15917:74;;16000:93;16089:3;16000:93;:::i;:::-;16118:2;16113:3;16109:12;16102:19;;15761:366;;;:::o;16133:419::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16386:9;16380:4;16376:20;16372:1;16361:9;16357:17;16350:47;16414:131;16540:4;16414:131;:::i;:::-;16406:139;;16133:419;;;:::o;16558:224::-;16698:34;16694:1;16686:6;16682:14;16675:58;16767:7;16762:2;16754:6;16750:15;16743:32;16558:224;:::o;16788:366::-;16930:3;16951:67;17015:2;17010:3;16951:67;:::i;:::-;16944:74;;17027:93;17116:3;17027:93;:::i;:::-;17145:2;17140:3;17136:12;17129:19;;16788:366;;;:::o;17160:419::-;17326:4;17364:2;17353:9;17349:18;17341:26;;17413:9;17407:4;17403:20;17399:1;17388:9;17384:17;17377:47;17441:131;17567:4;17441:131;:::i;:::-;17433:139;;17160:419;;;:::o;17585:236::-;17725:34;17721:1;17713:6;17709:14;17702:58;17794:19;17789:2;17781:6;17777:15;17770:44;17585:236;:::o;17827:366::-;17969:3;17990:67;18054:2;18049:3;17990:67;:::i;:::-;17983:74;;18066:93;18155:3;18066:93;:::i;:::-;18184:2;18179:3;18175:12;18168:19;;17827:366;;;:::o;18199:419::-;18365:4;18403:2;18392:9;18388:18;18380:26;;18452:9;18446:4;18442:20;18438:1;18427:9;18423:17;18416:47;18480:131;18606:4;18480:131;:::i;:::-;18472:139;;18199:419;;;:::o;18624:229::-;18764:34;18760:1;18752:6;18748:14;18741:58;18833:12;18828:2;18820:6;18816:15;18809:37;18624:229;:::o;18859:366::-;19001:3;19022:67;19086:2;19081:3;19022:67;:::i;:::-;19015:74;;19098:93;19187:3;19098:93;:::i;:::-;19216:2;19211:3;19207:12;19200:19;;18859:366;;;:::o;19231:419::-;19397:4;19435:2;19424:9;19420:18;19412:26;;19484:9;19478:4;19474:20;19470:1;19459:9;19455:17;19448:47;19512:131;19638:4;19512:131;:::i;:::-;19504:139;;19231:419;;;:::o;19656:143::-;19713:5;19744:6;19738:13;19729:22;;19760:33;19787:5;19760:33;:::i;:::-;19656:143;;;;:::o;19805:351::-;19875:6;19924:2;19912:9;19903:7;19899:23;19895:32;19892:119;;;19930:79;;:::i;:::-;19892:119;20050:1;20075:64;20131:7;20122:6;20111:9;20107:22;20075:64;:::i;:::-;20065:74;;20021:128;19805:351;;;;:::o;20162:332::-;20283:4;20321:2;20310:9;20306:18;20298:26;;20334:71;20402:1;20391:9;20387:17;20378:6;20334:71;:::i;:::-;20415:72;20483:2;20472:9;20468:18;20459:6;20415:72;:::i;:::-;20162:332;;;;;:::o;20500:175::-;20640:27;20636:1;20628:6;20624:14;20617:51;20500:175;:::o;20681:366::-;20823:3;20844:67;20908:2;20903:3;20844:67;:::i;:::-;20837:74;;20920:93;21009:3;20920:93;:::i;:::-;21038:2;21033:3;21029:12;21022:19;;20681:366;;;:::o;21053:419::-;21219:4;21257:2;21246:9;21242:18;21234:26;;21306:9;21300:4;21296:20;21292:1;21281:9;21277:17;21270:47;21334:131;21460:4;21334:131;:::i;:::-;21326:139;;21053:419;;;:::o;21478:225::-;21618:34;21614:1;21606:6;21602:14;21595:58;21687:8;21682:2;21674:6;21670:15;21663:33;21478:225;:::o;21709:366::-;21851:3;21872:67;21936:2;21931:3;21872:67;:::i;:::-;21865:74;;21948:93;22037:3;21948:93;:::i;:::-;22066:2;22061:3;22057:12;22050:19;;21709:366;;;:::o;22081:419::-;22247:4;22285:2;22274:9;22270:18;22262:26;;22334:9;22328:4;22324:20;22320:1;22309:9;22305:17;22298:47;22362:131;22488:4;22362:131;:::i;:::-;22354:139;;22081:419;;;:::o;22506:157::-;22646:9;22642:1;22634:6;22630:14;22623:33;22506:157;:::o;22669:365::-;22811:3;22832:66;22896:1;22891:3;22832:66;:::i;:::-;22825:73;;22907:93;22996:3;22907:93;:::i;:::-;23025:2;23020:3;23016:12;23009:19;;22669:365;;;:::o;23040:419::-;23206:4;23244:2;23233:9;23229:18;23221:26;;23293:9;23287:4;23283:20;23279:1;23268:9;23264:17;23257:47;23321:131;23447:4;23321:131;:::i;:::-;23313:139;;23040:419;;;:::o;23465:143::-;23522:5;23553:6;23547:13;23538:22;;23569:33;23596:5;23569:33;:::i;:::-;23465:143;;;;:::o;23614:351::-;23684:6;23733:2;23721:9;23712:7;23708:23;23704:32;23701:119;;;23739:79;;:::i;:::-;23701:119;23859:1;23884:64;23940:7;23931:6;23920:9;23916:22;23884:64;:::i;:::-;23874:74;;23830:128;23614:351;;;;:::o;23971:332::-;24092:4;24130:2;24119:9;24115:18;24107:26;;24143:71;24211:1;24200:9;24196:17;24187:6;24143:71;:::i;:::-;24224:72;24292:2;24281:9;24277:18;24268:6;24224:72;:::i;:::-;23971:332;;;;;:::o;24309:137::-;24363:5;24394:6;24388:13;24379:22;;24410:30;24434:5;24410:30;:::i;:::-;24309:137;;;;:::o;24452:345::-;24519:6;24568:2;24556:9;24547:7;24543:23;24539:32;24536:119;;;24574:79;;:::i;:::-;24536:119;24694:1;24719:61;24772:7;24763:6;24752:9;24748:22;24719:61;:::i;:::-;24709:71;;24665:125;24452:345;;;;:::o;24803:223::-;24943:34;24939:1;24931:6;24927:14;24920:58;25012:6;25007:2;24999:6;24995:15;24988:31;24803:223;:::o;25032:366::-;25174:3;25195:67;25259:2;25254:3;25195:67;:::i;:::-;25188:74;;25271:93;25360:3;25271:93;:::i;:::-;25389:2;25384:3;25380:12;25373:19;;25032:366;;;:::o;25404:419::-;25570:4;25608:2;25597:9;25593:18;25585:26;;25657:9;25651:4;25647:20;25643:1;25632:9;25628:17;25621:47;25685:131;25811:4;25685:131;:::i;:::-;25677:139;;25404:419;;;:::o;25829:221::-;25969:34;25965:1;25957:6;25953:14;25946:58;26038:4;26033:2;26025:6;26021:15;26014:29;25829:221;:::o;26056:366::-;26198:3;26219:67;26283:2;26278:3;26219:67;:::i;:::-;26212:74;;26295:93;26384:3;26295:93;:::i;:::-;26413:2;26408:3;26404:12;26397:19;;26056:366;;;:::o;26428:419::-;26594:4;26632:2;26621:9;26617:18;26609:26;;26681:9;26675:4;26671:20;26667:1;26656:9;26652:17;26645:47;26709:131;26835:4;26709:131;:::i;:::-;26701:139;;26428:419;;;:::o;26853:224::-;26993:34;26989:1;26981:6;26977:14;26970:58;27062:7;27057:2;27049:6;27045:15;27038:32;26853:224;:::o;27083:366::-;27225:3;27246:67;27310:2;27305:3;27246:67;:::i;:::-;27239:74;;27322:93;27411:3;27322:93;:::i;:::-;27440:2;27435:3;27431:12;27424:19;;27083:366;;;:::o;27455:419::-;27621:4;27659:2;27648:9;27644:18;27636:26;;27708:9;27702:4;27698:20;27694:1;27683:9;27679:17;27672:47;27736:131;27862:4;27736:131;:::i;:::-;27728:139;;27455:419;;;:::o;27880:222::-;28020:34;28016:1;28008:6;28004:14;27997:58;28089:5;28084:2;28076:6;28072:15;28065:30;27880:222;:::o;28108:366::-;28250:3;28271:67;28335:2;28330:3;28271:67;:::i;:::-;28264:74;;28347:93;28436:3;28347:93;:::i;:::-;28465:2;28460:3;28456:12;28449:19;;28108:366;;;:::o;28480:419::-;28646:4;28684:2;28673:9;28669:18;28661:26;;28733:9;28727:4;28723:20;28719:1;28708:9;28704:17;28697:47;28761:131;28887:4;28761:131;:::i;:::-;28753:139;;28480:419;;;:::o;28905:173::-;29045:25;29041:1;29033:6;29029:14;29022:49;28905:173;:::o;29084:366::-;29226:3;29247:67;29311:2;29306:3;29247:67;:::i;:::-;29240:74;;29323:93;29412:3;29323:93;:::i;:::-;29441:2;29436:3;29432:12;29425:19;;29084:366;;;:::o;29456:419::-;29622:4;29660:2;29649:9;29645:18;29637:26;;29709:9;29703:4;29699:20;29695:1;29684:9;29680:17;29673:47;29737:131;29863:4;29737:131;:::i;:::-;29729:139;;29456:419;;;:::o;29881:221::-;30021:34;30017:1;30009:6;30005:14;29998:58;30090:4;30085:2;30077:6;30073:15;30066:29;29881:221;:::o;30108:366::-;30250:3;30271:67;30335:2;30330:3;30271:67;:::i;:::-;30264:74;;30347:93;30436:3;30347:93;:::i;:::-;30465:2;30460:3;30456:12;30449:19;;30108:366;;;:::o;30480:419::-;30646:4;30684:2;30673:9;30669:18;30661:26;;30733:9;30727:4;30723:20;30719:1;30708:9;30704:17;30697:47;30761:131;30887:4;30761:131;:::i;:::-;30753:139;;30480:419;;;:::o;30905:220::-;31045:34;31041:1;31033:6;31029:14;31022:58;31114:3;31109:2;31101:6;31097:15;31090:28;30905:220;:::o;31131:366::-;31273:3;31294:67;31358:2;31353:3;31294:67;:::i;:::-;31287:74;;31370:93;31459:3;31370:93;:::i;:::-;31488:2;31483:3;31479:12;31472:19;;31131:366;;;:::o;31503:419::-;31669:4;31707:2;31696:9;31692:18;31684:26;;31756:9;31750:4;31746:20;31742:1;31731:9;31727:17;31720:47;31784:131;31910:4;31784:131;:::i;:::-;31776:139;;31503:419;;;:::o;31928:182::-;32068:34;32064:1;32056:6;32052:14;32045:58;31928:182;:::o;32116:366::-;32258:3;32279:67;32343:2;32338:3;32279:67;:::i;:::-;32272:74;;32355:93;32444:3;32355:93;:::i;:::-;32473:2;32468:3;32464:12;32457:19;;32116:366;;;:::o;32488:419::-;32654:4;32692:2;32681:9;32677:18;32669:26;;32741:9;32735:4;32731:20;32727:1;32716:9;32712:17;32705:47;32769:131;32895:4;32769:131;:::i;:::-;32761:139;;32488:419;;;:::o;32913:250::-;33053:34;33049:1;33041:6;33037:14;33030:58;33122:33;33117:2;33109:6;33105:15;33098:58;32913:250;:::o;33169:366::-;33311:3;33332:67;33396:2;33391:3;33332:67;:::i;:::-;33325:74;;33408:93;33497:3;33408:93;:::i;:::-;33526:2;33521:3;33517:12;33510:19;;33169:366;;;:::o;33541:419::-;33707:4;33745:2;33734:9;33730:18;33722:26;;33794:9;33788:4;33784:20;33780:1;33769:9;33765:17;33758:47;33822:131;33948:4;33822:131;:::i;:::-;33814:139;;33541:419;;;:::o;33966:224::-;34106:34;34102:1;34094:6;34090:14;34083:58;34175:7;34170:2;34162:6;34158:15;34151:32;33966:224;:::o;34196:366::-;34338:3;34359:67;34423:2;34418:3;34359:67;:::i;:::-;34352:74;;34435:93;34524:3;34435:93;:::i;:::-;34553:2;34548:3;34544:12;34537:19;;34196:366;;;:::o;34568:419::-;34734:4;34772:2;34761:9;34757:18;34749:26;;34821:9;34815:4;34811:20;34807:1;34796:9;34792:17;34785:47;34849:131;34975:4;34849:131;:::i;:::-;34841:139;;34568:419;;;:::o;34993:222::-;35133:34;35129:1;35121:6;35117:14;35110:58;35202:5;35197:2;35189:6;35185:15;35178:30;34993:222;:::o;35221:366::-;35363:3;35384:67;35448:2;35443:3;35384:67;:::i;:::-;35377:74;;35460:93;35549:3;35460:93;:::i;:::-;35578:2;35573:3;35569:12;35562:19;;35221:366;;;:::o;35593:419::-;35759:4;35797:2;35786:9;35782:18;35774:26;;35846:9;35840:4;35836:20;35832:1;35821:9;35817:17;35810:47;35874:131;36000:4;35874:131;:::i;:::-;35866:139;;35593:419;;;:::o;36018:225::-;36158:34;36154:1;36146:6;36142:14;36135:58;36227:8;36222:2;36214:6;36210:15;36203:33;36018:225;:::o;36249:366::-;36391:3;36412:67;36476:2;36471:3;36412:67;:::i;:::-;36405:74;;36488:93;36577:3;36488:93;:::i;:::-;36606:2;36601:3;36597:12;36590:19;;36249:366;;;:::o;36621:419::-;36787:4;36825:2;36814:9;36810:18;36802:26;;36874:9;36868:4;36864:20;36860:1;36849:9;36845:17;36838:47;36902:131;37028:4;36902:131;:::i;:::-;36894:139;;36621:419;;;:::o;37046:147::-;37147:11;37184:3;37169:18;;37046:147;;;;:::o;37199:114::-;;:::o;37319:398::-;37478:3;37499:83;37580:1;37575:3;37499:83;:::i;:::-;37492:90;;37591:93;37680:3;37591:93;:::i;:::-;37709:1;37704:3;37700:11;37693:18;;37319:398;;;:::o;37723:379::-;37907:3;37929:147;38072:3;37929:147;:::i;:::-;37922:154;;38093:3;38086:10;;37723:379;;;:::o;38108:168::-;38248:20;38244:1;38236:6;38232:14;38225:44;38108:168;:::o;38282:366::-;38424:3;38445:67;38509:2;38504:3;38445:67;:::i;:::-;38438:74;;38521:93;38610:3;38521:93;:::i;:::-;38639:2;38634:3;38630:12;38623:19;;38282:366;;;:::o;38654:419::-;38820:4;38858:2;38847:9;38843:18;38835:26;;38907:9;38901:4;38897:20;38893:1;38882:9;38878:17;38871:47;38935:131;39061:4;38935:131;:::i;:::-;38927:139;;38654:419;;;:::o;39079:180::-;39127:77;39124:1;39117:88;39224:4;39221:1;39214:15;39248:4;39245:1;39238:15;39265:185;39305:1;39322:20;39340:1;39322:20;:::i;:::-;39317:25;;39356:20;39374:1;39356:20;:::i;:::-;39351:25;;39395:1;39385:35;;39400:18;;:::i;:::-;39385:35;39442:1;39439;39435:9;39430:14;;39265:185;;;;:::o;39456:194::-;39496:4;39516:20;39534:1;39516:20;:::i;:::-;39511:25;;39550:20;39568:1;39550:20;:::i;:::-;39545:25;;39594:1;39591;39587:9;39579:17;;39618:1;39612:4;39609:11;39606:37;;;39623:18;;:::i;:::-;39606:37;39456:194;;;;:::o;39656:180::-;39704:77;39701:1;39694:88;39801:4;39798:1;39791:15;39825:4;39822:1;39815:15;39842:180;39890:77;39887:1;39880:88;39987:4;39984:1;39977:15;40011:4;40008:1;40001:15;40028:85;40073:7;40102:5;40091:16;;40028:85;;;:::o;40119:158::-;40177:9;40210:61;40228:42;40237:32;40263:5;40237:32;:::i;:::-;40228:42;:::i;:::-;40210:61;:::i;:::-;40197:74;;40119:158;;;:::o;40283:147::-;40378:45;40417:5;40378:45;:::i;:::-;40373:3;40366:58;40283:147;;:::o;40436:114::-;40503:6;40537:5;40531:12;40521:22;;40436:114;;;:::o;40556:184::-;40655:11;40689:6;40684:3;40677:19;40729:4;40724:3;40720:14;40705:29;;40556:184;;;;:::o;40746:132::-;40813:4;40836:3;40828:11;;40866:4;40861:3;40857:14;40849:22;;40746:132;;;:::o;40884:108::-;40961:24;40979:5;40961:24;:::i;:::-;40956:3;40949:37;40884:108;;:::o;40998:179::-;41067:10;41088:46;41130:3;41122:6;41088:46;:::i;:::-;41166:4;41161:3;41157:14;41143:28;;40998:179;;;;:::o;41183:113::-;41253:4;41285;41280:3;41276:14;41268:22;;41183:113;;;:::o;41332:732::-;41451:3;41480:54;41528:5;41480:54;:::i;:::-;41550:86;41629:6;41624:3;41550:86;:::i;:::-;41543:93;;41660:56;41710:5;41660:56;:::i;:::-;41739:7;41770:1;41755:284;41780:6;41777:1;41774:13;41755:284;;;41856:6;41850:13;41883:63;41942:3;41927:13;41883:63;:::i;:::-;41876:70;;41969:60;42022:6;41969:60;:::i;:::-;41959:70;;41815:224;41802:1;41799;41795:9;41790:14;;41755:284;;;41759:14;42055:3;42048:10;;41456:608;;;41332:732;;;;:::o;42070:831::-;42333:4;42371:3;42360:9;42356:19;42348:27;;42385:71;42453:1;42442:9;42438:17;42429:6;42385:71;:::i;:::-;42466:80;42542:2;42531:9;42527:18;42518:6;42466:80;:::i;:::-;42593:9;42587:4;42583:20;42578:2;42567:9;42563:18;42556:48;42621:108;42724:4;42715:6;42621:108;:::i;:::-;42613:116;;42739:72;42807:2;42796:9;42792:18;42783:6;42739:72;:::i;:::-;42821:73;42889:3;42878:9;42874:19;42865:6;42821:73;:::i;:::-;42070:831;;;;;;;;:::o

Swarm Source

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