ETH Price: $3,474.13 (-1.24%)
Gas: 4 Gwei

Token

DIG (DIG)
 

Overview

Max Total Supply

1,000,000,000 DIG

Holders

123

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00000000007492273 DIG

Value
$0.00
0x66AC79734663bBEd2D2A5AE88b76B1E8d3Af578f
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:
DIG

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-22
*/

/** 

https://t.me/DIG_PORTAL

*/





// 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 DIG 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(0xA6caE61B73190Cb77565308f00584867E961B45A)); 
   
   
    

    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("DIG", "DIG") {
       
        buyFee.devFee = 15;
        totalBuyFee = 15; 

        
        sellFee.devFee = 35;
        totalSellFee = 35;

        

        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 <= 15,
         "Max buy fees limit  is 15%");
    }

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

                    

    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"}]

60806040526a108b2a2c28029094000000600a556a084595161401484a000000600b556a108b2a2c28029094000000600c556a108b2a2c28029094000000600d5573a6cae61b73190cb77565308f00584867e961b45a600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a257600080fd5b506040518060400160405280600381526020017f44494700000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4449470000000000000000000000000000000000000000000000000000000000815250816003908162000120919062000c68565b50806004908162000132919062000c68565b50505062000155620001496200046f60201b60201c565b6200047760201b60201c565b600f600860000160006101000a81548161ffff021916908361ffff160217905550600f600e60006101000a81548161ffff021916908361ffff1602179055506023600960000160006101000a81548161ffff021916908361ffff1602179055506023600e60026101000a81548161ffff021916908361ffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000db9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000db9565b6040518363ffffffff1660e01b81526004016200030d92919062000dfc565b6020604051808303816000875af11580156200032d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000353919062000db9565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ea8160016200053d60201b60201c565b6200040c620003fe6200067360201b60201c565b60016200069d60201b60201c565b6200041f3060016200069d60201b60201c565b6001600e60046101000a81548160ff021916908315150217905550620004676200044e6200067360201b60201c565b6b033b2e3c9fd0803ce80000006200086c60201b60201c565b505062001120565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620005d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c99062000eb0565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006ad6200046f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d36200067360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007239062000f22565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620007c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b89062000fba565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000860919062000ff9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062001066565b60405180910390fd5b620008f260008383620009e460201b60201c565b8060026000828254620009069190620010b7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200095d9190620010b7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c4919062001103565b60405180910390a3620009e060008383620009e960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7057607f821691505b60208210810362000a865762000a8562000a28565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab1565b62000afc868362000ab1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b4962000b4362000b3d8462000b14565b62000b1e565b62000b14565b9050919050565b6000819050919050565b62000b658362000b28565b62000b7d62000b748262000b50565b84845462000abe565b825550505050565b600090565b62000b9462000b85565b62000ba181848462000b5a565b505050565b5b8181101562000bc95762000bbd60008262000b8a565b60018101905062000ba7565b5050565b601f82111562000c185762000be28162000a8c565b62000bed8462000aa1565b8101602085101562000bfd578190505b62000c1562000c0c8562000aa1565b83018262000ba6565b50505b505050565b600082821c905092915050565b600062000c3d6000198460080262000c1d565b1980831691505092915050565b600062000c58838362000c2a565b9150826002028217905092915050565b62000c7382620009ee565b67ffffffffffffffff81111562000c8f5762000c8e620009f9565b5b62000c9b825462000a57565b62000ca882828562000bcd565b600060209050601f83116001811462000ce0576000841562000ccb578287015190505b62000cd7858262000c4a565b86555062000d47565b601f19841662000cf08662000a8c565b60005b8281101562000d1a5784890151825560018201915060208501945060208101905062000cf3565b8683101562000d3a578489015162000d36601f89168262000c2a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d818262000d54565b9050919050565b62000d938162000d74565b811462000d9f57600080fd5b50565b60008151905062000db38162000d88565b92915050565b60006020828403121562000dd25762000dd162000d4f565b5b600062000de28482850162000da2565b91505092915050565b62000df68162000d74565b82525050565b600060408201905062000e13600083018562000deb565b62000e22602083018462000deb565b9392505050565b600082825260208201905092915050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000e98603f8362000e29565b915062000ea58262000e3a565b604082019050919050565b6000602082019050818103600083015262000ecb8162000e89565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0a60208362000e29565b915062000f178262000ed2565b602082019050919050565b6000602082019050818103600083015262000f3d8162000efb565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000fa260318362000e29565b915062000faf8262000f44565b604082019050919050565b6000602082019050818103600083015262000fd58162000f93565b9050919050565b60008115159050919050565b62000ff38162000fdc565b82525050565b600060208201905062001010600083018462000fe8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200104e601f8362000e29565b91506200105b8262001016565b602082019050919050565b6000602082019050818103600083015262001081816200103f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010c48262000b14565b9150620010d18362000b14565b9250828201905080821115620010ec57620010eb62001088565b5b92915050565b620010fd8162000b14565b82525050565b60006020820190506200111a6000830184620010f2565b92915050565b614af680620011306000396000f3fe6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b604051610257919061349a565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613555565b610989565b60405161029491906135b0565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf919061362a565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613654565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366f565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369c565b610b06565b60405161035091906135b0565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370c565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613743565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613555565b610c21565b6040516103e391906135b0565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061378a565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370c565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c6565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366f565b610e21565b60405161049f91906135b0565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137e1565b610e77565b005b3480156104dd57600080fd5b506104e6610f56565b6040516104f39190613654565b60405180910390f35b34801561050857600080fd5b50610511610f5c565b60405161051e91906135b0565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366f565b610f6f565b60405161055b9190613654565b60405180910390f35b34801561057057600080fd5b50610579610fb7565b005b34801561058757600080fd5b506105a2600480360381019061059d919061383a565b61103f565b005b3480156105b057600080fd5b506105b9611116565b6040516105c69190613654565b60405180910390f35b3480156105db57600080fd5b506105e461111c565b005b3480156105f257600080fd5b506105fb6111b5565b60405161060891906137c6565b60405180910390f35b34801561061d57600080fd5b506106266111df565b604051610633919061349a565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061383a565b611271565b005b34801561067157600080fd5b5061068c60048036038101906106879190613555565b61138b565b60405161069991906135b0565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613555565b611476565b6040516106d691906135b0565b60405180910390f35b3480156106eb57600080fd5b506106f4611494565b6040516107019190613654565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137e1565b61149a565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366f565b611533565b60405161076791906135b0565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061383a565b611553565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366f565b61170a565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061387a565b611c54565b6040516107f69190613654565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061378a565b611cdb565b005b34801561083457600080fd5b5061083d611def565b60405161084a9190613654565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e1565b611df5565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366f565b611ed5565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137e1565b611fcc565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366f565b6120ab565b005b606060038054610906906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e9565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d61099661232b565b8484612333565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df61232b565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f8565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a8a565b60405180910390fd5b610bf285610bea61232b565b858403612333565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e61232b565b848460016000610c3c61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad9565b612333565b6001905092915050565b610cd561232b565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613966565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff160217905550600f600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b59565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f61232b565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613966565b60405180910390fd5b6301312d008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613beb565b60405180910390fd5b670de0b6b3a764000081610f4d9190613c0b565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbf61232b565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613966565b60405180910390fd5b61103d6000612bca565b565b61104761232b565b73ffffffffffffffffffffffffffffffffffffffff166110656111b5565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613966565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b61112461232b565b73ffffffffffffffffffffffffffffffffffffffff166111426111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613966565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ee906138e9565b80601f016020809104026020016040519081016040528092919081815260200182805461121a906138e9565b80156112675780601f1061123c57610100808354040283529160200191611267565b820191906000526020600020905b81548152906001019060200180831161124a57829003601f168201915b5050505050905090565b61127961232b565b73ffffffffffffffffffffffffffffffffffffffff166112976111b5565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613966565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ce5565b60405180910390fd5b6113878282612c90565b5050565b6000806001600061139a61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613d77565b60405180910390fd5b61146b61146261232b565b85858403612333565b600191505092915050565b600061148a61148361232b565b84846124fc565b6001905092915050565b600d5481565b6114a261232b565b73ffffffffffffffffffffffffffffffffffffffff166114c06111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613966565b60405180910390fd5b670de0b6b3a76400008161152a9190613c0b565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155b61232b565b73ffffffffffffffffffffffffffffffffffffffff166115796111b5565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613966565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613e09565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fe91906135b0565b60405180910390a25050565b61171261232b565b73ffffffffffffffffffffffffffffffffffffffff166117306111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613966565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613e9b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ea9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190613ed0565b6040518363ffffffff1660e01b81526004016119b4929190613efd565b602060405180830381865afa1580156119d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f59190613ed0565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613ed0565b6040518363ffffffff1660e01b8152600401611b86929190613efd565b6020604051808303816000875af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc99190613ed0565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c50565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce361232b565b73ffffffffffffffffffffffffffffffffffffffff16611d016111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613966565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506023600e60029054906101000a900461ffff1661ffff161115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613f72565b60405180910390fd5b50565b600a5481565b611dfd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611e1b6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613966565b60405180910390fd5b6305f5e100811015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613beb565b60405180910390fd5b670de0b6b3a764000081611ecc9190613c0b565b600c8190555050565b611edd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614004565b60405180910390fd5b611fc981612bca565b50565b611fd461232b565b73ffffffffffffffffffffffffffffffffffffffff16611ff26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613966565b60405180910390fd5b6298968081101561208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613beb565b60405180910390fd5b670de0b6b3a7640000816120a29190613c0b565b600b8190555050565b6120b361232b565b73ffffffffffffffffffffffffffffffffffffffff166120d16111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613966565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614070565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221c576121d16111b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612216573d6000803e3d6000fd5b50612328565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225c91906137c6565b602060405180830381865afa158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d91906140a5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c36111b5565b836040518363ffffffff1660e01b81526004016122e19291906140d2565b6020604051808303816000875af1158015612300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123249190614110565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906141af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890614241565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ef9190613654565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190614365565b60405180910390fd5b600e60059054906101000a900460ff168061263e5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906143d1565b60405180910390fd5b600081036126965761269183836000612dc3565b612bc5565b60006126a130610f6f565b90506000600a548210159050600e60049054906101000a900460ff1680156126d65750600760149054906101000a900460ff16155b80156127305750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127395750805b1561274e57600082905061274c8161304c565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f55750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127ff57600090505b8015612bb6576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287557600e60029054906101000a900461ffff1661ffff1690506128e0565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128df57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129845750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6957601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2557600c54851115612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614463565b60405180910390fd5b612abe565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abd57600b54851115612abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab3906144f5565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6857600d5485612b1c88610f6f565b612b269190613ad9565b1115612b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5e90614561565b60405180910390fd5b5b5b6000612b916064612b83848961317b90919063ffffffff16565b61319190919063ffffffff16565b9050612ba681876131a790919063ffffffff16565b9550612bb3883083612dc3565b50505b612bc1868686612dc3565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d19906145f3565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2990614685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9890614717565b60405180910390fd5b612eac8383836131bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906147a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc59190613ad9565b92505081905550600082111561303b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130329190613654565b60405180910390a35b6130468484846131c2565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613075826131c7565b600061308a82476131a790919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d4906147fa565b60006040518083038185875af1925050503d8060008114613111576040519150601f19603f3d011682016040523d82523d6000602084013e613116565b606091505b505090508061315a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131519061485b565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131899190613c0b565b905092915050565b6000818361319f91906148aa565b905092915050565b600081836131b591906148db565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e4576131e361490f565b5b6040519080825280602002602001820160405280156132125781602001602082028036833780820191505090505b509050308160008151811061322a5761322961493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f59190613ed0565b816001815181106133095761330861493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337030600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612333565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d4959493929190614a66565b600060405180830381600087803b1580156133ee57600080fd5b505af1158015613402573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613444578082015181840152602081019050613429565b60008484015250505050565b6000601f19601f8301169050919050565b600061346c8261340a565b6134768185613415565b9350613486818560208601613426565b61348f81613450565b840191505092915050565b600060208201905081810360008301526134b48184613461565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ec826134c1565b9050919050565b6134fc816134e1565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b6000819050919050565b6135328161351f565b811461353d57600080fd5b50565b60008135905061354f81613529565b92915050565b6000806040838503121561356c5761356b6134bc565b5b600061357a8582860161350a565b925050602061358b85828601613540565b9150509250929050565b60008115159050919050565b6135aa81613595565b82525050565b60006020820190506135c560008301846135a1565b92915050565b6000819050919050565b60006135f06135eb6135e6846134c1565b6135cb565b6134c1565b9050919050565b6000613602826135d5565b9050919050565b6000613614826135f7565b9050919050565b61362481613609565b82525050565b600060208201905061363f600083018461361b565b92915050565b61364e8161351f565b82525050565b60006020820190506136696000830184613645565b92915050565b600060208284031215613685576136846134bc565b5b60006136938482850161350a565b91505092915050565b6000806000606084860312156136b5576136b46134bc565b5b60006136c38682870161350a565b93505060206136d48682870161350a565b92505060406136e586828701613540565b9150509250925092565b600061ffff82169050919050565b613706816136ef565b82525050565b600060208201905061372160008301846136fd565b92915050565b600060ff82169050919050565b61373d81613727565b82525050565b60006020820190506137586000830184613734565b92915050565b613767816136ef565b811461377257600080fd5b50565b6000813590506137848161375e565b92915050565b6000602082840312156137a05761379f6134bc565b5b60006137ae84828501613775565b91505092915050565b6137c0816134e1565b82525050565b60006020820190506137db60008301846137b7565b92915050565b6000602082840312156137f7576137f66134bc565b5b600061380584828501613540565b91505092915050565b61381781613595565b811461382257600080fd5b50565b6000813590506138348161380e565b92915050565b60008060408385031215613851576138506134bc565b5b600061385f8582860161350a565b925050602061387085828601613825565b9150509250929050565b60008060408385031215613891576138906134bc565b5b600061389f8582860161350a565b92505060206138b08582860161350a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061390157607f821691505b602082108103613914576139136138ba565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613950602083613415565b915061395b8261391a565b602082019050919050565b6000602082019050818103600083015261397f81613943565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e2602483613415565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a74602883613415565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae48261351f565b9150613aef8361351f565b9250828201905080821115613b0757613b06613aaa565b5b92915050565b7f4d6178206275792066656573206c696d69742020697320313525000000000000600082015250565b6000613b43601a83613415565b9150613b4e82613b0d565b602082019050919050565b60006020820190508181036000830152613b7281613b36565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd5602283613415565b9150613be082613b79565b604082019050919050565b60006020820190508181036000830152613c0481613bc8565b9050919050565b6000613c168261351f565b9150613c218361351f565b9250828202613c2f8161351f565b91508282048414831517613c4657613c45613aaa565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ccf604883613415565b9150613cda82613c4d565b606082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d61602583613415565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df3603183613415565b9150613dfe82613d97565b604082019050919050565b60006020820190508181036000830152613e2281613de6565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e85602a83613415565b9150613e9082613e29565b604082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b600081519050613eca816134f3565b92915050565b600060208284031215613ee657613ee56134bc565b5b6000613ef484828501613ebb565b91505092915050565b6000604082019050613f1260008301856137b7565b613f1f60208301846137b7565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320333525000000000000600082015250565b6000613f5c601a83613415565b9150613f6782613f26565b602082019050919050565b60006020820190508181036000830152613f8b81613f4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fee602683613415565b9150613ff982613f92565b604082019050919050565b6000602082019050818103600083015261401d81613fe1565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b600061405a600783613415565b915061406582614024565b602082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b60008151905061409f81613529565b92915050565b6000602082840312156140bb576140ba6134bc565b5b60006140c984828501614090565b91505092915050565b60006040820190506140e760008301856137b7565b6140f46020830184613645565b9392505050565b60008151905061410a8161380e565b92915050565b600060208284031215614126576141256134bc565b5b6000614134848285016140fb565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614199602483613415565b91506141a48261413d565b604082019050919050565b600060208201905081810360008301526141c88161418c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422b602283613415565b9150614236826141cf565b604082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bd602583613415565b91506142c882614261565b604082019050919050565b600060208201905081810360008301526142ec816142b0565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434f602383613415565b915061435a826142f3565b604082019050919050565b6000602082019050818103600083015261437e81614342565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143bb601783613415565b91506143c682614385565b602082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444d602283613415565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144df602183613415565b91506144ea82614483565b604082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b600061454b602083613415565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145dd603f83613415565b91506145e882614581565b604082019050919050565b6000602082019050818103600083015261460c816145d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061466f602583613415565b915061467a82614613565b604082019050919050565b6000602082019050818103600083015261469e81614662565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614701602383613415565b915061470c826146a5565b604082019050919050565b60006020820190508181036000830152614730816146f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614793602683613415565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b600081905092915050565b50565b60006147e46000836147c9565b91506147ef826147d4565b600082019050919050565b6000614805826147d7565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614845601283613415565b91506148508261480f565b602082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b58261351f565b91506148c08361351f565b9250826148d0576148cf61487b565b5b828204905092915050565b60006148e68261351f565b91506148f18361351f565b925082820390508181111561490957614908613aaa565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499261498d6149888461496d565b6135cb565b61351f565b9050919050565b6149a281614977565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149dd816134e1565b82525050565b60006149ef83836149d4565b60208301905092915050565b6000602082019050919050565b6000614a13826149a8565b614a1d81856149b3565b9350614a28836149c4565b8060005b83811015614a59578151614a4088826149e3565b9750614a4b836149fb565b925050600181019050614a2c565b5085935050505092915050565b600060a082019050614a7b6000830188613645565b614a886020830187614999565b8181036040830152614a9a8186614a08565b9050614aa960608301856137b7565b614ab66080830184613645565b969550505050505056fea26469706673582212209df38c91e0eb60fbd67dbc7113f45974bc76d0cd26e612e419a4f884633e5f5b64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b604051610257919061349a565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613555565b610989565b60405161029491906135b0565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf919061362a565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613654565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366f565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369c565b610b06565b60405161035091906135b0565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370c565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613743565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613555565b610c21565b6040516103e391906135b0565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061378a565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370c565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c6565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366f565b610e21565b60405161049f91906135b0565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137e1565b610e77565b005b3480156104dd57600080fd5b506104e6610f56565b6040516104f39190613654565b60405180910390f35b34801561050857600080fd5b50610511610f5c565b60405161051e91906135b0565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366f565b610f6f565b60405161055b9190613654565b60405180910390f35b34801561057057600080fd5b50610579610fb7565b005b34801561058757600080fd5b506105a2600480360381019061059d919061383a565b61103f565b005b3480156105b057600080fd5b506105b9611116565b6040516105c69190613654565b60405180910390f35b3480156105db57600080fd5b506105e461111c565b005b3480156105f257600080fd5b506105fb6111b5565b60405161060891906137c6565b60405180910390f35b34801561061d57600080fd5b506106266111df565b604051610633919061349a565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061383a565b611271565b005b34801561067157600080fd5b5061068c60048036038101906106879190613555565b61138b565b60405161069991906135b0565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613555565b611476565b6040516106d691906135b0565b60405180910390f35b3480156106eb57600080fd5b506106f4611494565b6040516107019190613654565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137e1565b61149a565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366f565b611533565b60405161076791906135b0565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061383a565b611553565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366f565b61170a565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061387a565b611c54565b6040516107f69190613654565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061378a565b611cdb565b005b34801561083457600080fd5b5061083d611def565b60405161084a9190613654565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e1565b611df5565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366f565b611ed5565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137e1565b611fcc565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366f565b6120ab565b005b606060038054610906906138e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e9565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d61099661232b565b8484612333565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df61232b565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f8565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a8a565b60405180910390fd5b610bf285610bea61232b565b858403612333565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e61232b565b848460016000610c3c61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad9565b612333565b6001905092915050565b610cd561232b565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613966565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff160217905550600f600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b59565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f61232b565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613966565b60405180910390fd5b6301312d008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613beb565b60405180910390fd5b670de0b6b3a764000081610f4d9190613c0b565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbf61232b565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613966565b60405180910390fd5b61103d6000612bca565b565b61104761232b565b73ffffffffffffffffffffffffffffffffffffffff166110656111b5565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613966565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b61112461232b565b73ffffffffffffffffffffffffffffffffffffffff166111426111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613966565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ee906138e9565b80601f016020809104026020016040519081016040528092919081815260200182805461121a906138e9565b80156112675780601f1061123c57610100808354040283529160200191611267565b820191906000526020600020905b81548152906001019060200180831161124a57829003601f168201915b5050505050905090565b61127961232b565b73ffffffffffffffffffffffffffffffffffffffff166112976111b5565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613966565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ce5565b60405180910390fd5b6113878282612c90565b5050565b6000806001600061139a61232b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613d77565b60405180910390fd5b61146b61146261232b565b85858403612333565b600191505092915050565b600061148a61148361232b565b84846124fc565b6001905092915050565b600d5481565b6114a261232b565b73ffffffffffffffffffffffffffffffffffffffff166114c06111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613966565b60405180910390fd5b670de0b6b3a76400008161152a9190613c0b565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155b61232b565b73ffffffffffffffffffffffffffffffffffffffff166115796111b5565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613966565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613e09565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fe91906135b0565b60405180910390a25050565b61171261232b565b73ffffffffffffffffffffffffffffffffffffffff166117306111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613966565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613e9b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ea9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190613ed0565b6040518363ffffffff1660e01b81526004016119b4929190613efd565b602060405180830381865afa1580156119d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f59190613ed0565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613ed0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613ed0565b6040518363ffffffff1660e01b8152600401611b86929190613efd565b6020604051808303816000875af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc99190613ed0565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c50565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce361232b565b73ffffffffffffffffffffffffffffffffffffffff16611d016111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613966565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506023600e60029054906101000a900461ffff1661ffff161115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613f72565b60405180910390fd5b50565b600a5481565b611dfd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611e1b6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613966565b60405180910390fd5b6305f5e100811015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613beb565b60405180910390fd5b670de0b6b3a764000081611ecc9190613c0b565b600c8190555050565b611edd61232b565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614004565b60405180910390fd5b611fc981612bca565b50565b611fd461232b565b73ffffffffffffffffffffffffffffffffffffffff16611ff26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613966565b60405180910390fd5b6298968081101561208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613beb565b60405180910390fd5b670de0b6b3a7640000816120a29190613c0b565b600b8190555050565b6120b361232b565b73ffffffffffffffffffffffffffffffffffffffff166120d16111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613966565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614070565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221c576121d16111b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612216573d6000803e3d6000fd5b50612328565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225c91906137c6565b602060405180830381865afa158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d91906140a5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c36111b5565b836040518363ffffffff1660e01b81526004016122e19291906140d2565b6020604051808303816000875af1158015612300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123249190614110565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906141af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890614241565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ef9190613654565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190614365565b60405180910390fd5b600e60059054906101000a900460ff168061263e5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906143d1565b60405180910390fd5b600081036126965761269183836000612dc3565b612bc5565b60006126a130610f6f565b90506000600a548210159050600e60049054906101000a900460ff1680156126d65750600760149054906101000a900460ff16155b80156127305750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127395750805b1561274e57600082905061274c8161304c565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f55750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127ff57600090505b8015612bb6576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287557600e60029054906101000a900461ffff1661ffff1690506128e0565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128df57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129845750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6957601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2557600c54851115612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614463565b60405180910390fd5b612abe565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abd57600b54851115612abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab3906144f5565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6857600d5485612b1c88610f6f565b612b269190613ad9565b1115612b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5e90614561565b60405180910390fd5b5b5b6000612b916064612b83848961317b90919063ffffffff16565b61319190919063ffffffff16565b9050612ba681876131a790919063ffffffff16565b9550612bb3883083612dc3565b50505b612bc1868686612dc3565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d19906145f3565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2990614685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9890614717565b60405180910390fd5b612eac8383836131bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906147a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc59190613ad9565b92505081905550600082111561303b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130329190613654565b60405180910390a35b6130468484846131c2565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613075826131c7565b600061308a82476131a790919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d4906147fa565b60006040518083038185875af1925050503d8060008114613111576040519150601f19603f3d011682016040523d82523d6000602084013e613116565b606091505b505090508061315a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131519061485b565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131899190613c0b565b905092915050565b6000818361319f91906148aa565b905092915050565b600081836131b591906148db565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e4576131e361490f565b5b6040519080825280602002602001820160405280156132125781602001602082028036833780820191505090505b509050308160008151811061322a5761322961493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f59190613ed0565b816001815181106133095761330861493e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337030600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612333565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d4959493929190614a66565b600060405180830381600087803b1580156133ee57600080fd5b505af1158015613402573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613444578082015181840152602081019050613429565b60008484015250505050565b6000601f19601f8301169050919050565b600061346c8261340a565b6134768185613415565b9350613486818560208601613426565b61348f81613450565b840191505092915050565b600060208201905081810360008301526134b48184613461565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ec826134c1565b9050919050565b6134fc816134e1565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b6000819050919050565b6135328161351f565b811461353d57600080fd5b50565b60008135905061354f81613529565b92915050565b6000806040838503121561356c5761356b6134bc565b5b600061357a8582860161350a565b925050602061358b85828601613540565b9150509250929050565b60008115159050919050565b6135aa81613595565b82525050565b60006020820190506135c560008301846135a1565b92915050565b6000819050919050565b60006135f06135eb6135e6846134c1565b6135cb565b6134c1565b9050919050565b6000613602826135d5565b9050919050565b6000613614826135f7565b9050919050565b61362481613609565b82525050565b600060208201905061363f600083018461361b565b92915050565b61364e8161351f565b82525050565b60006020820190506136696000830184613645565b92915050565b600060208284031215613685576136846134bc565b5b60006136938482850161350a565b91505092915050565b6000806000606084860312156136b5576136b46134bc565b5b60006136c38682870161350a565b93505060206136d48682870161350a565b92505060406136e586828701613540565b9150509250925092565b600061ffff82169050919050565b613706816136ef565b82525050565b600060208201905061372160008301846136fd565b92915050565b600060ff82169050919050565b61373d81613727565b82525050565b60006020820190506137586000830184613734565b92915050565b613767816136ef565b811461377257600080fd5b50565b6000813590506137848161375e565b92915050565b6000602082840312156137a05761379f6134bc565b5b60006137ae84828501613775565b91505092915050565b6137c0816134e1565b82525050565b60006020820190506137db60008301846137b7565b92915050565b6000602082840312156137f7576137f66134bc565b5b600061380584828501613540565b91505092915050565b61381781613595565b811461382257600080fd5b50565b6000813590506138348161380e565b92915050565b60008060408385031215613851576138506134bc565b5b600061385f8582860161350a565b925050602061387085828601613825565b9150509250929050565b60008060408385031215613891576138906134bc565b5b600061389f8582860161350a565b92505060206138b08582860161350a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061390157607f821691505b602082108103613914576139136138ba565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613950602083613415565b915061395b8261391a565b602082019050919050565b6000602082019050818103600083015261397f81613943565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e2602483613415565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a74602883613415565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae48261351f565b9150613aef8361351f565b9250828201905080821115613b0757613b06613aaa565b5b92915050565b7f4d6178206275792066656573206c696d69742020697320313525000000000000600082015250565b6000613b43601a83613415565b9150613b4e82613b0d565b602082019050919050565b60006020820190508181036000830152613b7281613b36565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd5602283613415565b9150613be082613b79565b604082019050919050565b60006020820190508181036000830152613c0481613bc8565b9050919050565b6000613c168261351f565b9150613c218361351f565b9250828202613c2f8161351f565b91508282048414831517613c4657613c45613aaa565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ccf604883613415565b9150613cda82613c4d565b606082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d61602583613415565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df3603183613415565b9150613dfe82613d97565b604082019050919050565b60006020820190508181036000830152613e2281613de6565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e85602a83613415565b9150613e9082613e29565b604082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b600081519050613eca816134f3565b92915050565b600060208284031215613ee657613ee56134bc565b5b6000613ef484828501613ebb565b91505092915050565b6000604082019050613f1260008301856137b7565b613f1f60208301846137b7565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320333525000000000000600082015250565b6000613f5c601a83613415565b9150613f6782613f26565b602082019050919050565b60006020820190508181036000830152613f8b81613f4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fee602683613415565b9150613ff982613f92565b604082019050919050565b6000602082019050818103600083015261401d81613fe1565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b600061405a600783613415565b915061406582614024565b602082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b60008151905061409f81613529565b92915050565b6000602082840312156140bb576140ba6134bc565b5b60006140c984828501614090565b91505092915050565b60006040820190506140e760008301856137b7565b6140f46020830184613645565b9392505050565b60008151905061410a8161380e565b92915050565b600060208284031215614126576141256134bc565b5b6000614134848285016140fb565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614199602483613415565b91506141a48261413d565b604082019050919050565b600060208201905081810360008301526141c88161418c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422b602283613415565b9150614236826141cf565b604082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bd602583613415565b91506142c882614261565b604082019050919050565b600060208201905081810360008301526142ec816142b0565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434f602383613415565b915061435a826142f3565b604082019050919050565b6000602082019050818103600083015261437e81614342565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143bb601783613415565b91506143c682614385565b602082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444d602283613415565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144df602183613415565b91506144ea82614483565b604082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b600061454b602083613415565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145dd603f83613415565b91506145e882614581565b604082019050919050565b6000602082019050818103600083015261460c816145d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061466f602583613415565b915061467a82614613565b604082019050919050565b6000602082019050818103600083015261469e81614662565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614701602383613415565b915061470c826146a5565b604082019050919050565b60006020820190508181036000830152614730816146f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614793602683613415565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b600081905092915050565b50565b60006147e46000836147c9565b91506147ef826147d4565b600082019050919050565b6000614805826147d7565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614845601283613415565b91506148508261480f565b602082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b58261351f565b91506148c08361351f565b9250826148d0576148cf61487b565b5b828204905092915050565b60006148e68261351f565b91506148f18361351f565b925082820390508181111561490957614908613aaa565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499261498d6149888461496d565b6135cb565b61351f565b9050919050565b6149a281614977565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149dd816134e1565b82525050565b60006149ef83836149d4565b60208301905092915050565b6000602082019050919050565b6000614a13826149a8565b614a1d81856149b3565b9350614a28836149c4565b8060005b83811015614a59578151614a4088826149e3565b9750614a4b836149fb565b925050600181019050614a2c565b5085935050505092915050565b600060a082019050614a7b6000830188613645565b614a886020830187614999565b8181036040830152614a9a8186614a08565b9050614aa960608301856137b7565b614ab66080830184613645565b969550505050505056fea26469706673582212209df38c91e0eb60fbd67dbc7113f45974bc76d0cd26e612e419a4f884633e5f5b64736f6c63430008130033

Deployed Bytecode Sourcemap

34746:10279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24690:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26857:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34819:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25810:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40533:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27508:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35094:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25652:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28409:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39830:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35067:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34867:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40361:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40810:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35286:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35541:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25981:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18111:103;;;;;;;;;;;;;:::i;:::-;;38860:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35199:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39028:95;;;;;;;;;;;;;:::i;:::-;;17460:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24909:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39131:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29127:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26321:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35374:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41549:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35847:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38095:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37458:629;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26559:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40083:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35133:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41301:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18369:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41057:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38438:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24690:100;24744:13;24777:5;24770:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24690:100;:::o;26857:169::-;26940:4;26957:39;26966:12;:10;:12::i;:::-;26980:7;26989:6;26957:8;:39::i;:::-;27014:4;27007:11;;26857:169;;;;:::o;34819:41::-;;;;;;;;;;;;;:::o;25810:108::-;25871:7;25898:12;;25891:19;;25810:108;:::o;40533:189::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40630:1:::1;40609:23;;:9;:23;;::::0;40600:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40704:9;40684;;:30;;;;;;;;;;;;;;;;;;40533:189:::0;:::o;27508:492::-;27648:4;27665:36;27675:6;27683:9;27694:6;27665:9;:36::i;:::-;27714:24;27741:11;:19;27753:6;27741:19;;;;;;;;;;;;;;;:33;27761:12;:10;:12::i;:::-;27741:33;;;;;;;;;;;;;;;;27714:60;;27813:6;27793:16;:26;;27785:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;27900:57;27909:6;27917:12;:10;:12::i;:::-;27950:6;27931:16;:25;27900:8;:57::i;:::-;27988:4;27981:11;;;27508:492;;;;;:::o;35094:22::-;;;;;;;;;;;;;;;;;;:::o;25652:93::-;25710:5;25735:2;25728:9;;25652:93;:::o;28409:215::-;28497:4;28514:80;28523:12;:10;:12::i;:::-;28537:7;28583:10;28546:11;:25;28558:12;:10;:12::i;:::-;28546:25;;;;;;;;;;;;;;;:34;28572:7;28546:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28514:8;:80::i;:::-;28612:4;28605:11;;28409:215;;;;:::o;39830:240::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39941:9:::1;39925:6;:13;;;:25;;;;;;;;;;;;;;;;;;39976:9;39962:11;;:23;;;;;;;;;;;;;;;;;;40019:2;40004:11;;;;;;;;;;;:17;;;;39996:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39830:240:::0;:::o;35067:20::-;;;;;;;;;;;;;;;;;;:::o;34867:29::-;;;;;;;;;;;;;:::o;40361:126::-;40427:4;40451:19;:28;40471:7;40451:28;;;;;;;;;;;;;;;;;;;;;;;;;40444:35;;40361:126;;;:::o;40810:184::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40895:8:::1;40886:6;:17;40878:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40980:6;40971;:15;;;;:::i;:::-;40953;:33;;;;40810:184:::0;:::o;35286:49::-;;;;:::o;35541:23::-;;;;;;;;;;;;;:::o;25981:127::-;26055:7;26082:9;:18;26092:7;26082:18;;;;;;;;;;;;;;;;26075:25;;25981:127;;;:::o;18111:103::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18176:30:::1;18203:1;18176:18;:30::i;:::-;18111:103::o:0;38860:159::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39003:8:::1;38971:20;:29;38992:7;38971:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;38860:159:::0;;:::o;35199:48::-;;;;:::o;39028:95::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39102:4:::1;39083:16;;:23;;;;;;;;;;;;;;;;;;39028:95::o:0;17460:87::-;17506:7;17533:6;;;;;;;;;;;17526:13;;17460:87;:::o;24909:104::-;24965:13;24998:7;24991:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24909:104;:::o;39131:319::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39275:13:::1;;;;;;;;;;;39267:21;;:4;:21;;::::0;39245:143:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39401:41;39430:4;39436:5;39401:28;:41::i;:::-;39131:319:::0;;:::o;29127:413::-;29220:4;29237:24;29264:11;:25;29276:12;:10;:12::i;:::-;29264:25;;;;;;;;;;;;;;;:34;29290:7;29264:34;;;;;;;;;;;;;;;;29237:61;;29337:15;29317:16;:35;;29309:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29430:67;29439:12;:10;:12::i;:::-;29453:7;29481:15;29462:16;:34;29430:8;:67::i;:::-;29528:4;29521:11;;;29127:413;;;;:::o;26321:175::-;26407:4;26424:42;26434:12;:10;:12::i;:::-;26448:9;26459:6;26424:9;:42::i;:::-;26484:4;26477:11;;26321:175;;;;:::o;35374:51::-;;;;:::o;41549:121::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41656:6:::1;41647;:15;;;;:::i;:::-;41625:18;:37;;;;41549:121:::0;:::o;35847:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38095:334::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38234:8:::1;38202:40;;:19;:28;38222:7;38202:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;38180:139:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38361:8;38330:19;:28;38350:7;38330:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38403:7;38387:34;;;38412:8;38387:34;;;;;;:::i;:::-;;;;;;;;38095:334:::0;;:::o;37458:629::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37556:15:::1;;;;;;;;;;;37534:38;;:10;:38;;::::0;37526:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37671:10;37634:15;;:48;;;;;;;;;;;;;;;;;;37694:16;37744:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37726:52;;;37787:4;37807:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37726:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37694:136;;37865:1;37845:22;;:8;:22;;::::0;37841:239:::1;;37929:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37911:55;;;37975:4;37996:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37911:108;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37882:13;;:137;;;;;;;;;;;;;;;;;;37841:239;;;38060:8;38044:13;;:24;;;;;;;;;;;;;;;;;;37841:239;37519:568;37458:629:::0;:::o;26559:151::-;26648:7;26675:11;:18;26687:5;26675:18;;;;;;;;;;;;;;;:27;26694:7;26675:27;;;;;;;;;;;;;;;;26668:34;;26559:151;;;;:::o;40083:246::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40196:10:::1;40179:7;:14;;;:27;;;;;;;;;;;;;;;;;;40232:10;40217:12;;:25;;;;;;;;;;;;;;;;;;40278:2;40262:12;;;;;;;;;;;:18;;;;40253:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40083:246:::0;:::o;35133:54::-;;;;:::o;41301:188::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41391:9:::1;41381:6;:19;;41373:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41475:6;41466;:15;;;;:::i;:::-;41450:13;:31;;;;41301:188:::0;:::o;18369:201::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18478:1:::1;18458:22;;:8;:22;;::::0;18450:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18534:28;18553:8;18534:18;:28::i;:::-;18369:201:::0;:::o;41057:183::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41144:8:::1;41134:6;:18;;41126:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41226:6;41217;:15;;;;:::i;:::-;41202:12;:30;;;;41057:183:::0;:::o;38438:414::-;17691:12;:10;:12::i;:::-;17680:23;;:7;:5;:7::i;:::-;:23;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38536:4:::1;38518:23;;:6;:23;;::::0;38510:43:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:3;38568:22;;:6;:22;;::::0;38564:124:::1;;38615:7;:5;:7::i;:::-;38607:25;;:48;38633:21;38607:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38670:7;;38564:124;38698:17;38725:6;38698:34;;38743:15;38761:10;:20;;;38790:4;38761:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38743:53;;38807:10;:19;;;38827:7;:5;:7::i;:::-;38836;38807:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38499:353;;17751:1;38438:414:::0;:::o;16164:98::-;16217:7;16244:10;16237:17;;16164:98;:::o;32841:380::-;32994:1;32977:19;;:5;:19;;;32969:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33075:1;33056:21;;:7;:21;;;33048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33159:6;33129:11;:18;33141:5;33129:18;;;;;;;;;;;;;;;:27;33148:7;33129:27;;;;;;;;;;;;;;;:36;;;;33197:7;33181:32;;33190:5;33181:32;;;33206:6;33181:32;;;;;;:::i;:::-;;;;;;;;32841:380;;;:::o;41678:2370::-;41826:1;41810:18;;:4;:18;;;41802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41903:1;41889:16;;:2;:16;;;41881:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41974:16;;;;;;;;;;;:45;;;;41994:19;:25;42014:4;41994:25;;;;;;;;;;;;;;;;;;;;;;;;;41974:45;41965:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;42097:1;42087:6;:11;42083:93;;42115:28;42131:4;42137:2;42141:1;42115:15;:28::i;:::-;42158:7;;42083:93;42188:28;42219:24;42237:4;42219:9;:24::i;:::-;42188:55;;42254:28;42322:18;;42285:20;:55;;42254:86;;42371:11;;;;;;;;;;;:37;;;;;42400:8;;;;;;;;;;;42399:9;42371:37;:75;;;;;42433:13;;;;;;;;;;;42425:21;;:4;:21;;;;42371:75;:115;;;;;42463:23;42371:115;42353:272;;;42527:18;42548:20;42527:41;;42583:28;42600:10;42583:16;:28::i;:::-;42498:127;42353:272;42637:12;42652:4;42637:19;;42758;:25;42778:4;42758:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42787:19;:23;42807:2;42787:23;;;;;;;;;;;;;;;;;;;;;;;;;42758:52;42754:100;;;42837:5;42827:15;;42754:100;42870:7;42866:1129;;;42894:12;42941:25;:29;42967:2;42941:29;;;;;;;;;;;;;;;;;;;;;;;;;42937:185;;;42998:12;;;;;;;;;;;42991:19;;;;42937:185;;;43036:25;:31;43062:4;43036:31;;;;;;;;;;;;;;;;;;;;;;;;;43032:90;;;43095:11;;;;;;;;;;;43088:18;;;;43032:90;42937:185;43143:20;:26;43164:4;43143:26;;;;;;;;;;;;;;;;;;;;;;;;;43142:27;:56;;;;;43174:20;:24;43195:2;43174:24;;;;;;;;;;;;;;;;;;;;;;;;;43173:25;43142:56;43138:675;;;43223:25;:29;43249:2;43223:29;;;;;;;;;;;;;;;;;;;;;;;;;43219:321;;;43295:13;;43285:6;:23;;43277:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43219:321;;;43377:25;:31;43403:4;43377:31;;;;;;;;;;;;;;;;;;;;;;;;;43373:167;;;43449:12;;43439:6;:22;;43431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43373:167;43219:321;43565:25;:29;43591:2;43565:29;;;;;;;;;;;;;;;;;;;;;;;;;43560:238;;43679:15;;43669:6;43653:13;43663:2;43653:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;43619:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;43560:238;43138:675;43829:17;43849:25;43870:3;43849:16;43860:4;43849:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;43829:45;;43898:21;43909:9;43898:6;:10;;:21;;;;:::i;:::-;43889:30;;43936:47;43952:4;43966;43973:9;43936:15;:47::i;:::-;42879:1116;;42866:1129;44007:33;44023:4;44029:2;44033:6;44007:15;:33::i;:::-;41791:2257;;;41678:2370;;;;:::o;18730:191::-;18804:16;18823:6;;;;;;;;;;;18804:25;;18849:8;18840:6;;:17;;;;;;;;;;;;;;;;;;18904:8;18873:40;;18894:8;18873:40;;;;;;;;;;;;18793:128;18730:191;:::o;39458:352::-;39598:5;39563:40;;:25;:31;39589:4;39563:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;39541:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;39739:5;39705:25;:31;39731:4;39705:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39796:5;39762:40;;39790:4;39762:40;;;;;;;;;;;;39458:352;;:::o;30030:763::-;30188:1;30170:20;;:6;:20;;;30162:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30272:1;30251:23;;:9;:23;;;30243:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30327:47;30348:6;30356:9;30367:6;30327:20;:47::i;:::-;30387:21;30411:9;:17;30421:6;30411:17;;;;;;;;;;;;;;;;30387:41;;30464:6;30447:13;:23;;30439:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30585:6;30569:13;:22;30549:9;:17;30559:6;30549:17;;;;;;;;;;;;;;;:42;;;;30637:6;30613:9;:20;30623:9;30613:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;30669:1;30660:6;:10;30656:71;;;30707:9;30690:35;;30699:6;30690:35;;;30718:6;30690:35;;;;;;:::i;:::-;;;;;;;;30656:71;30739:46;30759:6;30767:9;30778:6;30739:19;:46::i;:::-;30151:642;30030:763;;;:::o;44056:362::-;36237:4;36226:8;;:15;;;;;;;;;;;;;;;;;;44130:22:::1;44155:21;44130:46;;44187:24;44204:6;44187:16;:24::i;:::-;44222:18;44243:41;44269:14;44243:21;:25;;:41;;;;:::i;:::-;44222:62;;44307:7;44328:9;;;;;;;;;;;44320:23;;44351:10;44320:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44306:60;;;44384:2;44376:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;44119:299;;;36275:5:::0;36264:8;;:16;;;;;;;;;;;;;;;;;;44056:362;:::o;12058:98::-;12116:7;12147:1;12143;:5;;;;:::i;:::-;12136:12;;12058:98;;;;:::o;12457:::-;12515:7;12546:1;12542;:5;;;;:::i;:::-;12535:12;;12457:98;;;;:::o;11701:::-;11759:7;11790:1;11786;:5;;;;:::i;:::-;11779:12;;11701:98;;;;:::o;33821:125::-;;;;:::o;34550:124::-;;;;:::o;44431:591::-;44557:21;44595:1;44581:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44557:40;;44626:4;44608;44613:1;44608:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44652:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44642:4;44647:1;44642:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44687:62;44704:4;44719:15;;;;;;;;;;;44737:11;44687:8;:62::i;:::-;44788:15;;;;;;;;;;;:66;;;44869:11;44895:1;44939:4;44966;44986:15;44788:226;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44486:536;44431: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:176::-;13181:28;13177:1;13169:6;13165:14;13158:52;13041:176;:::o;13223:366::-;13365:3;13386:67;13450:2;13445:3;13386:67;:::i;:::-;13379:74;;13462:93;13551:3;13462:93;:::i;:::-;13580:2;13575:3;13571:12;13564:19;;13223:366;;;:::o;13595:419::-;13761:4;13799:2;13788:9;13784:18;13776:26;;13848:9;13842:4;13838:20;13834:1;13823:9;13819:17;13812:47;13876:131;14002:4;13876:131;:::i;:::-;13868:139;;13595:419;;;:::o;14020:221::-;14160:34;14156:1;14148:6;14144:14;14137:58;14229:4;14224:2;14216:6;14212:15;14205:29;14020:221;:::o;14247:366::-;14389:3;14410:67;14474:2;14469:3;14410:67;:::i;:::-;14403:74;;14486:93;14575:3;14486:93;:::i;:::-;14604:2;14599:3;14595:12;14588:19;;14247:366;;;:::o;14619:419::-;14785:4;14823:2;14812:9;14808:18;14800:26;;14872:9;14866:4;14862:20;14858:1;14847:9;14843:17;14836:47;14900:131;15026:4;14900:131;:::i;:::-;14892:139;;14619:419;;;:::o;15044:410::-;15084:7;15107:20;15125:1;15107:20;:::i;:::-;15102:25;;15141:20;15159:1;15141:20;:::i;:::-;15136:25;;15196:1;15193;15189:9;15218:30;15236:11;15218:30;:::i;:::-;15207:41;;15397:1;15388:7;15384:15;15381:1;15378:22;15358:1;15351:9;15331:83;15308:139;;15427:18;;:::i;:::-;15308:139;15092:362;15044:410;;;;:::o;15460:296::-;15600:34;15596:1;15588:6;15584:14;15577:58;15669:34;15664:2;15656:6;15652:15;15645:59;15738:10;15733:2;15725:6;15721:15;15714:35;15460:296;:::o;15762:366::-;15904:3;15925:67;15989:2;15984:3;15925:67;:::i;:::-;15918:74;;16001:93;16090:3;16001:93;:::i;:::-;16119:2;16114:3;16110:12;16103:19;;15762:366;;;:::o;16134:419::-;16300:4;16338:2;16327:9;16323:18;16315:26;;16387:9;16381:4;16377:20;16373:1;16362:9;16358:17;16351:47;16415:131;16541:4;16415:131;:::i;:::-;16407:139;;16134:419;;;:::o;16559:224::-;16699:34;16695:1;16687:6;16683:14;16676:58;16768:7;16763:2;16755:6;16751:15;16744:32;16559:224;:::o;16789:366::-;16931:3;16952:67;17016:2;17011:3;16952:67;:::i;:::-;16945:74;;17028:93;17117:3;17028:93;:::i;:::-;17146:2;17141:3;17137:12;17130:19;;16789:366;;;:::o;17161:419::-;17327:4;17365:2;17354:9;17350:18;17342:26;;17414:9;17408:4;17404:20;17400:1;17389:9;17385:17;17378:47;17442:131;17568:4;17442:131;:::i;:::-;17434:139;;17161:419;;;:::o;17586:236::-;17726:34;17722:1;17714:6;17710:14;17703:58;17795:19;17790:2;17782:6;17778:15;17771:44;17586:236;:::o;17828:366::-;17970:3;17991:67;18055:2;18050:3;17991:67;:::i;:::-;17984:74;;18067:93;18156:3;18067:93;:::i;:::-;18185:2;18180:3;18176:12;18169:19;;17828:366;;;:::o;18200:419::-;18366:4;18404:2;18393:9;18389:18;18381:26;;18453:9;18447:4;18443:20;18439:1;18428:9;18424:17;18417:47;18481:131;18607:4;18481:131;:::i;:::-;18473:139;;18200:419;;;:::o;18625:229::-;18765:34;18761:1;18753:6;18749:14;18742:58;18834:12;18829:2;18821:6;18817:15;18810:37;18625:229;:::o;18860:366::-;19002:3;19023:67;19087:2;19082:3;19023:67;:::i;:::-;19016:74;;19099:93;19188:3;19099:93;:::i;:::-;19217:2;19212:3;19208:12;19201:19;;18860:366;;;:::o;19232:419::-;19398:4;19436:2;19425:9;19421:18;19413:26;;19485:9;19479:4;19475:20;19471:1;19460:9;19456:17;19449:47;19513:131;19639:4;19513:131;:::i;:::-;19505:139;;19232:419;;;:::o;19657:143::-;19714:5;19745:6;19739:13;19730:22;;19761:33;19788:5;19761:33;:::i;:::-;19657:143;;;;:::o;19806:351::-;19876:6;19925:2;19913:9;19904:7;19900:23;19896:32;19893:119;;;19931:79;;:::i;:::-;19893:119;20051:1;20076:64;20132:7;20123:6;20112:9;20108:22;20076:64;:::i;:::-;20066:74;;20022:128;19806:351;;;;:::o;20163:332::-;20284:4;20322:2;20311:9;20307:18;20299:26;;20335:71;20403:1;20392:9;20388:17;20379:6;20335:71;:::i;:::-;20416:72;20484:2;20473:9;20469:18;20460:6;20416:72;:::i;:::-;20163:332;;;;;:::o;20501:176::-;20641:28;20637:1;20629:6;20625:14;20618:52;20501:176;:::o;20683:366::-;20825:3;20846:67;20910:2;20905:3;20846:67;:::i;:::-;20839:74;;20922:93;21011:3;20922:93;:::i;:::-;21040:2;21035:3;21031:12;21024:19;;20683:366;;;:::o;21055:419::-;21221:4;21259:2;21248:9;21244:18;21236:26;;21308:9;21302:4;21298:20;21294:1;21283:9;21279:17;21272:47;21336:131;21462:4;21336:131;:::i;:::-;21328:139;;21055:419;;;:::o;21480:225::-;21620:34;21616:1;21608:6;21604:14;21597:58;21689:8;21684:2;21676:6;21672:15;21665:33;21480:225;:::o;21711:366::-;21853:3;21874:67;21938:2;21933:3;21874:67;:::i;:::-;21867:74;;21950:93;22039:3;21950:93;:::i;:::-;22068:2;22063:3;22059:12;22052:19;;21711:366;;;:::o;22083:419::-;22249:4;22287:2;22276:9;22272:18;22264:26;;22336:9;22330:4;22326:20;22322:1;22311:9;22307:17;22300:47;22364:131;22490:4;22364:131;:::i;:::-;22356:139;;22083:419;;;:::o;22508:157::-;22648:9;22644:1;22636:6;22632:14;22625:33;22508:157;:::o;22671:365::-;22813:3;22834:66;22898:1;22893:3;22834:66;:::i;:::-;22827:73;;22909:93;22998:3;22909:93;:::i;:::-;23027:2;23022:3;23018:12;23011:19;;22671:365;;;:::o;23042:419::-;23208:4;23246:2;23235:9;23231:18;23223:26;;23295:9;23289:4;23285:20;23281:1;23270:9;23266:17;23259:47;23323:131;23449:4;23323:131;:::i;:::-;23315:139;;23042:419;;;:::o;23467:143::-;23524:5;23555:6;23549:13;23540:22;;23571:33;23598:5;23571:33;:::i;:::-;23467:143;;;;:::o;23616:351::-;23686:6;23735:2;23723:9;23714:7;23710:23;23706:32;23703:119;;;23741:79;;:::i;:::-;23703:119;23861:1;23886:64;23942:7;23933:6;23922:9;23918:22;23886:64;:::i;:::-;23876:74;;23832:128;23616:351;;;;:::o;23973:332::-;24094:4;24132:2;24121:9;24117:18;24109:26;;24145:71;24213:1;24202:9;24198:17;24189:6;24145:71;:::i;:::-;24226:72;24294:2;24283:9;24279:18;24270:6;24226:72;:::i;:::-;23973:332;;;;;:::o;24311:137::-;24365:5;24396:6;24390:13;24381:22;;24412:30;24436:5;24412:30;:::i;:::-;24311:137;;;;:::o;24454:345::-;24521:6;24570:2;24558:9;24549:7;24545:23;24541:32;24538:119;;;24576:79;;:::i;:::-;24538:119;24696:1;24721:61;24774:7;24765:6;24754:9;24750:22;24721:61;:::i;:::-;24711:71;;24667:125;24454:345;;;;:::o;24805:223::-;24945:34;24941:1;24933:6;24929:14;24922:58;25014:6;25009:2;25001:6;24997:15;24990:31;24805:223;:::o;25034:366::-;25176:3;25197:67;25261:2;25256:3;25197:67;:::i;:::-;25190:74;;25273:93;25362:3;25273:93;:::i;:::-;25391:2;25386:3;25382:12;25375:19;;25034:366;;;:::o;25406:419::-;25572:4;25610:2;25599:9;25595:18;25587:26;;25659:9;25653:4;25649:20;25645:1;25634:9;25630:17;25623:47;25687:131;25813:4;25687:131;:::i;:::-;25679:139;;25406:419;;;:::o;25831:221::-;25971:34;25967:1;25959:6;25955:14;25948:58;26040:4;26035:2;26027:6;26023:15;26016:29;25831:221;:::o;26058:366::-;26200:3;26221:67;26285:2;26280:3;26221:67;:::i;:::-;26214:74;;26297:93;26386:3;26297:93;:::i;:::-;26415:2;26410:3;26406:12;26399:19;;26058:366;;;:::o;26430:419::-;26596:4;26634:2;26623:9;26619:18;26611:26;;26683:9;26677:4;26673:20;26669:1;26658:9;26654:17;26647:47;26711:131;26837:4;26711:131;:::i;:::-;26703:139;;26430:419;;;:::o;26855:224::-;26995:34;26991:1;26983:6;26979:14;26972:58;27064:7;27059:2;27051:6;27047:15;27040:32;26855:224;:::o;27085:366::-;27227:3;27248:67;27312:2;27307:3;27248:67;:::i;:::-;27241:74;;27324:93;27413:3;27324:93;:::i;:::-;27442:2;27437:3;27433:12;27426:19;;27085:366;;;:::o;27457:419::-;27623:4;27661:2;27650:9;27646:18;27638:26;;27710:9;27704:4;27700:20;27696:1;27685:9;27681:17;27674:47;27738:131;27864:4;27738:131;:::i;:::-;27730:139;;27457:419;;;:::o;27882:222::-;28022:34;28018:1;28010:6;28006:14;27999:58;28091:5;28086:2;28078:6;28074:15;28067:30;27882:222;:::o;28110:366::-;28252:3;28273:67;28337:2;28332:3;28273:67;:::i;:::-;28266:74;;28349:93;28438:3;28349:93;:::i;:::-;28467:2;28462:3;28458:12;28451:19;;28110:366;;;:::o;28482:419::-;28648:4;28686:2;28675:9;28671:18;28663:26;;28735:9;28729:4;28725:20;28721:1;28710:9;28706:17;28699:47;28763:131;28889:4;28763:131;:::i;:::-;28755:139;;28482:419;;;:::o;28907:173::-;29047:25;29043:1;29035:6;29031:14;29024:49;28907:173;:::o;29086:366::-;29228:3;29249:67;29313:2;29308:3;29249:67;:::i;:::-;29242:74;;29325:93;29414:3;29325:93;:::i;:::-;29443:2;29438:3;29434:12;29427:19;;29086:366;;;:::o;29458:419::-;29624:4;29662:2;29651:9;29647:18;29639:26;;29711:9;29705:4;29701:20;29697:1;29686:9;29682:17;29675:47;29739:131;29865:4;29739:131;:::i;:::-;29731:139;;29458:419;;;:::o;29883:221::-;30023:34;30019:1;30011:6;30007:14;30000:58;30092:4;30087:2;30079:6;30075:15;30068:29;29883:221;:::o;30110:366::-;30252:3;30273:67;30337:2;30332:3;30273:67;:::i;:::-;30266:74;;30349:93;30438:3;30349:93;:::i;:::-;30467:2;30462:3;30458:12;30451:19;;30110:366;;;:::o;30482:419::-;30648:4;30686:2;30675:9;30671:18;30663:26;;30735:9;30729:4;30725:20;30721:1;30710:9;30706:17;30699:47;30763:131;30889:4;30763:131;:::i;:::-;30755:139;;30482:419;;;:::o;30907:220::-;31047:34;31043:1;31035:6;31031:14;31024:58;31116:3;31111:2;31103:6;31099:15;31092:28;30907:220;:::o;31133:366::-;31275:3;31296:67;31360:2;31355:3;31296:67;:::i;:::-;31289:74;;31372:93;31461:3;31372:93;:::i;:::-;31490:2;31485:3;31481:12;31474:19;;31133:366;;;:::o;31505:419::-;31671:4;31709:2;31698:9;31694:18;31686:26;;31758:9;31752:4;31748:20;31744:1;31733:9;31729:17;31722:47;31786:131;31912:4;31786:131;:::i;:::-;31778:139;;31505:419;;;:::o;31930:182::-;32070:34;32066:1;32058:6;32054:14;32047:58;31930:182;:::o;32118:366::-;32260:3;32281:67;32345:2;32340:3;32281:67;:::i;:::-;32274:74;;32357:93;32446:3;32357:93;:::i;:::-;32475:2;32470:3;32466:12;32459:19;;32118:366;;;:::o;32490:419::-;32656:4;32694:2;32683:9;32679:18;32671:26;;32743:9;32737:4;32733:20;32729:1;32718:9;32714:17;32707:47;32771:131;32897:4;32771:131;:::i;:::-;32763:139;;32490:419;;;:::o;32915:250::-;33055:34;33051:1;33043:6;33039:14;33032:58;33124:33;33119:2;33111:6;33107:15;33100:58;32915:250;:::o;33171:366::-;33313:3;33334:67;33398:2;33393:3;33334:67;:::i;:::-;33327:74;;33410:93;33499:3;33410:93;:::i;:::-;33528:2;33523:3;33519:12;33512:19;;33171:366;;;:::o;33543:419::-;33709:4;33747:2;33736:9;33732:18;33724:26;;33796:9;33790:4;33786:20;33782:1;33771:9;33767:17;33760:47;33824:131;33950:4;33824:131;:::i;:::-;33816:139;;33543:419;;;:::o;33968:224::-;34108:34;34104:1;34096:6;34092:14;34085:58;34177:7;34172:2;34164:6;34160:15;34153:32;33968:224;:::o;34198:366::-;34340:3;34361:67;34425:2;34420:3;34361:67;:::i;:::-;34354:74;;34437:93;34526:3;34437:93;:::i;:::-;34555:2;34550:3;34546:12;34539:19;;34198:366;;;:::o;34570:419::-;34736:4;34774:2;34763:9;34759:18;34751:26;;34823:9;34817:4;34813:20;34809:1;34798:9;34794:17;34787:47;34851:131;34977:4;34851:131;:::i;:::-;34843:139;;34570:419;;;:::o;34995:222::-;35135:34;35131:1;35123:6;35119:14;35112:58;35204:5;35199:2;35191:6;35187:15;35180:30;34995:222;:::o;35223:366::-;35365:3;35386:67;35450:2;35445:3;35386:67;:::i;:::-;35379:74;;35462:93;35551:3;35462:93;:::i;:::-;35580:2;35575:3;35571:12;35564:19;;35223:366;;;:::o;35595:419::-;35761:4;35799:2;35788:9;35784:18;35776:26;;35848:9;35842:4;35838:20;35834:1;35823:9;35819:17;35812:47;35876:131;36002:4;35876:131;:::i;:::-;35868:139;;35595:419;;;:::o;36020:225::-;36160:34;36156:1;36148:6;36144:14;36137:58;36229:8;36224:2;36216:6;36212:15;36205:33;36020:225;:::o;36251:366::-;36393:3;36414:67;36478:2;36473:3;36414:67;:::i;:::-;36407:74;;36490:93;36579:3;36490:93;:::i;:::-;36608:2;36603:3;36599:12;36592:19;;36251:366;;;:::o;36623:419::-;36789:4;36827:2;36816:9;36812:18;36804:26;;36876:9;36870:4;36866:20;36862:1;36851:9;36847:17;36840:47;36904:131;37030:4;36904:131;:::i;:::-;36896:139;;36623:419;;;:::o;37048:147::-;37149:11;37186:3;37171:18;;37048:147;;;;:::o;37201:114::-;;:::o;37321:398::-;37480:3;37501:83;37582:1;37577:3;37501:83;:::i;:::-;37494:90;;37593:93;37682:3;37593:93;:::i;:::-;37711:1;37706:3;37702:11;37695:18;;37321:398;;;:::o;37725:379::-;37909:3;37931:147;38074:3;37931:147;:::i;:::-;37924:154;;38095:3;38088:10;;37725:379;;;:::o;38110:168::-;38250:20;38246:1;38238:6;38234:14;38227:44;38110:168;:::o;38284:366::-;38426:3;38447:67;38511:2;38506:3;38447:67;:::i;:::-;38440:74;;38523:93;38612:3;38523:93;:::i;:::-;38641:2;38636:3;38632:12;38625:19;;38284:366;;;:::o;38656:419::-;38822:4;38860:2;38849:9;38845:18;38837:26;;38909:9;38903:4;38899:20;38895:1;38884:9;38880:17;38873:47;38937:131;39063:4;38937:131;:::i;:::-;38929:139;;38656:419;;;:::o;39081:180::-;39129:77;39126:1;39119:88;39226:4;39223:1;39216:15;39250:4;39247:1;39240:15;39267:185;39307:1;39324:20;39342:1;39324:20;:::i;:::-;39319:25;;39358:20;39376:1;39358:20;:::i;:::-;39353:25;;39397:1;39387:35;;39402:18;;:::i;:::-;39387:35;39444:1;39441;39437:9;39432:14;;39267:185;;;;:::o;39458:194::-;39498:4;39518:20;39536:1;39518:20;:::i;:::-;39513:25;;39552:20;39570:1;39552:20;:::i;:::-;39547:25;;39596:1;39593;39589:9;39581:17;;39620:1;39614:4;39611:11;39608:37;;;39625:18;;:::i;:::-;39608:37;39458:194;;;;:::o;39658:180::-;39706:77;39703:1;39696:88;39803:4;39800:1;39793:15;39827:4;39824:1;39817:15;39844:180;39892:77;39889:1;39882:88;39989:4;39986:1;39979:15;40013:4;40010:1;40003:15;40030:85;40075:7;40104:5;40093:16;;40030:85;;;:::o;40121:158::-;40179:9;40212:61;40230:42;40239:32;40265:5;40239:32;:::i;:::-;40230:42;:::i;:::-;40212:61;:::i;:::-;40199:74;;40121:158;;;:::o;40285:147::-;40380:45;40419:5;40380:45;:::i;:::-;40375:3;40368:58;40285:147;;:::o;40438:114::-;40505:6;40539:5;40533:12;40523:22;;40438:114;;;:::o;40558:184::-;40657:11;40691:6;40686:3;40679:19;40731:4;40726:3;40722:14;40707:29;;40558:184;;;;:::o;40748:132::-;40815:4;40838:3;40830:11;;40868:4;40863:3;40859:14;40851:22;;40748:132;;;:::o;40886:108::-;40963:24;40981:5;40963:24;:::i;:::-;40958:3;40951:37;40886:108;;:::o;41000:179::-;41069:10;41090:46;41132:3;41124:6;41090:46;:::i;:::-;41168:4;41163:3;41159:14;41145:28;;41000:179;;;;:::o;41185:113::-;41255:4;41287;41282:3;41278:14;41270:22;;41185:113;;;:::o;41334:732::-;41453:3;41482:54;41530:5;41482:54;:::i;:::-;41552:86;41631:6;41626:3;41552:86;:::i;:::-;41545:93;;41662:56;41712:5;41662:56;:::i;:::-;41741:7;41772:1;41757:284;41782:6;41779:1;41776:13;41757:284;;;41858:6;41852:13;41885:63;41944:3;41929:13;41885:63;:::i;:::-;41878:70;;41971:60;42024:6;41971:60;:::i;:::-;41961:70;;41817:224;41804:1;41801;41797:9;41792:14;;41757:284;;;41761:14;42057:3;42050:10;;41458:608;;;41334:732;;;;:::o;42072:831::-;42335:4;42373:3;42362:9;42358:19;42350:27;;42387:71;42455:1;42444:9;42440:17;42431:6;42387:71;:::i;:::-;42468:80;42544:2;42533:9;42529:18;42520:6;42468:80;:::i;:::-;42595:9;42589:4;42585:20;42580:2;42569:9;42565:18;42558:48;42623:108;42726:4;42717:6;42623:108;:::i;:::-;42615:116;;42741:72;42809:2;42798:9;42794:18;42785:6;42741:72;:::i;:::-;42823:73;42891:3;42880:9;42876:19;42867:6;42823:73;:::i;:::-;42072:831;;;;;;;;:::o

Swarm Source

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