ETH Price: $3,472.85 (+1.90%)
Gas: 9 Gwei

Token

Orbeon Protocol (ORBN)
 

Overview

Max Total Supply

888,000,000 ORBN

Holders

4,208

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
950 ORBN

Value
$0.00
0xf4e59c61df59fa78fd324305064703c009207d62
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:
ORBN

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-13
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }

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

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

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

// 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 no longer needed starting with Solidity 0.8. 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;
        }
    }
}

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 9;
    }

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

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

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) public view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) public view returns (uint) {
        return map.keys.length;
    }

    function set(Map storage map, address key, uint val) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}


/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);
}


/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Distributes ether to token holders as dividends.
  /// @dev SHOULD distribute the paid ether to token holders as dividends.
  ///  SHOULD NOT directly transfer ether to token holders in this function.
  ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
  function distributeDividends() external payable;

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}


/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
  using SafeMath for uint256;
  using SignedSafeMath for int256;
  using SafeCast for uint256;
  using SafeCast for int256;

  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {

  }

  /// @dev Distributes dividends whenever ether is paid to this contract.
  receive() external payable {
    distributeDividends();
  }

  /// @notice Distributes ether to token holders as dividends.
  /// @dev It reverts if the total supply of tokens is 0.
  /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
  /// About undistributed ether:
  ///   In each distribution, there is a small amount of ether not distributed,
  ///     the magnified amount of which is
  ///     `(msg.value * magnitude) % totalSupply()`.
  ///   With a well-chosen `magnitude`, the amount of undistributed ether
  ///     (de-magnified) in a distribution can be less than 1 wei.
  ///   We can actually keep track of the undistributed ether in a distribution
  ///     and try to distribute it in the next distribution,
  ///     but keeping track of such data on-chain costs much more than
  ///     the saved ether, so we don't do that.
  function distributeDividends() public override payable {
    require(totalSupply() > 0);

    if (msg.value > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (msg.value).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, msg.value);

      totalDividendsDistributed = totalDividendsDistributed.add(msg.value);
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      (bool success,) = user.call{value: _withdrawableDividend, gas: 3000}("");

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        return 0;
      }

      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256()
      .add(magnifiedDividendCorrections[_owner]).toUint256() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256() );
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}
contract ORBNDividendTracker is DividendPayingToken, Ownable {
    using SafeMath for uint256;
    using SignedSafeMath for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public immutable minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor() DividendPayingToken("ORBN_Dividend_Tracker", "ORBN_Dividend_Tracker") {
        claimWait = 3600;
        minimumTokenBalanceForDividends = 10000 * (10**9); //must hold 10000+ tokens
    }

    function _transfer(address, address, uint256) internal pure override {
        require(false, "ORBN_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() public pure override {
        require(false, "ORBN_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main ORBN contract.");
    }

    function excludeFromDividends(address account) external onlyOwner {
    	require(!excludedFromDividends[account]);
    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);
    	tokenHoldersMap.remove(account);

    	emit ExcludeFromDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "ORBN_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");	
        require(newClaimWait != claimWait, "ORBN_Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns(uint256) {
        return tokenHoldersMap.keys.length;
    }



    function getAccount(address _account)
        public view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if(index >= 0) {
            if(uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ?
                                                        tokenHoldersMap.keys.length.sub(lastProcessedIndex) :
                                                        0;


                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }


        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ?
                                    lastClaimTime.add(claimWait) :
                                    0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ?
                                                    nextClaimTime.sub(block.timestamp) :
                                                    0;
    }

    function getAccountAtIndex(uint256 index)
        public view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	if(index >= tokenHoldersMap.size()) {
            return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    	if(lastClaimTime > block.timestamp)  {
    		return false;
    	}

    	return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

    	if(newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
    		tokenHoldersMap.set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		tokenHoldersMap.remove(account);
    	}

    	processAccount(account, true);
    }

    function process(uint256 gas) public returns (uint256, uint256, uint256) {
    	uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    	if(numberOfTokenHolders == 0) {
    		return (0, 0, lastProcessedIndex);
    	}

    	uint256 _lastProcessedIndex = lastProcessedIndex;

    	uint256 gasUsed = 0;

    	uint256 gasLeft = gasleft();

    	uint256 iterations = 0;
    	uint256 claims = 0;

    	while(gasUsed < gas && iterations < numberOfTokenHolders) {
    		_lastProcessedIndex++;

    		if(_lastProcessedIndex >= tokenHoldersMap.keys.length) {
    			_lastProcessedIndex = 0;
    		}

    		address account = tokenHoldersMap.keys[_lastProcessedIndex];

    		if(canAutoClaim(lastClaimTimes[account])) {
    			if(processAccount(payable(account), true)) {
    				claims++;
    			}
    		}

    		iterations++;

    		uint256 newGasLeft = gasleft();

    		if(gasLeft > newGasLeft) {
    			gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
    		}

    		gasLeft = newGasLeft;
    	}

    	lastProcessedIndex = _lastProcessedIndex;

    	return (iterations, claims, lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount = _withdrawDividendOfUser(account);

    	if(amount > 0) {
    		lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
    		return true;
    	}

    	return false;
    }
}

contract SafeToken is Ownable {
    address payable safeManager;

    constructor() {
        safeManager = payable(msg.sender);
    }

    function setSafeManager(address payable _safeManager) public onlyOwner {
        safeManager = _safeManager;
    }

    function withdraw(address _token, uint256 _amount) external {
        require(msg.sender == safeManager);
        IERC20(_token).transfer(safeManager, _amount);
    }

    function withdrawBNB(uint256 _amount) external {
        require(msg.sender == safeManager);
        safeManager.transfer(_amount);
    }
}

contract ORBN is ERC20, Ownable, SafeToken {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private inSwapAndLiquify;

    bool public swapAndLiquifyEnabled = true;

    ORBNDividendTracker public dividendTracker;

    uint256 public maxSellTransactionAmount = 888000000 * (10**9);
    uint256 public swapTokensAtAmount = 888000 * (10**9);

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    uint256 public ETHRewardFee;
    uint256 public liquidityFee;
    uint256 public totalFees;
    uint256 public marketingFee;
    uint256 public burnFee;

    uint256 public onSellETHRewardFee;
    uint256 public onSellliquidityFee;
    uint256 public onSelltotalFees;
    uint256 public onSellmarketingFee;
    uint256 public onSellburnFee;

    address payable public  marketingWallet;

    // use by default 300,000 gas to process auto-claiming dividends
    uint256 public gasForProcessing = 300000;

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    
    mapping(address => bool) private _isExcludedFromMaxTx;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event SwapAndLiquifyEnabledUpdated(bool enabled);

    event SwapAndLiquify(
        uint256 tokensIntoLiqudity,
        uint256 ethReceived
    );

    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

    event ProcessedDividendTracker(
    	uint256 iterations,
    	uint256 claims,
        uint256 lastProcessedIndex,
    	bool indexed automatic,
    	uint256 gas,
    	address indexed processor
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    function setFee(uint256 _bnbRewardFee, uint256 _liquidityFee, uint256 _marketingFee, uint256 _burnFee) public onlyOwner {
        ETHRewardFee = _bnbRewardFee;
        liquidityFee = _liquidityFee;
        marketingFee = _marketingFee;
        burnFee = _burnFee;

        totalFees = ETHRewardFee.add(liquidityFee).add(marketingFee).add(burnFee); // total fee transfer and buy
    }

    function setSellFee(uint256 _onSellbnbRewardFee, uint256 _onSellliuidityFee, uint256 _onSellmarketingFee, uint256 _onSellBurnFee) public onlyOwner {
        onSelltotalFees = _onSellbnbRewardFee;
        onSellliquidityFee = _onSellliuidityFee;
        onSellmarketingFee = _onSellmarketingFee;
        onSellburnFee = _onSellBurnFee;

        onSelltotalFees = onSellETHRewardFee.add(onSellliquidityFee).add(onSellmarketingFee).add(onSellburnFee);
    }

    function setMaxSelltx(uint256 _maxSellTxAmount) public onlyOwner {
        maxSellTransactionAmount = _maxSellTxAmount *10**9;
    }
    
    function setmarketingWallet(address payable _newmarketingWallet) public onlyOwner {
        marketingWallet = _newmarketingWallet;
    }
/**
NAME: Orbeon Protocol 
SYMBOL: ORBN
SUPPLY: 888,000,000
CHAIN: Ethereum 
PRICE: $0.004

TAX:
Buy 4%
- redistribution 1%
- marketing 1%
- liquidity Pool 1%
- burn 1%

Sell 8%
- redistribution 2%
- marketing 1%
- liquidity Pool 3%
- burn 2%
*/
    constructor() ERC20("Orbeon Protocol", "ORBN") {
        ETHRewardFee = 1;
        liquidityFee = 1;
        marketingFee = 1;
        burnFee = 1;

        onSellETHRewardFee = 2;
        onSellliquidityFee = 3;
        onSellmarketingFee = 1;
        onSellburnFee = 2;

        marketingWallet = payable(0x53a2D433f6788602b2AE037307c9aedaE0d8Ee54);

        totalFees = ETHRewardFee.add(liquidityFee).add(marketingFee).add(burnFee); // total fee transfer and buy

        onSelltotalFees = onSellETHRewardFee.add(onSellliquidityFee).add(onSellmarketingFee).add(onSellburnFee);

    	dividendTracker = new ORBNDividendTracker();

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D );
         // 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 receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);
        
        // exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[marketingWallet] = true;

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

    receive() external payable {

  	}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "ORBN: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

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

        emit ExcludeFromFees(account, excluded);
    }
    
    function setExcludeFromMaxTx(address _address, bool value) public onlyOwner { 
        _isExcludedFromMaxTx[_address] = value;
    }

    function setExcludeFromAll(address _address) public onlyOwner {
        _isExcludedFromMaxTx[_address] = true;
        _isExcludedFromFees[_address] = true;
        dividendTracker.excludeFromDividends(_address);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }
     
    function setSWapToensAtAmount(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount *10**9;
    }

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

        if(value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue >= 200000 && newValue <= 500000, "ORBN: gasForProcessing must be between 200,000 and 500,000");
        require(newValue != gasForProcessing, "ORBN: Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function getClaimWait() external view returns(uint256) {
        return dividendTracker.claimWait();
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

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

    function withdrawableDividendOf(address account) public view returns(uint256) {
    	return dividendTracker.withdrawableDividendOf(account);
  	}

	function dividendTokenBalanceOf(address account) public view returns (uint256) {
		return dividendTracker.balanceOf(account);
	}

    function getAccountDividendsInfo(address account)
        external view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
        return dividendTracker.getAccount(account);
    }

	function getAccountDividendsInfoAtIndex(uint256 index)
        external view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	return dividendTracker.getAccountAtIndex(index);
    }

	function processDividendTracker(uint256 gas) external {
		(uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas);
		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin);
    }

    function claim() external {
		dividendTracker.processAccount(payable(msg.sender), false);
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return dividendTracker.getLastProcessedIndex();
    }

    function getNumberOfDividendTokenHolders() external view returns(uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }

//this will be used to exclude from dividends the presale smart contract address
    function excludeFromDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    )internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if(automatedMarketMakerPairs[to] && (!_isExcludedFromMaxTx[from]) && (!_isExcludedFromMaxTx[to])){
            require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");
        }

    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            !automatedMarketMakerPairs[from] && 
            swapAndLiquifyEnabled
        ) {
            swapAndLiquify(contractTokenBalance);
        }

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
        	uint256 fees = amount.mul(totalFees.sub(burnFee)).div(100);
            uint256 burnShare = amount.mul(burnFee).div(100);

            if(automatedMarketMakerPairs[to]) {
                fees = amount.mul(onSelltotalFees.sub(onSellburnFee)).div(100);
                burnShare = amount.mul(onSellburnFee).div(100);
            }
        	amount = amount.sub(fees.add(burnShare));
            if(fees > 0) {
                super._transfer(from, address(this), fees);
            }

            if(burnShare > 0) {
                super._transfer(from, deadWallet, burnShare);
            }
        }

        super._transfer(from, to, amount);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        if(!inSwapAndLiquify) {
	    	uint256 gas = gasForProcessing;

	    	try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
	    		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin);
	    	} 
	    	catch {

	    	}
        }
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // take liquidity fee, keep a half token
        // halfLiquidityToken = totalAmount * (liquidityFee/2totalFee)
        uint256 tokensToAddLiquidityWith = contractTokenBalance.div(totalFees.mul(2)).mul(liquidityFee);
        // swap the remaining to BNB
        uint256 toSwap = contractTokenBalance-tokensToAddLiquidityWith;
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForBnb(toSwap, address(this)); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        uint256 deltaBalance = address(this).balance-initialBalance;

        // take worthy amount bnb to add liquidity
        // worthyBNB = deltaBalance * liquidity/(2totalFees - liquidityFee)
        uint256 bnbToAddLiquidityWith = deltaBalance.mul(onSellliquidityFee).div(onSelltotalFees.mul(2).sub(onSellliquidityFee));
        
        // add liquidity to uniswap
        addLiquidity(tokensToAddLiquidityWith, bnbToAddLiquidityWith);
        // worthy marketing fee
        uint256 marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(onSelltotalFees.sub(onSellliquidityFee)).mul(onSellmarketingFee);
        marketingWallet.transfer(marketingAmount);

        uint256 dividends = address(this).balance;
        (bool success,) = address(dividendTracker).call{value: dividends}("");

        if(success) {
   	 		emit SendDividends(toSwap-tokensToAddLiquidityWith, dividends);
        }
        
        emit SwapAndLiquify(tokensToAddLiquidityWith, deltaBalance);
    }

    function swapTokensForBnb(uint256 tokenAmount, address _to) private {

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

    function swapAndSendBNBToMarketing(uint256 tokenAmount) private {
        swapTokensForBnb(tokenAmount, marketingWallet);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":[],"name":"ETHRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract ORBNDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","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":"onSellETHRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSellburnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSellliquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSellmarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSelltotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setExcludeFromAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bnbRewardFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxSelltx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSWapToensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_safeManager","type":"address"}],"name":"setSafeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_onSellbnbRewardFee","type":"uint256"},{"internalType":"uint256","name":"_onSellliuidityFee","type":"uint256"},{"internalType":"uint256","name":"_onSellmarketingFee","type":"uint256"},{"internalType":"uint256","name":"_onSellBurnFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newmarketingWallet","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600760156101000a81548160ff021916908315150217905550670c52cf4b908c0000600955660327a19c8f8000600a5561dead600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620493e06017553480156200008d57600080fd5b506040518060400160405280600f81526020017f4f7262656f6e2050726f746f636f6c00000000000000000000000000000000008152506040518060400160405280600481526020017f4f52424e0000000000000000000000000000000000000000000000000000000081525081600390816200010b9190620012d4565b5080600490816200011d9190620012d4565b505050620001406200013462000a1c60201b60201c565b62000a2460201b60201c565b33600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c819055506001600d819055506001600f81905550600160108190555060026011819055506003601281905550600160148190555060026015819055507353a2d433f6788602b2ae037307c9aedae0d8ee54601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200026a60105462000256600f5462000242600d54600c5462000aea60201b620031831790919060201c565b62000aea60201b620031831790919060201c565b62000aea60201b620031831790919060201c565b600e81905550620002c4601554620002b06014546200029c60125460115462000aea60201b620031831790919060201c565b62000aea60201b620031831790919060201c565b62000aea60201b620031831790919060201c565b601381905550604051620002d8906200104c565b604051809103906000f080158015620002f5573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200039d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c3919062001425565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200042b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000451919062001425565b6040518363ffffffff1660e01b81526004016200047092919062001468565b6020604051808303816000875af115801562000490573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b6919062001425565b905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200054081600162000b0260201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401620005bf919062001495565b600060405180830381600087803b158015620005da57600080fd5b505af1158015620005ef573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b815260040162000650919062001495565b600060405180830381600087803b1580156200066b57600080fd5b505af115801562000680573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0620006d262000cd160201b60201c565b6040518263ffffffff1660e01b8152600401620006f0919062001495565b600060405180830381600087803b1580156200070b57600080fd5b505af115801562000720573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0836040518263ffffffff1660e01b815260040162000781919062001495565b600060405180830381600087803b1580156200079c57600080fd5b505af1158015620007b1573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db061dead6040518263ffffffff1660e01b815260040162000814919062001495565b600060405180830381600087803b1580156200082f57600080fd5b505af115801562000844573d6000803e3d6000fd5b505050506200086a6200085c62000cd160201b60201c565b600162000cfb60201b60201c565b6200089f601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000cfb60201b60201c565b620008b230600162000cfb60201b60201c565b600160196000620008c862000cd160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160196000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000a14620009ff62000cd160201b60201c565b670c52cf4b908c000062000eca60201b60201c565b5050620017a9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818362000afa9190620014e1565b905092915050565b801515601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000b97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b8e90620015a3565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000c8757600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0836040518263ffffffff1660e01b815260040162000c52919062001495565b600060405180830381600087803b15801562000c6d57600080fd5b505af115801562000c82573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000d0b62000a1c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000d3162000cd160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000d8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d819062001615565b60405180910390fd5b801515601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000e1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e1690620016ad565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000ebe9190620016ec565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f339062001759565b60405180910390fd5b62000f50600083836200104260201b60201c565b806002600082825462000f649190620014e1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000fbb9190620014e1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200102291906200178c565b60405180910390a36200103e600083836200104760201b60201c565b5050565b505050565b505050565b61413f806200766283390190565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010dc57607f821691505b602082108103620010f257620010f162001094565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200115c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200111d565b6200116886836200111d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620011b5620011af620011a98462001180565b6200118a565b62001180565b9050919050565b6000819050919050565b620011d18362001194565b620011e9620011e082620011bc565b8484546200112a565b825550505050565b600090565b62001200620011f1565b6200120d818484620011c6565b505050565b5b81811015620012355762001229600082620011f6565b60018101905062001213565b5050565b601f82111562001284576200124e81620010f8565b62001259846200110d565b8101602085101562001269578190505b6200128162001278856200110d565b83018262001212565b50505b505050565b600082821c905092915050565b6000620012a96000198460080262001289565b1980831691505092915050565b6000620012c4838362001296565b9150826002028217905092915050565b620012df826200105a565b67ffffffffffffffff811115620012fb57620012fa62001065565b5b620013078254620010c3565b6200131482828562001239565b600060209050601f8311600181146200134c576000841562001337578287015190505b620013438582620012b6565b865550620013b3565b601f1984166200135c86620010f8565b60005b8281101562001386578489015182556001820191506020850194506020810190506200135f565b86831015620013a65784890151620013a2601f89168262001296565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620013ed82620013c0565b9050919050565b620013ff81620013e0565b81146200140b57600080fd5b50565b6000815190506200141f81620013f4565b92915050565b6000602082840312156200143e576200143d620013bb565b5b60006200144e848285016200140e565b91505092915050565b6200146281620013e0565b82525050565b60006040820190506200147f600083018562001457565b6200148e602083018462001457565b9392505050565b6000602082019050620014ac600083018462001457565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620014ee8262001180565b9150620014fb8362001180565b9250828201905080821115620015165762001515620014b2565b5b92915050565b600082825260208201905092915050565b7f4f52424e3a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b60006200158b603e836200151c565b915062001598826200152d565b604082019050919050565b60006020820190508181036000830152620015be816200157c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620015fd6020836200151c565b91506200160a82620015c5565b602082019050919050565b600060208201905081810360008301526200163081620015ee565b9050919050565b7f4f52424e3a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b6000620016956030836200151c565b9150620016a28262001637565b604082019050919050565b60006020820190508181036000830152620016c88162001686565b9050919050565b60008115159050919050565b620016e681620016cf565b82525050565b6000602082019050620017036000830184620016db565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001741601f836200151c565b91506200174e8262001709565b602082019050919050565b60006020820190508181036000830152620017748162001732565b9050919050565b620017868162001180565b82525050565b6000602082019050620017a360008301846200177b565b92915050565b608051615e96620017cc6000396000818161179b015261231f0152615e966000f3fe6080604052600436106103c75760003560e01c806370a08231116101f2578063a8b9d2401161010d578063e2f45605116100a0578063f27fd2541161006f578063f27fd25414610e8c578063f2fde38b14610ed0578063f3fef3a314610ef9578063fce589d814610f22576103ce565b8063e2f4560514610de4578063e653da0814610e0f578063e7841ec014610e38578063e98030c714610e63576103ce565b8063c0246668116100dc578063c024666814610d2c578063c492f04614610d55578063c49b9a8014610d7e578063dd62ed3e14610da7576103ce565b8063a8b9d24014610c31578063a9059cbb14610c6e578063ad56c13c14610cab578063b62496f514610cef576103ce565b806391b32b32116101855780639c1b8af5116101545780639c1b8af514610b75578063a26579ad14610ba0578063a2a957bb14610bcb578063a457c2d714610bf4576103ce565b806391b32b3214610acd57806395d89b4114610af657806398118cb414610b215780639a7a23d614610b4c576103ce565b80637cea46b9116101c15780637cea46b914610a2357806385141a7714610a4e578063871c128d14610a795780638da5cb5b14610aa2576103ce565b806370a0823114610979578063715018a6146109b657806375f0a874146109cd5780637719c8c6146109f8576103ce565b80633c2513de116102e25780635290c2501161027557806365b8dbc01161024457806365b8dbc0146108bf5780636843cd84146108e85780636b67c4df14610925578063700bb19114610950576103ce565b80635290c250146108055780635b89029c1461082e57806364b0f65314610857578063658c27a914610882576103ce565b80634a74bb02116102b15780634a74bb021461075b5780634c1fa520146107865780634e71d92d146107b15780634fbee193146107c8576103ce565b80633c2513de146106b357806341e6e8cb146106de57806349928a501461070757806349bd5a5e14610730576103ce565b8063205ce9d21161035a57806330bb4cff1161032957806330bb4cff146105f7578063313ce5671461062257806331e79db01461064d5780633950935114610676576103ce565b8063205ce9d21461053b578063224611731461056657806323b872dd1461058f5780632c1f5216146105cc576103ce565b8063127f4b2e11610396578063127f4b2e1461049157806313114a9d146104ba5780631694505e146104e557806318160ddd14610510576103ce565b806302259e9e146103d357806306fdde03146103fe578063095ea7b31461042957806310beae9514610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f4d565b6040516103f59190614667565b60405180910390f35b34801561040a57600080fd5b50610413610f53565b6040516104209190614712565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906147c8565b610fe5565b60405161045d9190614823565b60405180910390f35b34801561047257600080fd5b5061047b611003565b6040516104889190614667565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b3919061483e565b611009565b005b3480156104c657600080fd5b506104cf6110cf565b6040516104dc9190614667565b60405180910390f35b3480156104f157600080fd5b506104fa6110d5565b60405161050791906148ca565b60405180910390f35b34801561051c57600080fd5b506105256110fb565b6040516105329190614667565b60405180910390f35b34801561054757600080fd5b50610550611105565b60405161055d9190614667565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190614923565b61110b565b005b34801561059b57600080fd5b506105b660048036038101906105b19190614950565b6111cb565b6040516105c39190614823565b60405180910390f35b3480156105d857600080fd5b506105e16112c3565b6040516105ee91906149d6565b60405180910390f35b34801561060357600080fd5b5061060c6112e9565b6040516106199190614667565b60405180910390f35b34801561062e57600080fd5b50610637611381565b6040516106449190614a0d565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190614a28565b61138a565b005b34801561068257600080fd5b5061069d600480360381019061069891906147c8565b611496565b6040516106aa9190614823565b60405180910390f35b3480156106bf57600080fd5b506106c8611542565b6040516106d59190614667565b60405180910390f35b3480156106ea57600080fd5b506107056004803603810190610700919061483e565b611548565b005b34801561071357600080fd5b5061072e60048036038101906107299190614a28565b6115dd565b005b34801561073c57600080fd5b50610745611799565b6040516107529190614a64565b60405180910390f35b34801561076757600080fd5b506107706117bd565b60405161077d9190614823565b60405180910390f35b34801561079257600080fd5b5061079b6117d0565b6040516107a89190614667565b60405180910390f35b3480156107bd57600080fd5b506107c66117d6565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190614a28565b61187a565b6040516107fc9190614823565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061483e565b6118d0565b005b34801561083a57600080fd5b5061085560048036038101906108509190614aab565b611965565b005b34801561086357600080fd5b5061086c611a3c565b6040516108799190614667565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614a28565b611ad4565b6040516108b69190614823565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190614a28565b611b2a565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190614a28565b611cf6565b60405161091c9190614667565b60405180910390f35b34801561093157600080fd5b5061093a611d9b565b6040516109479190614667565b60405180910390f35b34801561095c57600080fd5b506109776004803603810190610972919061483e565b611da1565b005b34801561098557600080fd5b506109a0600480360381019061099b9190614a28565b611ea8565b6040516109ad9190614667565b60405180910390f35b3480156109c257600080fd5b506109cb611ef0565b005b3480156109d957600080fd5b506109e2611f78565b6040516109ef9190614afa565b60405180910390f35b348015610a0457600080fd5b50610a0d611f9e565b604051610a1a9190614667565b60405180910390f35b348015610a2f57600080fd5b50610a38611fa4565b604051610a459190614667565b60405180910390f35b348015610a5a57600080fd5b50610a63611faa565b604051610a709190614a64565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b919061483e565b611fd0565b005b348015610aae57600080fd5b50610ab761211f565b604051610ac49190614a64565b60405180910390f35b348015610ad957600080fd5b50610af46004803603810190610aef9190614923565b612149565b005b348015610b0257600080fd5b50610b0b612209565b604051610b189190614712565b60405180910390f35b348015610b2d57600080fd5b50610b3661229b565b604051610b439190614667565b60405180910390f35b348015610b5857600080fd5b50610b736004803603810190610b6e9190614aab565b6122a1565b005b348015610b8157600080fd5b50610b8a6123b9565b604051610b979190614667565b60405180910390f35b348015610bac57600080fd5b50610bb56123bf565b604051610bc29190614667565b60405180910390f35b348015610bd757600080fd5b50610bf26004803603810190610bed9190614b15565b612457565b005b348015610c0057600080fd5b50610c1b6004803603810190610c1691906147c8565b61253a565b604051610c289190614823565b60405180910390f35b348015610c3d57600080fd5b50610c586004803603810190610c539190614a28565b612625565b604051610c659190614667565b60405180910390f35b348015610c7a57600080fd5b50610c956004803603810190610c9091906147c8565b6126ca565b604051610ca29190614823565b60405180910390f35b348015610cb757600080fd5b50610cd26004803603810190610ccd9190614a28565b6126e8565b604051610ce6989796959493929190614b95565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614a28565b6127ac565b604051610d239190614823565b60405180910390f35b348015610d3857600080fd5b50610d536004803603810190610d4e9190614aab565b6127cc565b005b348015610d6157600080fd5b50610d7c6004803603810190610d779190614c78565b612983565b005b348015610d8a57600080fd5b50610da56004803603810190610da09190614cd8565b612adf565b005b348015610db357600080fd5b50610dce6004803603810190610dc99190614d05565b612baf565b604051610ddb9190614667565b60405180910390f35b348015610df057600080fd5b50610df9612c36565b604051610e069190614667565b60405180910390f35b348015610e1b57600080fd5b50610e366004803603810190610e319190614b15565b612c3c565b005b348015610e4457600080fd5b50610e4d612d1f565b604051610e5a9190614667565b60405180910390f35b348015610e6f57600080fd5b50610e8a6004803603810190610e85919061483e565b612db7565b005b348015610e9857600080fd5b50610eb36004803603810190610eae919061483e565b612ec3565b604051610ec7989796959493929190614b95565b60405180910390f35b348015610edc57600080fd5b50610ef76004803603810190610ef29190614a28565b612f87565b005b348015610f0557600080fd5b50610f206004803603810190610f1b91906147c8565b61307e565b005b348015610f2e57600080fd5b50610f3761317d565b604051610f449190614667565b60405180910390f35b60095481565b606060038054610f6290614d74565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8e90614d74565b8015610fdb5780601f10610fb057610100808354040283529160200191610fdb565b820191906000526020600020905b815481529060010190602001808311610fbe57829003601f168201915b5050505050905090565b6000610ff9610ff2613199565b84846131a1565b6001905092915050565b60145481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461106357600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110cb573d6000803e3d6000fd5b5050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60115481565b611113613199565b73ffffffffffffffffffffffffffffffffffffffff1661113161211f565b73ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90614df1565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006111d884848461336a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611223613199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90614e83565b60405180910390fd5b6112b7856112af613199565b8584036131a1565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611358573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137c9190614eb8565b905090565b60006009905090565b611392613199565b73ffffffffffffffffffffffffffffffffffffffff166113b061211f565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90614df1565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b81526004016114619190614a64565b600060405180830381600087803b15801561147b57600080fd5b505af115801561148f573d6000803e3d6000fd5b5050505050565b60006115386114a3613199565b8484600160006114b1613199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115339190614f14565b6131a1565b6001905092915050565b60155481565b611550613199565b73ffffffffffffffffffffffffffffffffffffffff1661156e61211f565b73ffffffffffffffffffffffffffffffffffffffff16146115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90614df1565b60405180910390fd5b633b9aca00816115d49190614f48565b60098190555050565b6115e5613199565b73ffffffffffffffffffffffffffffffffffffffff1661160361211f565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614df1565b60405180910390fd5b6001601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b81526004016117649190614a64565b600060405180830381600087803b15801561177e57600080fd5b505af1158015611792573d6000803e3d6000fd5b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600760159054906101000a900460ff1681565b60125481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc4c4b373360006040518363ffffffff1660e01b8152600401611834929190614f8a565b6020604051808303816000875af1158015611853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118779190614fc8565b50565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6118d8613199565b73ffffffffffffffffffffffffffffffffffffffff166118f661211f565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390614df1565b60405180910390fd5b633b9aca008161195c9190614f48565b600a8190555050565b61196d613199565b73ffffffffffffffffffffffffffffffffffffffff1661198b61211f565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890614df1565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309bbedde6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acf9190614eb8565b905090565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b32613199565b73ffffffffffffffffffffffffffffffffffffffff16611b5061211f565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90614df1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d90615067565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611d539190614a64565b602060405180830381865afa158015611d70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d949190614eb8565b9050919050565b600f5481565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ffb2c479856040518263ffffffff1660e01b8152600401611e019190614667565b6060604051808303816000875af1158015611e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e449190615087565b9250925092503273ffffffffffffffffffffffffffffffffffffffff16600015157fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a9885858589604051611e9a94939291906150da565b60405180910390a350505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ef8613199565b73ffffffffffffffffffffffffffffffffffffffff16611f1661211f565b73ffffffffffffffffffffffffffffffffffffffff1614611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390614df1565b60405180910390fd5b611f766000613ae3565b565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600c5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611fd8613199565b73ffffffffffffffffffffffffffffffffffffffff16611ff661211f565b73ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614df1565b60405180910390fd5b62030d40811015801561206257506207a1208111155b6120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890615191565b60405180910390fd5b60175481036120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90615223565b60405180910390fd5b601754817f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db760405160405180910390a38060178190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612151613199565b73ffffffffffffffffffffffffffffffffffffffff1661216f61211f565b73ffffffffffffffffffffffffffffffffffffffff16146121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90614df1565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606004805461221890614d74565b80601f016020809104026020016040519081016040528092919081815260200182805461224490614d74565b80156122915780601f1061226657610100808354040283529160200191612291565b820191906000526020600020905b81548152906001019060200180831161227457829003601f168201915b5050505050905090565b600d5481565b6122a9613199565b73ffffffffffffffffffffffffffffffffffffffff166122c761211f565b73ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614df1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906152db565b60405180910390fd5b6123b58282613ba9565b5050565b60175481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636f2789ec6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561242e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124529190614eb8565b905090565b61245f613199565b73ffffffffffffffffffffffffffffffffffffffff1661247d61211f565b73ffffffffffffffffffffffffffffffffffffffff16146124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614df1565b60405180910390fd5b83600c8190555082600d8190555081600f819055508060108190555061252e601054612520600f54612512600d54600c5461318390919063ffffffff16565b61318390919063ffffffff16565b61318390919063ffffffff16565b600e8190555050505050565b60008060016000612549613199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd9061536d565b60405180910390fd5b61261a612611613199565b858584036131a1565b600191505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016126829190614a64565b602060405180830381865afa15801561269f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c39190614eb8565b9050919050565b60006126de6126d7613199565b848461336a565b6001905092915050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f18a6040518263ffffffff1660e01b815260040161274f9190614a64565b61010060405180830381865afa15801561276d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279191906153ce565b97509750975097509750975097509750919395975091939597565b601a6020528060005260406000206000915054906101000a900460ff1681565b6127d4613199565b73ffffffffffffffffffffffffffffffffffffffff166127f261211f565b73ffffffffffffffffffffffffffffffffffffffff1614612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f90614df1565b60405180910390fd5b801515601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d1906154f6565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516129779190614823565b60405180910390a25050565b61298b613199565b73ffffffffffffffffffffffffffffffffffffffff166129a961211f565b73ffffffffffffffffffffffffffffffffffffffff16146129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614df1565b60405180910390fd5b60005b83839050811015612a9e578160186000868685818110612a2557612a24615516565b5b9050602002016020810190612a3a9190614a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612a9690615545565b915050612a02565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051612ad293929190615650565b60405180910390a1505050565b612ae7613199565b73ffffffffffffffffffffffffffffffffffffffff16612b0561211f565b73ffffffffffffffffffffffffffffffffffffffff1614612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290614df1565b60405180910390fd5b80600760156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051612ba49190614823565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b612c44613199565b73ffffffffffffffffffffffffffffffffffffffff16612c6261211f565b73ffffffffffffffffffffffffffffffffffffffff1614612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf90614df1565b60405180910390fd5b83601381905550826012819055508160148190555080601581905550612d13601554612d05601454612cf760125460115461318390919063ffffffff16565b61318390919063ffffffff16565b61318390919063ffffffff16565b60138190555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e7841ec06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db29190614eb8565b905090565b612dbf613199565b73ffffffffffffffffffffffffffffffffffffffff16612ddd61211f565b73ffffffffffffffffffffffffffffffffffffffff1614612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614df1565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e98030c7826040518263ffffffff1660e01b8152600401612e8e9190614667565b600060405180830381600087803b158015612ea857600080fd5b505af1158015612ebc573d6000803e3d6000fd5b5050505050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635183d6fd8a6040518263ffffffff1660e01b8152600401612f2a9190614667565b61010060405180830381865afa158015612f48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f6c91906153ce565b97509750975097509750975097509750919395975091939597565b612f8f613199565b73ffffffffffffffffffffffffffffffffffffffff16612fad61211f565b73ffffffffffffffffffffffffffffffffffffffff1614613003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffa90614df1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613069906156f4565b60405180910390fd5b61307b81613ae3565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146130d857600080fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613135929190615735565b6020604051808303816000875af1158015613154573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131789190614fc8565b505050565b60105481565b600081836131919190614f14565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613207906157d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361327f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327690615862565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161335d9190614667565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d0906158f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343f90615986565b60405180910390fd5b600081036134615761345c83836000613d70565b613ade565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135045750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561355a5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135a5576009548111156135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90615a18565b60405180910390fd5b5b60006135b030611ea8565b90506000600a5482101590508080156135d65750600760149054906101000a900460ff16155b801561362c5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156136445750600760159054906101000a900460ff165b156136535761365282613fef565b5b601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136f75750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561389957600061373a606461372c61371d601054600e546142d090919063ffffffff16565b876142e690919063ffffffff16565b6142fc90919063ffffffff16565b905060006137666064613758601054886142e690919063ffffffff16565b6142fc90919063ffffffff16565b9050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613823576137f660646137e86137d96015546013546142d090919063ffffffff16565b886142e690919063ffffffff16565b6142fc90919063ffffffff16565b91506138206064613812601554886142e690919063ffffffff16565b6142fc90919063ffffffff16565b90505b613848613839828461318390919063ffffffff16565b866142d090919063ffffffff16565b9450600082111561385f5761385e873084613d70565b5b60008111156138965761389587600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613d70565b5b50505b6138a4858585613d70565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866138ec88611ea8565b6040518363ffffffff1660e01b8152600401613909929190615a38565b600060405180830381600087803b15801561392357600080fd5b505af1925050508015613934575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8561397d87611ea8565b6040518363ffffffff1660e01b815260040161399a929190615a38565b600060405180830381600087803b1580156139b457600080fd5b505af19250505080156139c5575060015b50600760149054906101000a900460ff16613adb5760006017549050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ffb2c479826040518263ffffffff1660e01b8152600401613a3c9190614667565b6060604051808303816000875af1925050508015613a7857506040513d601f19601f82011682018060405250810190613a759190615087565b60015b15613ad9573273ffffffffffffffffffffffffffffffffffffffff16600115157fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a9885858589604051613acd94939291906150da565b60405180910390a35050505b505b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503613c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3290615ad3565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015613d2657600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0836040518263ffffffff1660e01b8152600401613cf39190614a64565b600060405180830381600087803b158015613d0d57600080fd5b505af1158015613d21573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd6906158f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e4590615986565b60405180910390fd5b613e59838383614312565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed690615b65565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f729190614f14565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613fd69190614667565b60405180910390a3613fe9848484614317565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000614048600d5461403a61402b6002600e546142e690919063ffffffff16565b856142fc90919063ffffffff16565b6142e690919063ffffffff16565b9050600081836140589190615b85565b90506000479050614069823061431c565b600081476140779190615b85565b905060006140cb6140a860125461409a60026013546142e690919063ffffffff16565b6142d090919063ffffffff16565b6140bd601254856142e690919063ffffffff16565b6142fc90919063ffffffff16565b90506140d78582614596565b600061412860145461411a6140f96012546013546142d090919063ffffffff16565b61410c86886142d090919063ffffffff16565b6142fc90919063ffffffff16565b6142e690919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614192573d6000803e3d6000fd5b5060004790506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516141e090615bea565b60006040518083038185875af1925050503d806000811461421d576040519150601f19603f3d011682016040523d82523d6000602084013e614222565b606091505b505090508015614271577f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc388886142599190615b85565b83604051614268929190615bff565b60405180910390a15b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148688866040516142a2929190615bff565b60405180910390a150505050505050506000600760146101000a81548160ff02191690831515021790555050565b600081836142de9190615b85565b905092915050565b600081836142f49190614f48565b905092915050565b6000818361430a9190615c57565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561433957614338615c88565b5b6040519080825280602002602001820160405280156143675781602001602082028036833780820191505090505b509050308160008151811061437f5761437e615516565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061444a9190615cb7565b8160018151811061445e5761445d615516565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050826144c530600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612baf565b10156144fb576144fa30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196131a1565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008486426040518663ffffffff1660e01b815260040161455f959493929190615da5565b600060405180830381600087803b15801561457957600080fd5b505af115801561458d573d6000803e3d6000fd5b50505050505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806145e261211f565b426040518863ffffffff1660e01b815260040161460496959493929190615dff565b60606040518083038185885af1158015614622573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146479190615087565b5050505050565b6000819050919050565b6146618161464e565b82525050565b600060208201905061467c6000830184614658565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146bc5780820151818401526020810190506146a1565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e482614682565b6146ee818561468d565b93506146fe81856020860161469e565b614707816146c8565b840191505092915050565b6000602082019050818103600083015261472c81846146d9565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006147698261473e565b9050919050565b6147798161475e565b811461478457600080fd5b50565b60008135905061479681614770565b92915050565b6147a58161464e565b81146147b057600080fd5b50565b6000813590506147c28161479c565b92915050565b600080604083850312156147df576147de614734565b5b60006147ed85828601614787565b92505060206147fe858286016147b3565b9150509250929050565b60008115159050919050565b61481d81614808565b82525050565b60006020820190506148386000830184614814565b92915050565b60006020828403121561485457614853614734565b5b6000614862848285016147b3565b91505092915050565b6000819050919050565b600061489061488b6148868461473e565b61486b565b61473e565b9050919050565b60006148a282614875565b9050919050565b60006148b482614897565b9050919050565b6148c4816148a9565b82525050565b60006020820190506148df60008301846148bb565b92915050565b60006148f08261473e565b9050919050565b614900816148e5565b811461490b57600080fd5b50565b60008135905061491d816148f7565b92915050565b60006020828403121561493957614938614734565b5b60006149478482850161490e565b91505092915050565b60008060006060848603121561496957614968614734565b5b600061497786828701614787565b935050602061498886828701614787565b9250506040614999868287016147b3565b9150509250925092565b60006149ae82614875565b9050919050565b60006149c0826149a3565b9050919050565b6149d0816149b5565b82525050565b60006020820190506149eb60008301846149c7565b92915050565b600060ff82169050919050565b614a07816149f1565b82525050565b6000602082019050614a2260008301846149fe565b92915050565b600060208284031215614a3e57614a3d614734565b5b6000614a4c84828501614787565b91505092915050565b614a5e8161475e565b82525050565b6000602082019050614a796000830184614a55565b92915050565b614a8881614808565b8114614a9357600080fd5b50565b600081359050614aa581614a7f565b92915050565b60008060408385031215614ac257614ac1614734565b5b6000614ad085828601614787565b9250506020614ae185828601614a96565b9150509250929050565b614af4816148e5565b82525050565b6000602082019050614b0f6000830184614aeb565b92915050565b60008060008060808587031215614b2f57614b2e614734565b5b6000614b3d878288016147b3565b9450506020614b4e878288016147b3565b9350506040614b5f878288016147b3565b9250506060614b70878288016147b3565b91505092959194509250565b6000819050919050565b614b8f81614b7c565b82525050565b600061010082019050614bab600083018b614a55565b614bb8602083018a614b86565b614bc56040830189614b86565b614bd26060830188614658565b614bdf6080830187614658565b614bec60a0830186614658565b614bf960c0830185614658565b614c0660e0830184614658565b9998505050505050505050565b600080fd5b600080fd5b600080fd5b60008083601f840112614c3857614c37614c13565b5b8235905067ffffffffffffffff811115614c5557614c54614c18565b5b602083019150836020820283011115614c7157614c70614c1d565b5b9250929050565b600080600060408486031215614c9157614c90614734565b5b600084013567ffffffffffffffff811115614caf57614cae614739565b5b614cbb86828701614c22565b93509350506020614cce86828701614a96565b9150509250925092565b600060208284031215614cee57614ced614734565b5b6000614cfc84828501614a96565b91505092915050565b60008060408385031215614d1c57614d1b614734565b5b6000614d2a85828601614787565b9250506020614d3b85828601614787565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d8c57607f821691505b602082108103614d9f57614d9e614d45565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ddb60208361468d565b9150614de682614da5565b602082019050919050565b60006020820190508181036000830152614e0a81614dce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614e6d60288361468d565b9150614e7882614e11565b604082019050919050565b60006020820190508181036000830152614e9c81614e60565b9050919050565b600081519050614eb28161479c565b92915050565b600060208284031215614ece57614ecd614734565b5b6000614edc84828501614ea3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614f1f8261464e565b9150614f2a8361464e565b9250828201905080821115614f4257614f41614ee5565b5b92915050565b6000614f538261464e565b9150614f5e8361464e565b9250828202614f6c8161464e565b91508282048414831517614f8357614f82614ee5565b5b5092915050565b6000604082019050614f9f6000830185614aeb565b614fac6020830184614814565b9392505050565b600081519050614fc281614a7f565b92915050565b600060208284031215614fde57614fdd614734565b5b6000614fec84828501614fb3565b91505092915050565b7f4f52424e3a2054686520726f7574657220616c7265616479206861732074686160008201527f7420616464726573730000000000000000000000000000000000000000000000602082015250565b600061505160298361468d565b915061505c82614ff5565b604082019050919050565b6000602082019050818103600083015261508081615044565b9050919050565b6000806000606084860312156150a05761509f614734565b5b60006150ae86828701614ea3565b93505060206150bf86828701614ea3565b92505060406150d086828701614ea3565b9150509250925092565b60006080820190506150ef6000830187614658565b6150fc6020830186614658565b6151096040830185614658565b6151166060830184614658565b95945050505050565b7f4f52424e3a20676173466f7250726f63657373696e67206d757374206265206260008201527f65747765656e203230302c30303020616e64203530302c303030000000000000602082015250565b600061517b603a8361468d565b91506151868261511f565b604082019050919050565b600060208201905081810360008301526151aa8161516e565b9050919050565b7f4f52424e3a2043616e6e6f742075706461746520676173466f7250726f63657360008201527f73696e6720746f2073616d652076616c75650000000000000000000000000000602082015250565b600061520d60328361468d565b9150615218826151b1565b604082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b7f4f52424e3a205468652050616e63616b655377617020706169722063616e6e6f60008201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b60006152c5604b8361468d565b91506152d082615243565b606082019050919050565b600060208201905081810360008301526152f4816152b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061535760258361468d565b9150615362826152fb565b604082019050919050565b600060208201905081810360008301526153868161534a565b9050919050565b60008151905061539c81614770565b92915050565b6153ab81614b7c565b81146153b657600080fd5b50565b6000815190506153c8816153a2565b92915050565b600080600080600080600080610100898b0312156153ef576153ee614734565b5b60006153fd8b828c0161538d565b985050602061540e8b828c016153b9565b975050604061541f8b828c016153b9565b96505060606154308b828c01614ea3565b95505060806154418b828c01614ea3565b94505060a06154528b828c01614ea3565b93505060c06154638b828c01614ea3565b92505060e06154748b828c01614ea3565b9150509295985092959890939650565b7f4f52424e3a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b60006154e060308361468d565b91506154eb82615484565b604082019050919050565b6000602082019050818103600083015261550f816154d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006155508261464e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361558257615581614ee5565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b6155b18161475e565b82525050565b60006155c383836155a8565b60208301905092915050565b60006155de6020840184614787565b905092915050565b6000602082019050919050565b60006155ff838561558d565b935061560a8261559e565b8060005b858110156156435761562082846155cf565b61562a88826155b7565b9750615635836155e6565b92505060018101905061560e565b5085925050509392505050565b6000604082019050818103600083015261566b8185876155f3565b905061567a6020830184614814565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156de60268361468d565b91506156e982615682565b604082019050919050565b6000602082019050818103600083015261570d816156d1565b9050919050565b600061571f82614897565b9050919050565b61572f81615714565b82525050565b600060408201905061574a6000830185615726565b6157576020830184614658565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157ba60248361468d565b91506157c58261575e565b604082019050919050565b600060208201905081810360008301526157e9816157ad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061584c60228361468d565b9150615857826157f0565b604082019050919050565b6000602082019050818103600083015261587b8161583f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158de60258361468d565b91506158e982615882565b604082019050919050565b6000602082019050818103600083015261590d816158d1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061597060238361468d565b915061597b82615914565b604082019050919050565b6000602082019050818103600083015261599f81615963565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e000000000000602082015250565b6000615a02603a8361468d565b9150615a0d826159a6565b604082019050919050565b60006020820190508181036000830152615a31816159f5565b9050919050565b6000604082019050615a4d6000830185614aeb565b615a5a6020830184614658565b9392505050565b7f4f52424e3a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b6000615abd603e8361468d565b9150615ac882615a61565b604082019050919050565b60006020820190508181036000830152615aec81615ab0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615b4f60268361468d565b9150615b5a82615af3565b604082019050919050565b60006020820190508181036000830152615b7e81615b42565b9050919050565b6000615b908261464e565b9150615b9b8361464e565b9250828203905081811115615bb357615bb2614ee5565b5b92915050565b600081905092915050565b50565b6000615bd4600083615bb9565b9150615bdf82615bc4565b600082019050919050565b6000615bf582615bc7565b9150819050919050565b6000604082019050615c146000830185614658565b615c216020830184614658565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c628261464e565b9150615c6d8361464e565b925082615c7d57615c7c615c28565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060208284031215615ccd57615ccc614734565b5b6000615cdb8482850161538d565b91505092915050565b6000819050919050565b6000615d09615d04615cff84615ce4565b61486b565b61464e565b9050919050565b615d1981615cee565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000615d5282615d1f565b615d5c818561558d565b9350615d6783615d2a565b8060005b83811015615d98578151615d7f88826155b7565b9750615d8a83615d3a565b925050600181019050615d6b565b5085935050505092915050565b600060a082019050615dba6000830188614658565b615dc76020830187615d10565b8181036040830152615dd98186615d47565b9050615de86060830185614a55565b615df56080830184614658565b9695505050505050565b600060c082019050615e146000830189614a55565b615e216020830188614658565b615e2e6040830187615d10565b615e3b6060830186615d10565b615e486080830185614a55565b615e5560a0830184614658565b97965050505050505056fea264697066735822122007b0dd76368c29a012c6ed021127b4878cd3081ccbef0d406a0a59c30b5fd9c464736f6c6343000811003360a06040523480156200001157600080fd5b506040518060400160405280601581526020017f4f52424e5f4469766964656e645f547261636b657200000000000000000000008152506040518060400160405280601581526020017f4f52424e5f4469766964656e645f547261636b65720000000000000000000000815250818181600390816200009191906200042d565b508060049081620000a391906200042d565b5050505050620000c8620000bc620000e560201b60201c565b620000ed60201b60201c565b610e106011819055506509184e72a0006080818152505062000514565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023557607f821691505b6020821081036200024b576200024a620001ed565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002b57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000276565b620002c1868362000276565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200030e620003086200030284620002d9565b620002e3565b620002d9565b9050919050565b6000819050919050565b6200032a83620002ed565b62000342620003398262000315565b84845462000283565b825550505050565b600090565b620003596200034a565b620003668184846200031f565b505050565b5b818110156200038e57620003826000826200034f565b6001810190506200036c565b5050565b601f821115620003dd57620003a78162000251565b620003b28462000266565b81016020851015620003c2578190505b620003da620003d18562000266565b8301826200036b565b50505b505050565b600082821c905092915050565b60006200040260001984600802620003e2565b1980831691505092915050565b60006200041d8383620003ef565b9150826002028217905092915050565b6200043882620001b3565b67ffffffffffffffff811115620004545762000453620001be565b5b6200046082546200021c565b6200046d82828562000392565b600060209050601f831160018114620004a5576000841562000490578287015190505b6200049c85826200040f565b8655506200050c565b601f198416620004b58662000251565b60005b82811015620004df57848901518255600182019150602085019450602081019050620004b8565b86831015620004ff5784890151620004fb601f891682620003ef565b8355505b6001600288020188555050505b505050505050565b608051613c08620005376000396000818161155f01526116d70152613c086000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063bc4c4b37116100a0578063e7841ec01161006f578063e7841ec0146107ee578063e98030c714610819578063f2fde38b14610842578063fbcbc0f11461086b578063ffb2c479146108af57610217565b8063bc4c4b3714610720578063be10b6141461075d578063dd62ed3e14610788578063e30443bc146107c557610217565b806395d89b41116100e757806395d89b4114610601578063a457c2d71461062c578063a8b9d24014610669578063a9059cbb146106a6578063aafd847a146106e357610217565b8063715018a61461055757806385a6b3ae1461056e5780638da5cb5b1461059957806391b89fba146105c457610217565b80633009a6091161019b5780634e7b827f1161016a5780634e7b827f146104575780635183d6fd146104945780636a474002146104d85780636f2789ec146104ef57806370a082311461051a57610217565b80633009a6091461039b578063313ce567146103c657806331e79db0146103f1578063395093511461041a57610217565b806318160ddd116101d757806318160ddd146102b9578063226cfa3d146102e457806323b872dd1461032157806327ce01471461035e57610217565b806303c833021461021c57806306fdde0314610226578063095ea7b31461025157806309bbedde1461028e57610217565b36610217576102156108ee565b005b600080fd5b6102246108ee565b005b34801561023257600080fd5b5061023b6109c7565b60405161024891906129d8565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612a93565b610a59565b6040516102859190612aee565b60405180910390f35b34801561029a57600080fd5b506102a3610a77565b6040516102b09190612b18565b60405180910390f35b3480156102c557600080fd5b506102ce610a87565b6040516102db9190612b18565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612b33565b610a91565b6040516103189190612b18565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612b60565b610aa9565b6040516103559190612aee565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612b33565b610ba1565b6040516103929190612b18565b60405180910390f35b3480156103a757600080fd5b506103b0610c44565b6040516103bd9190612b18565b60405180910390f35b3480156103d257600080fd5b506103db610c4a565b6040516103e89190612bcf565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612b33565b610c53565b005b34801561042657600080fd5b50610441600480360381019061043c9190612a93565b610e3b565b60405161044e9190612aee565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190612b33565b610ee7565b60405161048b9190612aee565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612bea565b610f07565b6040516104cf989796959493929190612c3f565b60405180910390f35b3480156104e457600080fd5b506104ed61107c565b005b3480156104fb57600080fd5b506105046110bf565b6040516105119190612b18565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612b33565b6110c5565b60405161054e9190612b18565b60405180910390f35b34801561056357600080fd5b5061056c61110d565b005b34801561057a57600080fd5b50610583611195565b6040516105909190612b18565b60405180910390f35b3480156105a557600080fd5b506105ae61119b565b6040516105bb9190612cbd565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190612b33565b6111c5565b6040516105f89190612b18565b60405180910390f35b34801561060d57600080fd5b506106166111d7565b60405161062391906129d8565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190612a93565b611269565b6040516106609190612aee565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612b33565b611354565b60405161069d9190612b18565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612a93565b6113b7565b6040516106da9190612aee565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190612b33565b6113d5565b6040516107179190612b18565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190612d42565b61141e565b6040516107549190612aee565b60405180910390f35b34801561076957600080fd5b5061077261155d565b60405161077f9190612b18565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612d82565b611581565b6040516107bc9190612b18565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612dc2565b611608565b005b3480156107fa57600080fd5b50610803611802565b6040516108109190612b18565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612bea565b61180c565b005b34801561084e57600080fd5b5061086960048036038101906108649190612b33565b61195a565b005b34801561087757600080fd5b50610892600480360381019061088d9190612b33565b611a51565b6040516108a6989796959493929190612c3f565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d19190612bea565b611c30565b6040516108e593929190612e02565b60405180910390f35b60006108f8610a87565b1161090257600080fd5b60003411156109c557610955610916610a87565b61093a70010000000000000000000000000000000034611dc190919063ffffffff16565b6109449190612e97565b600554611dd790919063ffffffff16565b6005819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511346040516109a19190612b18565b60405180910390a26109be34600854611dd790919063ffffffff16565b6008819055505b565b6060600380546109d690612ef7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0290612ef7565b8015610a4f5780601f10610a2457610100808354040283529160200191610a4f565b820191906000526020600020905b815481529060010190602001808311610a3257829003601f168201915b5050505050905090565b6000610a6d610a66611ded565b8484611df5565b6001905092915050565b6000600a60000180549050905090565b6000600254905090565b60106020528060005260406000206000915090505481565b6000610ab6848484611fbe565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b01611ded565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890612f9a565b60405180910390fd5b610b9585610b8d611ded565b858403611df5565b60019150509392505050565b6000700100000000000000000000000000000000610c33610c2e600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c20610c1b610c0a886110c5565b600554611dc190919063ffffffff16565b612004565b61207190919063ffffffff16565b612087565b610c3d9190612e97565b9050919050565b600e5481565b60006009905090565b610c5b611ded565b73ffffffffffffffffffffffffffffffffffffffff16610c7961119b565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690613006565b60405180910390fd5b600f60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d2657600080fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d898160006120d4565b600a73c35552467bc6bffd7faa1c39d4692c5d081deb27634c60db9c9091836040518363ffffffff1660e01b8152600401610dc592919061303c565b60006040518083038186803b158015610ddd57600080fd5b505af4158015610df1573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2560405160405180910390a250565b6000610edd610e48611ded565b848460016000610e56611ded565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ed89190613065565b611df5565b6001905092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600080600080600080600080600a73c35552467bc6bffd7faa1c39d4692c5d081deb2763deb3d89690916040518263ffffffff1660e01b8152600401610f4d9190613099565b602060405180830381865af4158015610f6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8e91906130c9565b8910610fd55760007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80600080600080600097509750975097509750975097509750611071565b6000600a73c35552467bc6bffd7faa1c39d4692c5d081deb2763d1aa9e7e90918c6040518363ffffffff1660e01b8152600401611013929190613105565b602060405180830381865af4158015611030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110549190613143565b905061105f81611a51565b98509850985098509850985098509850505b919395975091939597565b60006110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b49061322e565b60405180910390fd5b565b60115481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611115611ded565b73ffffffffffffffffffffffffffffffffffffffff1661113361119b565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090613006565b60405180910390fd5b6111936000612141565b565b60085481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006111d082611354565b9050919050565b6060600480546111e690612ef7565b80601f016020809104026020016040519081016040528092919081815260200182805461121290612ef7565b801561125f5780601f106112345761010080835404028352916020019161125f565b820191906000526020600020905b81548152906001019060200180831161124257829003601f168201915b5050505050905090565b60008060016000611278611ded565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c906132c0565b60405180910390fd5b611349611340611ded565b85858403611df5565b600191505092915050565b60006113b0600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a284610ba1565b61220790919063ffffffff16565b9050919050565b60006113cb6113c4611ded565b8484611fbe565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611428611ded565b73ffffffffffffffffffffffffffffffffffffffff1661144661119b565b73ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390613006565b60405180910390fd5b60006114a78461221d565b905060008111156115515742601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508215158473ffffffffffffffffffffffffffffffffffffffff167fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0928360405161153f9190612b18565b60405180910390a36001915050611557565b60009150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611610611ded565b73ffffffffffffffffffffffffffffffffffffffff1661162e61119b565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613006565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117fe577f000000000000000000000000000000000000000000000000000000000000000081106117795761170682826120d4565b600a73c35552467bc6bffd7faa1c39d4692c5d081deb2763bc2b405c909184846040518463ffffffff1660e01b81526004016117449392919061333f565b60006040518083038186803b15801561175c57600080fd5b505af4158015611770573d6000803e3d6000fd5b505050506117f1565b6117848260006120d4565b600a73c35552467bc6bffd7faa1c39d4692c5d081deb27634c60db9c9091846040518363ffffffff1660e01b81526004016117c0929190613376565b60006040518083038186803b1580156117d857600080fd5b505af41580156117ec573d6000803e3d6000fd5b505050505b6117fc82600161141e565b505b5050565b6000600e54905090565b611814611ded565b73ffffffffffffffffffffffffffffffffffffffff1661183261119b565b73ffffffffffffffffffffffffffffffffffffffff1614611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90613006565b60405180910390fd5b610e10811015801561189d5750620151808111155b6118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613437565b60405180910390fd5b6011548103611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906134c9565b60405180910390fd5b601154817f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f60405160405180910390a38060118190555050565b611962611ded565b73ffffffffffffffffffffffffffffffffffffffff1661198061119b565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613006565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c9061355b565b60405180910390fd5b611a4e81612141565b50565b600080600080600080600080889750600a73c35552467bc6bffd7faa1c39d4692c5d081deb276317e142d190918a6040518363ffffffff1660e01b8152600401611a9c92919061303c565b602060405180830381865af4158015611ab9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611add91906135a7565b96507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff955060008712611b8257600e54871115611b3057611b29600e548861244290919063ffffffff16565b9550611b81565b6000600e54600a6000018054905011611b4a576000611b68565b611b67600e54600a6000018054905061220790919063ffffffff16565b5b9050611b7d818961207190919063ffffffff16565b9650505b5b611b8b88611354565b9450611b9688610ba1565b9350601060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054925060008311611be9576000611bff565b611bfe60115484611dd790919063ffffffff16565b5b9150428211611c0f576000611c23565b611c22428361220790919063ffffffff16565b5b9050919395975091939597565b600080600080600a60000180549050905060008103611c5b57600080600e5493509350935050611dba565b6000600e5490506000805a90506000805b8984108015611c7a57508582105b15611da1578480611c8a906135d4565b955050600a600001805490508510611ca157600094505b6000600a6000018681548110611cba57611cb961361c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611d2f601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612458565b15611d5457611d3f81600161141e565b15611d53578180611d4f906135d4565b9250505b5b8280611d5f906135d4565b93505060005a905080851115611d9757611d94611d85828761220790919063ffffffff16565b87611dd790919063ffffffff16565b95505b8094505050611c6c565b84600e819055508181600e549850985098505050505050505b9193909250565b60008183611dcf919061364b565b905092915050565b60008183611de59190613065565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b906136ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eca90613791565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fb19190612b18565b60405180910390a3505050565b6000611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690613823565b60405180910390fd5b505050565b60007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821115612069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612060906138b5565b60405180910390fd5b819050919050565b6000818361207f91906138d5565b905092915050565b6000808212156120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c390613965565b60405180910390fd5b819050919050565b60006120df836110c5565b9050808211156121105760006120fe828461220790919063ffffffff16565b905061210a848261248b565b5061213c565b8082101561213b57600061212d838361220790919063ffffffff16565b9050612139848261254a565b505b5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836122159190613985565b905092915050565b60008061222983611354565b905060008111156124375761228681600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dd790919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161230f9190612b18565b60405180910390a260008373ffffffffffffffffffffffffffffffffffffffff1682610bb890604051612341906139ea565b600060405180830381858888f193505050503d806000811461237f576040519150601f19603f3d011682016040523d82523d6000602084013e612384565b606091505b505090508061242d576123df82600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220790919063ffffffff16565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060009250505061243d565b819250505061243d565b60009150505b919050565b6000818361245091906139ff565b905092915050565b60004282111561246b5760009050612486565b601154612481834261220790919063ffffffff16565b101590505b919050565b6124958282612609565b6125036124b56124b083600554611dc190919063ffffffff16565b612004565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244290919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6125548282612768565b6125c261257461256f83600554611dc190919063ffffffff16565b612004565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461207190919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90613a8e565b60405180910390fd5b6126846000838361293e565b80600260008282546126969190613065565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126eb9190613065565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127509190612b18565b60405180910390a361276460008383612943565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ce90613b20565b60405180910390fd5b6127e38260008361293e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090613bb2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546128c09190613985565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129259190612b18565b60405180910390a361293983600084612943565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612982578082015181840152602081019050612967565b60008484015250505050565b6000601f19601f8301169050919050565b60006129aa82612948565b6129b48185612953565b93506129c4818560208601612964565b6129cd8161298e565b840191505092915050565b600060208201905081810360008301526129f2818461299f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a2a826129ff565b9050919050565b612a3a81612a1f565b8114612a4557600080fd5b50565b600081359050612a5781612a31565b92915050565b6000819050919050565b612a7081612a5d565b8114612a7b57600080fd5b50565b600081359050612a8d81612a67565b92915050565b60008060408385031215612aaa57612aa96129fa565b5b6000612ab885828601612a48565b9250506020612ac985828601612a7e565b9150509250929050565b60008115159050919050565b612ae881612ad3565b82525050565b6000602082019050612b036000830184612adf565b92915050565b612b1281612a5d565b82525050565b6000602082019050612b2d6000830184612b09565b92915050565b600060208284031215612b4957612b486129fa565b5b6000612b5784828501612a48565b91505092915050565b600080600060608486031215612b7957612b786129fa565b5b6000612b8786828701612a48565b9350506020612b9886828701612a48565b9250506040612ba986828701612a7e565b9150509250925092565b600060ff82169050919050565b612bc981612bb3565b82525050565b6000602082019050612be46000830184612bc0565b92915050565b600060208284031215612c0057612bff6129fa565b5b6000612c0e84828501612a7e565b91505092915050565b612c2081612a1f565b82525050565b6000819050919050565b612c3981612c26565b82525050565b600061010082019050612c55600083018b612c17565b612c62602083018a612c30565b612c6f6040830189612c30565b612c7c6060830188612b09565b612c896080830187612b09565b612c9660a0830186612b09565b612ca360c0830185612b09565b612cb060e0830184612b09565b9998505050505050505050565b6000602082019050612cd26000830184612c17565b92915050565b6000612ce3826129ff565b9050919050565b612cf381612cd8565b8114612cfe57600080fd5b50565b600081359050612d1081612cea565b92915050565b612d1f81612ad3565b8114612d2a57600080fd5b50565b600081359050612d3c81612d16565b92915050565b60008060408385031215612d5957612d586129fa565b5b6000612d6785828601612d01565b9250506020612d7885828601612d2d565b9150509250929050565b60008060408385031215612d9957612d986129fa565b5b6000612da785828601612a48565b9250506020612db885828601612a48565b9150509250929050565b60008060408385031215612dd957612dd86129fa565b5b6000612de785828601612d01565b9250506020612df885828601612a7e565b9150509250929050565b6000606082019050612e176000830186612b09565b612e246020830185612b09565b612e316040830184612b09565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ea282612a5d565b9150612ead83612a5d565b925082612ebd57612ebc612e39565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f0f57607f821691505b602082108103612f2257612f21612ec8565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612f84602883612953565b9150612f8f82612f28565b604082019050919050565b60006020820190508181036000830152612fb381612f77565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ff0602083612953565b9150612ffb82612fba565b602082019050919050565b6000602082019050818103600083015261301f81612fe3565b9050919050565b8082525050565b61303681612a1f565b82525050565b60006040820190506130516000830185613026565b61305e602083018461302d565b9392505050565b600061307082612a5d565b915061307b83612a5d565b925082820190508082111561309357613092612e68565b5b92915050565b60006020820190506130ae6000830184613026565b92915050565b6000815190506130c381612a67565b92915050565b6000602082840312156130df576130de6129fa565b5b60006130ed848285016130b4565b91505092915050565b6130ff81612a5d565b82525050565b600060408201905061311a6000830185613026565b61312760208301846130f6565b9392505050565b60008151905061313d81612a31565b92915050565b600060208284031215613159576131586129fa565b5b60006131678482850161312e565b91505092915050565b7f4f52424e5f4469766964656e645f547261636b65723a2077697468647261774460008201527f69766964656e642064697361626c65642e20557365207468652027636c61696d60208201527f272066756e6374696f6e206f6e20746865206d61696e204f52424e20636f6e7460408201527f726163742e000000000000000000000000000000000000000000000000000000606082015250565b6000613218606583612953565b915061322382613170565b608082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006132aa602583612953565b91506132b58261324e565b604082019050919050565b600060208201905081810360008301526132d98161329d565b9050919050565b6000819050919050565b60006133056133006132fb846129ff565b6132e0565b6129ff565b9050919050565b6000613317826132ea565b9050919050565b60006133298261330c565b9050919050565b6133398161331e565b82525050565b60006060820190506133546000830186613026565b6133616020830185613330565b61336e60408301846130f6565b949350505050565b600060408201905061338b6000830185613026565b6133986020830184613330565b9392505050565b7f4f52424e5f4469766964656e645f547261636b65723a20636c61696d5761697460008201527f206d757374206265207570646174656420746f206265747765656e203120616e60208201527f6420323420686f75727300000000000000000000000000000000000000000000604082015250565b6000613421604a83612953565b915061342c8261339f565b606082019050919050565b6000602082019050818103600083015261345081613414565b9050919050565b7f4f52424e5f4469766964656e645f547261636b65723a2043616e6e6f7420757060008201527f6461746520636c61696d5761697420746f2073616d652076616c756500000000602082015250565b60006134b3603c83612953565b91506134be82613457565b604082019050919050565b600060208201905081810360008301526134e2816134a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613545602683612953565b9150613550826134e9565b604082019050919050565b6000602082019050818103600083015261357481613538565b9050919050565b61358481612c26565b811461358f57600080fd5b50565b6000815190506135a18161357b565b92915050565b6000602082840312156135bd576135bc6129fa565b5b60006135cb84828501613592565b91505092915050565b60006135df82612a5d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361361157613610612e68565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061365682612a5d565b915061366183612a5d565b925082820261366f81612a5d565b9150828204841483151761368657613685612e68565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136e9602483612953565b91506136f48261368d565b604082019050919050565b60006020820190508181036000830152613718816136dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061377b602283612953565b91506137868261371f565b604082019050919050565b600060208201905081810360008301526137aa8161376e565b9050919050565b7f4f52424e5f4469766964656e645f547261636b65723a204e6f207472616e736660008201527f65727320616c6c6f776564000000000000000000000000000000000000000000602082015250565b600061380d602b83612953565b9150613818826137b1565b604082019050919050565b6000602082019050818103600083015261383c81613800565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e206160008201527f6e20696e74323536000000000000000000000000000000000000000000000000602082015250565b600061389f602883612953565b91506138aa82613843565b604082019050919050565b600060208201905081810360008301526138ce81613892565b9050919050565b60006138e082612c26565b91506138eb83612c26565b92508282019050828112156000831216838212600084121516171561391357613912612e68565b5b92915050565b7f53616665436173743a2076616c7565206d75737420626520706f736974697665600082015250565b600061394f602083612953565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b600061399082612a5d565b915061399b83612a5d565b92508282039050818111156139b3576139b2612e68565b5b92915050565b600081905092915050565b50565b60006139d46000836139b9565b91506139df826139c4565b600082019050919050565b60006139f5826139c7565b9150819050919050565b6000613a0a82612c26565b9150613a1583612c26565b9250828203905081811260008412168282136000851215161715613a3c57613a3b612e68565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613a78601f83612953565b9150613a8382613a42565b602082019050919050565b60006020820190508181036000830152613aa781613a6b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b0a602183612953565b9150613b1582613aae565b604082019050919050565b60006020820190508181036000830152613b3981613afd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b9c602283612953565b9150613ba782613b40565b604082019050919050565b60006020820190508181036000830152613bcb81613b8f565b905091905056fea2646970667358221220d45844ef4fccf2b6555c973928322977e9d0a0c99ab71b261f9b6284eca4ecc664736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103c75760003560e01c806370a08231116101f2578063a8b9d2401161010d578063e2f45605116100a0578063f27fd2541161006f578063f27fd25414610e8c578063f2fde38b14610ed0578063f3fef3a314610ef9578063fce589d814610f22576103ce565b8063e2f4560514610de4578063e653da0814610e0f578063e7841ec014610e38578063e98030c714610e63576103ce565b8063c0246668116100dc578063c024666814610d2c578063c492f04614610d55578063c49b9a8014610d7e578063dd62ed3e14610da7576103ce565b8063a8b9d24014610c31578063a9059cbb14610c6e578063ad56c13c14610cab578063b62496f514610cef576103ce565b806391b32b32116101855780639c1b8af5116101545780639c1b8af514610b75578063a26579ad14610ba0578063a2a957bb14610bcb578063a457c2d714610bf4576103ce565b806391b32b3214610acd57806395d89b4114610af657806398118cb414610b215780639a7a23d614610b4c576103ce565b80637cea46b9116101c15780637cea46b914610a2357806385141a7714610a4e578063871c128d14610a795780638da5cb5b14610aa2576103ce565b806370a0823114610979578063715018a6146109b657806375f0a874146109cd5780637719c8c6146109f8576103ce565b80633c2513de116102e25780635290c2501161027557806365b8dbc01161024457806365b8dbc0146108bf5780636843cd84146108e85780636b67c4df14610925578063700bb19114610950576103ce565b80635290c250146108055780635b89029c1461082e57806364b0f65314610857578063658c27a914610882576103ce565b80634a74bb02116102b15780634a74bb021461075b5780634c1fa520146107865780634e71d92d146107b15780634fbee193146107c8576103ce565b80633c2513de146106b357806341e6e8cb146106de57806349928a501461070757806349bd5a5e14610730576103ce565b8063205ce9d21161035a57806330bb4cff1161032957806330bb4cff146105f7578063313ce5671461062257806331e79db01461064d5780633950935114610676576103ce565b8063205ce9d21461053b578063224611731461056657806323b872dd1461058f5780632c1f5216146105cc576103ce565b8063127f4b2e11610396578063127f4b2e1461049157806313114a9d146104ba5780631694505e146104e557806318160ddd14610510576103ce565b806302259e9e146103d357806306fdde03146103fe578063095ea7b31461042957806310beae9514610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f4d565b6040516103f59190614667565b60405180910390f35b34801561040a57600080fd5b50610413610f53565b6040516104209190614712565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906147c8565b610fe5565b60405161045d9190614823565b60405180910390f35b34801561047257600080fd5b5061047b611003565b6040516104889190614667565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b3919061483e565b611009565b005b3480156104c657600080fd5b506104cf6110cf565b6040516104dc9190614667565b60405180910390f35b3480156104f157600080fd5b506104fa6110d5565b60405161050791906148ca565b60405180910390f35b34801561051c57600080fd5b506105256110fb565b6040516105329190614667565b60405180910390f35b34801561054757600080fd5b50610550611105565b60405161055d9190614667565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190614923565b61110b565b005b34801561059b57600080fd5b506105b660048036038101906105b19190614950565b6111cb565b6040516105c39190614823565b60405180910390f35b3480156105d857600080fd5b506105e16112c3565b6040516105ee91906149d6565b60405180910390f35b34801561060357600080fd5b5061060c6112e9565b6040516106199190614667565b60405180910390f35b34801561062e57600080fd5b50610637611381565b6040516106449190614a0d565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190614a28565b61138a565b005b34801561068257600080fd5b5061069d600480360381019061069891906147c8565b611496565b6040516106aa9190614823565b60405180910390f35b3480156106bf57600080fd5b506106c8611542565b6040516106d59190614667565b60405180910390f35b3480156106ea57600080fd5b506107056004803603810190610700919061483e565b611548565b005b34801561071357600080fd5b5061072e60048036038101906107299190614a28565b6115dd565b005b34801561073c57600080fd5b50610745611799565b6040516107529190614a64565b60405180910390f35b34801561076757600080fd5b506107706117bd565b60405161077d9190614823565b60405180910390f35b34801561079257600080fd5b5061079b6117d0565b6040516107a89190614667565b60405180910390f35b3480156107bd57600080fd5b506107c66117d6565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190614a28565b61187a565b6040516107fc9190614823565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061483e565b6118d0565b005b34801561083a57600080fd5b5061085560048036038101906108509190614aab565b611965565b005b34801561086357600080fd5b5061086c611a3c565b6040516108799190614667565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614a28565b611ad4565b6040516108b69190614823565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190614a28565b611b2a565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190614a28565b611cf6565b60405161091c9190614667565b60405180910390f35b34801561093157600080fd5b5061093a611d9b565b6040516109479190614667565b60405180910390f35b34801561095c57600080fd5b506109776004803603810190610972919061483e565b611da1565b005b34801561098557600080fd5b506109a0600480360381019061099b9190614a28565b611ea8565b6040516109ad9190614667565b60405180910390f35b3480156109c257600080fd5b506109cb611ef0565b005b3480156109d957600080fd5b506109e2611f78565b6040516109ef9190614afa565b60405180910390f35b348015610a0457600080fd5b50610a0d611f9e565b604051610a1a9190614667565b60405180910390f35b348015610a2f57600080fd5b50610a38611fa4565b604051610a459190614667565b60405180910390f35b348015610a5a57600080fd5b50610a63611faa565b604051610a709190614a64565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b919061483e565b611fd0565b005b348015610aae57600080fd5b50610ab761211f565b604051610ac49190614a64565b60405180910390f35b348015610ad957600080fd5b50610af46004803603810190610aef9190614923565b612149565b005b348015610b0257600080fd5b50610b0b612209565b604051610b189190614712565b60405180910390f35b348015610b2d57600080fd5b50610b3661229b565b604051610b439190614667565b60405180910390f35b348015610b5857600080fd5b50610b736004803603810190610b6e9190614aab565b6122a1565b005b348015610b8157600080fd5b50610b8a6123b9565b604051610b979190614667565b60405180910390f35b348015610bac57600080fd5b50610bb56123bf565b604051610bc29190614667565b60405180910390f35b348015610bd757600080fd5b50610bf26004803603810190610bed9190614b15565b612457565b005b348015610c0057600080fd5b50610c1b6004803603810190610c1691906147c8565b61253a565b604051610c289190614823565b60405180910390f35b348015610c3d57600080fd5b50610c586004803603810190610c539190614a28565b612625565b604051610c659190614667565b60405180910390f35b348015610c7a57600080fd5b50610c956004803603810190610c9091906147c8565b6126ca565b604051610ca29190614823565b60405180910390f35b348015610cb757600080fd5b50610cd26004803603810190610ccd9190614a28565b6126e8565b604051610ce6989796959493929190614b95565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614a28565b6127ac565b604051610d239190614823565b60405180910390f35b348015610d3857600080fd5b50610d536004803603810190610d4e9190614aab565b6127cc565b005b348015610d6157600080fd5b50610d7c6004803603810190610d779190614c78565b612983565b005b348015610d8a57600080fd5b50610da56004803603810190610da09190614cd8565b612adf565b005b348015610db357600080fd5b50610dce6004803603810190610dc99190614d05565b612baf565b604051610ddb9190614667565b60405180910390f35b348015610df057600080fd5b50610df9612c36565b604051610e069190614667565b60405180910390f35b348015610e1b57600080fd5b50610e366004803603810190610e319190614b15565b612c3c565b005b348015610e4457600080fd5b50610e4d612d1f565b604051610e5a9190614667565b60405180910390f35b348015610e6f57600080fd5b50610e8a6004803603810190610e85919061483e565b612db7565b005b348015610e9857600080fd5b50610eb36004803603810190610eae919061483e565b612ec3565b604051610ec7989796959493929190614b95565b60405180910390f35b348015610edc57600080fd5b50610ef76004803603810190610ef29190614a28565b612f87565b005b348015610f0557600080fd5b50610f206004803603810190610f1b91906147c8565b61307e565b005b348015610f2e57600080fd5b50610f3761317d565b604051610f449190614667565b60405180910390f35b60095481565b606060038054610f6290614d74565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8e90614d74565b8015610fdb5780601f10610fb057610100808354040283529160200191610fdb565b820191906000526020600020905b815481529060010190602001808311610fbe57829003601f168201915b5050505050905090565b6000610ff9610ff2613199565b84846131a1565b6001905092915050565b60145481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461106357600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110cb573d6000803e3d6000fd5b5050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60115481565b611113613199565b73ffffffffffffffffffffffffffffffffffffffff1661113161211f565b73ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90614df1565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006111d884848461336a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611223613199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90614e83565b60405180910390fd5b6112b7856112af613199565b8584036131a1565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611358573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137c9190614eb8565b905090565b60006009905090565b611392613199565b73ffffffffffffffffffffffffffffffffffffffff166113b061211f565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90614df1565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b81526004016114619190614a64565b600060405180830381600087803b15801561147b57600080fd5b505af115801561148f573d6000803e3d6000fd5b5050505050565b60006115386114a3613199565b8484600160006114b1613199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115339190614f14565b6131a1565b6001905092915050565b60155481565b611550613199565b73ffffffffffffffffffffffffffffffffffffffff1661156e61211f565b73ffffffffffffffffffffffffffffffffffffffff16146115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90614df1565b60405180910390fd5b633b9aca00816115d49190614f48565b60098190555050565b6115e5613199565b73ffffffffffffffffffffffffffffffffffffffff1661160361211f565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614df1565b60405180910390fd5b6001601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b81526004016117649190614a64565b600060405180830381600087803b15801561177e57600080fd5b505af1158015611792573d6000803e3d6000fd5b5050505050565b7f000000000000000000000000cfb1621196b35d04953659e33176eb7dc298010e81565b600760159054906101000a900460ff1681565b60125481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc4c4b373360006040518363ffffffff1660e01b8152600401611834929190614f8a565b6020604051808303816000875af1158015611853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118779190614fc8565b50565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6118d8613199565b73ffffffffffffffffffffffffffffffffffffffff166118f661211f565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390614df1565b60405180910390fd5b633b9aca008161195c9190614f48565b600a8190555050565b61196d613199565b73ffffffffffffffffffffffffffffffffffffffff1661198b61211f565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890614df1565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309bbedde6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acf9190614eb8565b905090565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b32613199565b73ffffffffffffffffffffffffffffffffffffffff16611b5061211f565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90614df1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d90615067565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611d539190614a64565b602060405180830381865afa158015611d70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d949190614eb8565b9050919050565b600f5481565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ffb2c479856040518263ffffffff1660e01b8152600401611e019190614667565b6060604051808303816000875af1158015611e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e449190615087565b9250925092503273ffffffffffffffffffffffffffffffffffffffff16600015157fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a9885858589604051611e9a94939291906150da565b60405180910390a350505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ef8613199565b73ffffffffffffffffffffffffffffffffffffffff16611f1661211f565b73ffffffffffffffffffffffffffffffffffffffff1614611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390614df1565b60405180910390fd5b611f766000613ae3565b565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600c5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611fd8613199565b73ffffffffffffffffffffffffffffffffffffffff16611ff661211f565b73ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614df1565b60405180910390fd5b62030d40811015801561206257506207a1208111155b6120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890615191565b60405180910390fd5b60175481036120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90615223565b60405180910390fd5b601754817f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db760405160405180910390a38060178190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612151613199565b73ffffffffffffffffffffffffffffffffffffffff1661216f61211f565b73ffffffffffffffffffffffffffffffffffffffff16146121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90614df1565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606004805461221890614d74565b80601f016020809104026020016040519081016040528092919081815260200182805461224490614d74565b80156122915780601f1061226657610100808354040283529160200191612291565b820191906000526020600020905b81548152906001019060200180831161227457829003601f168201915b5050505050905090565b600d5481565b6122a9613199565b73ffffffffffffffffffffffffffffffffffffffff166122c761211f565b73ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614df1565b60405180910390fd5b7f000000000000000000000000cfb1621196b35d04953659e33176eb7dc298010e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906152db565b60405180910390fd5b6123b58282613ba9565b5050565b60175481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636f2789ec6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561242e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124529190614eb8565b905090565b61245f613199565b73ffffffffffffffffffffffffffffffffffffffff1661247d61211f565b73ffffffffffffffffffffffffffffffffffffffff16146124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614df1565b60405180910390fd5b83600c8190555082600d8190555081600f819055508060108190555061252e601054612520600f54612512600d54600c5461318390919063ffffffff16565b61318390919063ffffffff16565b61318390919063ffffffff16565b600e8190555050505050565b60008060016000612549613199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd9061536d565b60405180910390fd5b61261a612611613199565b858584036131a1565b600191505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016126829190614a64565b602060405180830381865afa15801561269f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c39190614eb8565b9050919050565b60006126de6126d7613199565b848461336a565b6001905092915050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f18a6040518263ffffffff1660e01b815260040161274f9190614a64565b61010060405180830381865afa15801561276d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279191906153ce565b97509750975097509750975097509750919395975091939597565b601a6020528060005260406000206000915054906101000a900460ff1681565b6127d4613199565b73ffffffffffffffffffffffffffffffffffffffff166127f261211f565b73ffffffffffffffffffffffffffffffffffffffff1614612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f90614df1565b60405180910390fd5b801515601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d1906154f6565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516129779190614823565b60405180910390a25050565b61298b613199565b73ffffffffffffffffffffffffffffffffffffffff166129a961211f565b73ffffffffffffffffffffffffffffffffffffffff16146129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614df1565b60405180910390fd5b60005b83839050811015612a9e578160186000868685818110612a2557612a24615516565b5b9050602002016020810190612a3a9190614a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612a9690615545565b915050612a02565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051612ad293929190615650565b60405180910390a1505050565b612ae7613199565b73ffffffffffffffffffffffffffffffffffffffff16612b0561211f565b73ffffffffffffffffffffffffffffffffffffffff1614612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290614df1565b60405180910390fd5b80600760156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051612ba49190614823565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b612c44613199565b73ffffffffffffffffffffffffffffffffffffffff16612c6261211f565b73ffffffffffffffffffffffffffffffffffffffff1614612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf90614df1565b60405180910390fd5b83601381905550826012819055508160148190555080601581905550612d13601554612d05601454612cf760125460115461318390919063ffffffff16565b61318390919063ffffffff16565b61318390919063ffffffff16565b60138190555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e7841ec06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db29190614eb8565b905090565b612dbf613199565b73ffffffffffffffffffffffffffffffffffffffff16612ddd61211f565b73ffffffffffffffffffffffffffffffffffffffff1614612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614df1565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e98030c7826040518263ffffffff1660e01b8152600401612e8e9190614667565b600060405180830381600087803b158015612ea857600080fd5b505af1158015612ebc573d6000803e3d6000fd5b5050505050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635183d6fd8a6040518263ffffffff1660e01b8152600401612f2a9190614667565b61010060405180830381865afa158015612f48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f6c91906153ce565b97509750975097509750975097509750919395975091939597565b612f8f613199565b73ffffffffffffffffffffffffffffffffffffffff16612fad61211f565b73ffffffffffffffffffffffffffffffffffffffff1614613003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffa90614df1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613069906156f4565b60405180910390fd5b61307b81613ae3565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146130d857600080fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613135929190615735565b6020604051808303816000875af1158015613154573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131789190614fc8565b505050565b60105481565b600081836131919190614f14565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613207906157d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361327f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327690615862565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161335d9190614667565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d0906158f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343f90615986565b60405180910390fd5b600081036134615761345c83836000613d70565b613ade565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135045750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561355a5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135a5576009548111156135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90615a18565b60405180910390fd5b5b60006135b030611ea8565b90506000600a5482101590508080156135d65750600760149054906101000a900460ff16155b801561362c5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156136445750600760159054906101000a900460ff165b156136535761365282613fef565b5b601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136f75750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561389957600061373a606461372c61371d601054600e546142d090919063ffffffff16565b876142e690919063ffffffff16565b6142fc90919063ffffffff16565b905060006137666064613758601054886142e690919063ffffffff16565b6142fc90919063ffffffff16565b9050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613823576137f660646137e86137d96015546013546142d090919063ffffffff16565b886142e690919063ffffffff16565b6142fc90919063ffffffff16565b91506138206064613812601554886142e690919063ffffffff16565b6142fc90919063ffffffff16565b90505b613848613839828461318390919063ffffffff16565b866142d090919063ffffffff16565b9450600082111561385f5761385e873084613d70565b5b60008111156138965761389587600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613d70565b5b50505b6138a4858585613d70565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866138ec88611ea8565b6040518363ffffffff1660e01b8152600401613909929190615a38565b600060405180830381600087803b15801561392357600080fd5b505af1925050508015613934575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8561397d87611ea8565b6040518363ffffffff1660e01b815260040161399a929190615a38565b600060405180830381600087803b1580156139b457600080fd5b505af19250505080156139c5575060015b50600760149054906101000a900460ff16613adb5760006017549050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ffb2c479826040518263ffffffff1660e01b8152600401613a3c9190614667565b6060604051808303816000875af1925050508015613a7857506040513d601f19601f82011682018060405250810190613a759190615087565b60015b15613ad9573273ffffffffffffffffffffffffffffffffffffffff16600115157fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a9885858589604051613acd94939291906150da565b60405180910390a35050505b505b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503613c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3290615ad3565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015613d2657600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0836040518263ffffffff1660e01b8152600401613cf39190614a64565b600060405180830381600087803b158015613d0d57600080fd5b505af1158015613d21573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd6906158f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e4590615986565b60405180910390fd5b613e59838383614312565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed690615b65565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f729190614f14565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613fd69190614667565b60405180910390a3613fe9848484614317565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000614048600d5461403a61402b6002600e546142e690919063ffffffff16565b856142fc90919063ffffffff16565b6142e690919063ffffffff16565b9050600081836140589190615b85565b90506000479050614069823061431c565b600081476140779190615b85565b905060006140cb6140a860125461409a60026013546142e690919063ffffffff16565b6142d090919063ffffffff16565b6140bd601254856142e690919063ffffffff16565b6142fc90919063ffffffff16565b90506140d78582614596565b600061412860145461411a6140f96012546013546142d090919063ffffffff16565b61410c86886142d090919063ffffffff16565b6142fc90919063ffffffff16565b6142e690919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614192573d6000803e3d6000fd5b5060004790506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516141e090615bea565b60006040518083038185875af1925050503d806000811461421d576040519150601f19603f3d011682016040523d82523d6000602084013e614222565b606091505b505090508015614271577f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc388886142599190615b85565b83604051614268929190615bff565b60405180910390a15b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148688866040516142a2929190615bff565b60405180910390a150505050505050506000600760146101000a81548160ff02191690831515021790555050565b600081836142de9190615b85565b905092915050565b600081836142f49190614f48565b905092915050565b6000818361430a9190615c57565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561433957614338615c88565b5b6040519080825280602002602001820160405280156143675781602001602082028036833780820191505090505b509050308160008151811061437f5761437e615516565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061444a9190615cb7565b8160018151811061445e5761445d615516565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050826144c530600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612baf565b10156144fb576144fa30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196131a1565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008486426040518663ffffffff1660e01b815260040161455f959493929190615da5565b600060405180830381600087803b15801561457957600080fd5b505af115801561458d573d6000803e3d6000fd5b50505050505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806145e261211f565b426040518863ffffffff1660e01b815260040161460496959493929190615dff565b60606040518083038185885af1158015614622573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146479190615087565b5050505050565b6000819050919050565b6146618161464e565b82525050565b600060208201905061467c6000830184614658565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146bc5780820151818401526020810190506146a1565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e482614682565b6146ee818561468d565b93506146fe81856020860161469e565b614707816146c8565b840191505092915050565b6000602082019050818103600083015261472c81846146d9565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006147698261473e565b9050919050565b6147798161475e565b811461478457600080fd5b50565b60008135905061479681614770565b92915050565b6147a58161464e565b81146147b057600080fd5b50565b6000813590506147c28161479c565b92915050565b600080604083850312156147df576147de614734565b5b60006147ed85828601614787565b92505060206147fe858286016147b3565b9150509250929050565b60008115159050919050565b61481d81614808565b82525050565b60006020820190506148386000830184614814565b92915050565b60006020828403121561485457614853614734565b5b6000614862848285016147b3565b91505092915050565b6000819050919050565b600061489061488b6148868461473e565b61486b565b61473e565b9050919050565b60006148a282614875565b9050919050565b60006148b482614897565b9050919050565b6148c4816148a9565b82525050565b60006020820190506148df60008301846148bb565b92915050565b60006148f08261473e565b9050919050565b614900816148e5565b811461490b57600080fd5b50565b60008135905061491d816148f7565b92915050565b60006020828403121561493957614938614734565b5b60006149478482850161490e565b91505092915050565b60008060006060848603121561496957614968614734565b5b600061497786828701614787565b935050602061498886828701614787565b9250506040614999868287016147b3565b9150509250925092565b60006149ae82614875565b9050919050565b60006149c0826149a3565b9050919050565b6149d0816149b5565b82525050565b60006020820190506149eb60008301846149c7565b92915050565b600060ff82169050919050565b614a07816149f1565b82525050565b6000602082019050614a2260008301846149fe565b92915050565b600060208284031215614a3e57614a3d614734565b5b6000614a4c84828501614787565b91505092915050565b614a5e8161475e565b82525050565b6000602082019050614a796000830184614a55565b92915050565b614a8881614808565b8114614a9357600080fd5b50565b600081359050614aa581614a7f565b92915050565b60008060408385031215614ac257614ac1614734565b5b6000614ad085828601614787565b9250506020614ae185828601614a96565b9150509250929050565b614af4816148e5565b82525050565b6000602082019050614b0f6000830184614aeb565b92915050565b60008060008060808587031215614b2f57614b2e614734565b5b6000614b3d878288016147b3565b9450506020614b4e878288016147b3565b9350506040614b5f878288016147b3565b9250506060614b70878288016147b3565b91505092959194509250565b6000819050919050565b614b8f81614b7c565b82525050565b600061010082019050614bab600083018b614a55565b614bb8602083018a614b86565b614bc56040830189614b86565b614bd26060830188614658565b614bdf6080830187614658565b614bec60a0830186614658565b614bf960c0830185614658565b614c0660e0830184614658565b9998505050505050505050565b600080fd5b600080fd5b600080fd5b60008083601f840112614c3857614c37614c13565b5b8235905067ffffffffffffffff811115614c5557614c54614c18565b5b602083019150836020820283011115614c7157614c70614c1d565b5b9250929050565b600080600060408486031215614c9157614c90614734565b5b600084013567ffffffffffffffff811115614caf57614cae614739565b5b614cbb86828701614c22565b93509350506020614cce86828701614a96565b9150509250925092565b600060208284031215614cee57614ced614734565b5b6000614cfc84828501614a96565b91505092915050565b60008060408385031215614d1c57614d1b614734565b5b6000614d2a85828601614787565b9250506020614d3b85828601614787565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d8c57607f821691505b602082108103614d9f57614d9e614d45565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ddb60208361468d565b9150614de682614da5565b602082019050919050565b60006020820190508181036000830152614e0a81614dce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614e6d60288361468d565b9150614e7882614e11565b604082019050919050565b60006020820190508181036000830152614e9c81614e60565b9050919050565b600081519050614eb28161479c565b92915050565b600060208284031215614ece57614ecd614734565b5b6000614edc84828501614ea3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614f1f8261464e565b9150614f2a8361464e565b9250828201905080821115614f4257614f41614ee5565b5b92915050565b6000614f538261464e565b9150614f5e8361464e565b9250828202614f6c8161464e565b91508282048414831517614f8357614f82614ee5565b5b5092915050565b6000604082019050614f9f6000830185614aeb565b614fac6020830184614814565b9392505050565b600081519050614fc281614a7f565b92915050565b600060208284031215614fde57614fdd614734565b5b6000614fec84828501614fb3565b91505092915050565b7f4f52424e3a2054686520726f7574657220616c7265616479206861732074686160008201527f7420616464726573730000000000000000000000000000000000000000000000602082015250565b600061505160298361468d565b915061505c82614ff5565b604082019050919050565b6000602082019050818103600083015261508081615044565b9050919050565b6000806000606084860312156150a05761509f614734565b5b60006150ae86828701614ea3565b93505060206150bf86828701614ea3565b92505060406150d086828701614ea3565b9150509250925092565b60006080820190506150ef6000830187614658565b6150fc6020830186614658565b6151096040830185614658565b6151166060830184614658565b95945050505050565b7f4f52424e3a20676173466f7250726f63657373696e67206d757374206265206260008201527f65747765656e203230302c30303020616e64203530302c303030000000000000602082015250565b600061517b603a8361468d565b91506151868261511f565b604082019050919050565b600060208201905081810360008301526151aa8161516e565b9050919050565b7f4f52424e3a2043616e6e6f742075706461746520676173466f7250726f63657360008201527f73696e6720746f2073616d652076616c75650000000000000000000000000000602082015250565b600061520d60328361468d565b9150615218826151b1565b604082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b7f4f52424e3a205468652050616e63616b655377617020706169722063616e6e6f60008201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b60006152c5604b8361468d565b91506152d082615243565b606082019050919050565b600060208201905081810360008301526152f4816152b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061535760258361468d565b9150615362826152fb565b604082019050919050565b600060208201905081810360008301526153868161534a565b9050919050565b60008151905061539c81614770565b92915050565b6153ab81614b7c565b81146153b657600080fd5b50565b6000815190506153c8816153a2565b92915050565b600080600080600080600080610100898b0312156153ef576153ee614734565b5b60006153fd8b828c0161538d565b985050602061540e8b828c016153b9565b975050604061541f8b828c016153b9565b96505060606154308b828c01614ea3565b95505060806154418b828c01614ea3565b94505060a06154528b828c01614ea3565b93505060c06154638b828c01614ea3565b92505060e06154748b828c01614ea3565b9150509295985092959890939650565b7f4f52424e3a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b60006154e060308361468d565b91506154eb82615484565b604082019050919050565b6000602082019050818103600083015261550f816154d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006155508261464e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361558257615581614ee5565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b6155b18161475e565b82525050565b60006155c383836155a8565b60208301905092915050565b60006155de6020840184614787565b905092915050565b6000602082019050919050565b60006155ff838561558d565b935061560a8261559e565b8060005b858110156156435761562082846155cf565b61562a88826155b7565b9750615635836155e6565b92505060018101905061560e565b5085925050509392505050565b6000604082019050818103600083015261566b8185876155f3565b905061567a6020830184614814565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156de60268361468d565b91506156e982615682565b604082019050919050565b6000602082019050818103600083015261570d816156d1565b9050919050565b600061571f82614897565b9050919050565b61572f81615714565b82525050565b600060408201905061574a6000830185615726565b6157576020830184614658565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157ba60248361468d565b91506157c58261575e565b604082019050919050565b600060208201905081810360008301526157e9816157ad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061584c60228361468d565b9150615857826157f0565b604082019050919050565b6000602082019050818103600083015261587b8161583f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158de60258361468d565b91506158e982615882565b604082019050919050565b6000602082019050818103600083015261590d816158d1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061597060238361468d565b915061597b82615914565b604082019050919050565b6000602082019050818103600083015261599f81615963565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e000000000000602082015250565b6000615a02603a8361468d565b9150615a0d826159a6565b604082019050919050565b60006020820190508181036000830152615a31816159f5565b9050919050565b6000604082019050615a4d6000830185614aeb565b615a5a6020830184614658565b9392505050565b7f4f52424e3a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b6000615abd603e8361468d565b9150615ac882615a61565b604082019050919050565b60006020820190508181036000830152615aec81615ab0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615b4f60268361468d565b9150615b5a82615af3565b604082019050919050565b60006020820190508181036000830152615b7e81615b42565b9050919050565b6000615b908261464e565b9150615b9b8361464e565b9250828203905081811115615bb357615bb2614ee5565b5b92915050565b600081905092915050565b50565b6000615bd4600083615bb9565b9150615bdf82615bc4565b600082019050919050565b6000615bf582615bc7565b9150819050919050565b6000604082019050615c146000830185614658565b615c216020830184614658565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c628261464e565b9150615c6d8361464e565b925082615c7d57615c7c615c28565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060208284031215615ccd57615ccc614734565b5b6000615cdb8482850161538d565b91505092915050565b6000819050919050565b6000615d09615d04615cff84615ce4565b61486b565b61464e565b9050919050565b615d1981615cee565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000615d5282615d1f565b615d5c818561558d565b9350615d6783615d2a565b8060005b83811015615d98578151615d7f88826155b7565b9750615d8a83615d3a565b925050600181019050615d6b565b5085935050505092915050565b600060a082019050615dba6000830188614658565b615dc76020830187615d10565b8181036040830152615dd98186615d47565b9050615de86060830185614a55565b615df56080830184614658565b9695505050505050565b600060c082019050615e146000830189614a55565b615e216020830188614658565b615e2e6040830187615d10565b615e3b6060830186615d10565b615e486080830185614a55565b615e5560a0830184614658565b97965050505050505056fea264697066735822122007b0dd76368c29a012c6ed021127b4878cd3081ccbef0d406a0a59c30b5fd9c464736f6c63430008110033

Libraries Used


Deployed Bytecode Sourcemap

60647:16783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60965:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28122:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30288:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61454:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60500:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61241:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60732:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29241:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61337:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64104:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30939:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60914:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69483:141;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29084:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71584:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31840:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61494:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63958:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67461:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60780:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60865:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61377:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71114:97;;;;;;;;;;;;;:::i;:::-;;69632:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68278:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67319:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71353:141;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69769:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66690:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70056:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61272:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70847:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29412:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39643:94;;;;;;;;;;;;;:::i;:::-;;61531:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61417:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61173:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61094:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68823:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38992:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60199:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28341:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61207:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68003:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61649:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69367:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63091:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32558:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69904:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29752:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70194:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;62028:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67011:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67691:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71722:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29990:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61033:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63489:461;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71219:126;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69235:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70517:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;39892:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60323:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61306:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60965:61;;;;:::o;28122:100::-;28176:13;28209:5;28202:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28122:100;:::o;30288:169::-;30371:4;30388:39;30397:12;:10;:12::i;:::-;30411:7;30420:6;30388:8;:39::i;:::-;30445:4;30438:11;;30288:169;;;;:::o;61454:33::-;;;;:::o;60500:140::-;60580:11;;;;;;;;;;;60566:25;;:10;:25;;;60558:34;;;;;;60603:11;;;;;;;;;;;:20;;:29;60624:7;60603:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60500:140;:::o;61241:24::-;;;;:::o;60732:41::-;;;;;;;;;;;;;:::o;29241:108::-;29302:7;29329:12;;29322:19;;29241:108;:::o;61337:33::-;;;;:::o;64104:138::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64215:19:::1;64197:15;;:37;;;;;;;;;;;;;;;;;;64104:138:::0;:::o;30939:492::-;31079:4;31096:36;31106:6;31114:9;31125:6;31096:9;:36::i;:::-;31145:24;31172:11;:19;31184:6;31172:19;;;;;;;;;;;;;;;:33;31192:12;:10;:12::i;:::-;31172:33;;;;;;;;;;;;;;;;31145:60;;31244:6;31224:16;:26;;31216:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;31331:57;31340:6;31348:12;:10;:12::i;:::-;31381:6;31362:16;:25;31331:8;:57::i;:::-;31419:4;31412:11;;;30939:492;;;;;:::o;60914:42::-;;;;;;;;;;;;;:::o;69483:141::-;69546:7;69573:15;;;;;;;;;;;:41;;;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69566:50;;69483:141;:::o;29084:92::-;29142:5;29167:1;29160:8;;29084:92;:::o;71584:130::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71661:15:::1;;;;;;;;;;;:36;;;71698:7;71661:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;71584:130:::0;:::o;31840:215::-;31928:4;31945:80;31954:12;:10;:12::i;:::-;31968:7;32014:10;31977:11;:25;31989:12;:10;:12::i;:::-;31977:25;;;;;;;;;;;;;;;:34;32003:7;31977:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;31945:8;:80::i;:::-;32043:4;32036:11;;31840:215;;;;:::o;61494:28::-;;;;:::o;63958:134::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64079:5:::1;64061:16;:23;;;;:::i;:::-;64034:24;:50;;;;63958:134:::0;:::o;67461:222::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67567:4:::1;67534:20;:30;67555:8;67534:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;67614:4;67582:19;:29;67602:8;67582:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;67629:15;;;;;;;;;;;:36;;;67666:8;67629:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67461:222:::0;:::o;60780:38::-;;;:::o;60865:40::-;;;;;;;;;;;;;:::o;61377:33::-;;;;:::o;71114:97::-;71145:15;;;;;;;;;;;:30;;;71184:10;71197:5;71145:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71114:97::o;69632:125::-;69697:4;69721:19;:28;69741:7;69721:28;;;;;;;;;;;;;;;;;;;;;;;;;69714:35;;69632:125;;;:::o;68278:124::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68389:5:::1;68377:10;:17;;;;:::i;:::-;68356:18;:38;;;;68278:124:::0;:::o;67319:134::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67440:5:::1;67407:20;:30;67428:8;67407:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;67319:134:::0;;:::o;71353:141::-;71418:7;71445:15;;;;;;;;;;;:39;;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71438:48;;71353:141;:::o;69769:127::-;69835:4;69859:20;:29;69880:7;69859:29;;;;;;;;;;;;;;;;;;;;;;;;;69852:36;;69769:127;;;:::o;66690:313::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66799:15:::1;;;;;;;;;;;66777:38;;:10;:38;;::::0;66769:92:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;66919:15;;;;;;;;;;;66877:59;;66899:10;66877:59;;;;;;;;;;;;66984:10;66947:15;;:48;;;;;;;;;;;;;;;;;;66690:313:::0;:::o;70056:130::-;70126:7;70147:15;;;;;;;;;;;:25;;;70173:7;70147:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70140:41;;70056:130;;;:::o;61272:27::-;;;;:::o;70847:259::-;70907:18;70927:14;70943:26;70973:15;;;;;;;;;;;:23;;;70997:3;70973:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70906:95;;;;;;71088:9;71011:87;;71076:5;71011:87;;;71036:10;71048:6;71056:18;71083:3;71011:87;;;;;;;;;:::i;:::-;;;;;;;;70901:205;;;70847:259;:::o;29412:127::-;29486:7;29513:9;:18;29523:7;29513:18;;;;;;;;;;;;;;;;29506:25;;29412:127;;;:::o;39643:94::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39708:21:::1;39726:1;39708:9;:21::i;:::-;39643:94::o:0;61531:39::-;;;;;;;;;;;;;:::o;61417:30::-;;;;:::o;61173:27::-;;;;:::o;61094:70::-;;;;;;;;;;;;;:::o;68823:404::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68921:6:::1;68909:8;:18;;:40;;;;;68943:6;68931:8;:18;;68909:40;68901:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;69043:16;;69031:8;:28:::0;69023:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;69164:16;;69154:8;69130:51;;;;;;;;;;69211:8;69192:16;:27;;;;68823:404:::0;:::o;38992:87::-;39038:7;39065:6;;;;;;;;;;;39058:13;;38992:87;:::o;60199:116::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60295:12:::1;60281:11;;:26;;;;;;;;;;;;;;;;;;60199:116:::0;:::o;28341:104::-;28397:13;28430:7;28423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28341:104;:::o;61207:27::-;;;;:::o;68003:262::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68110:13:::1;68102:21;;:4;:21;;::::0;68094:109:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;68216:41;68245:4;68251:5;68216:28;:41::i;:::-;68003:262:::0;;:::o;61649:40::-;;;;:::o;69367:108::-;69413:7;69440:15;;;;;;;;;;;:25;;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69433:34;;69367:108;:::o;63091:390::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63237:13:::1;63222:12;:28;;;;63276:13;63261:12;:28;;;;63315:13;63300:12;:28;;;;63349:8;63339:7;:18;;;;63382:61;63435:7;;63382:48;63417:12;;63382:30;63399:12;;63382;;:16;;:30;;;;:::i;:::-;:34;;:48;;;;:::i;:::-;:52;;:61;;;;:::i;:::-;63370:9;:73;;;;63091:390:::0;;;;:::o;32558:413::-;32651:4;32668:24;32695:11;:25;32707:12;:10;:12::i;:::-;32695:25;;;;;;;;;;;;;;;:34;32721:7;32695:34;;;;;;;;;;;;;;;;32668:61;;32768:15;32748:16;:35;;32740:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32861:67;32870:12;:10;:12::i;:::-;32884:7;32912:15;32893:16;:34;32861:8;:67::i;:::-;32959:4;32952:11;;;32558:413;;;;:::o;69904:147::-;69973:7;69997:15;;;;;;;;;;;:38;;;70036:7;69997:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69990:54;;69904:147;;;:::o;29752:175::-;29838:4;29855:42;29865:12;:10;:12::i;:::-;29879:9;29890:6;29855:9;:42::i;:::-;29915:4;29908:11;;29752:175;;;;:::o;70194:318::-;70290:7;70312:6;70333;70354:7;70376;70398;70420;70442;70469:15;;;;;;;;;;;:26;;;70496:7;70469:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70462:42;;;;;;;;;;;;;;;;70194:318;;;;;;;;;:::o;62028:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;67011:296::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67136:8:::1;67104:40;;:19;:28;67124:7;67104:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;67096:101:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;67239:8;67208:19;:28;67228:7;67208:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;67281:7;67265:34;;;67290:8;67265:34;;;;;;:::i;:::-;;;;;;;;67011:296:::0;;:::o;67691:304::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67808:9:::1;67804:115;67827:8;;:15;;67823:1;:19;67804:115;;;67899:8;67864:19;:32;67884:8;;67893:1;67884:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;67864:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;67844:3;;;;;:::i;:::-;;;;67804:115;;;;67936:51;67968:8;;67978;67936:51;;;;;;;;:::i;:::-;;;;;;;;67691:304:::0;;;:::o;71722:171::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71823:8:::1;71799:21;;:32;;;;;;;;;;;;;;;;;;71847:38;71876:8;71847:38;;;;;;:::i;:::-;;;;;;;;71722:171:::0;:::o;29990:151::-;30079:7;30106:11;:18;30118:5;30106:18;;;;;;;;;;;;;;;:27;30125:7;30106:27;;;;;;;;;;;;;;;;30099:34;;29990:151;;;;:::o;61033:52::-;;;;:::o;63489:461::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63665:19:::1;63647:15;:37;;;;63716:18;63695;:39;;;;63766:19;63745:18;:40;;;;63812:14;63796:13;:30;;;;63857:85;63928:13;;63857:66;63904:18;;63857:42;63880:18;;63857;;:22;;:42;;;;:::i;:::-;:46;;:66;;;;:::i;:::-;:70;;:85;;;;:::i;:::-;63839:15;:103;;;;63489:461:::0;;;;:::o;71219:126::-;71274:7;71298:15;;;;;;;;;;;:37;;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71291:46;;71219:126;:::o;69235:124::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69309:15:::1;;;;;;;;;;;:31;;;69341:9;69309:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;69235:124:::0;:::o;70517:325::-;70618:7;70640:6;70661;70682:7;70704;70726;70748;70770;70794:15;;;;;;;;;;;:33;;;70828:5;70794:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70787:47;;;;;;;;;;;;;;;;70517:325;;;;;;;;;:::o;39892:192::-;39223:12;:10;:12::i;:::-;39212:23;;:7;:5;:7::i;:::-;:23;;;39204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40001:1:::1;39981:22;;:8;:22;;::::0;39973:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40057:19;40067:8;40057:9;:19::i;:::-;39892:192:::0;:::o;60323:169::-;60416:11;;;;;;;;;;;60402:25;;:10;:25;;;60394:34;;;;;;60446:6;60439:23;;;60463:11;;;;;;;;;;;60476:7;60439:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60323:169;;:::o;61306:22::-;;;;:::o;10005:98::-;10063:7;10094:1;10090;:5;;;;:::i;:::-;10083:12;;10005:98;;;;:::o;22648:::-;22701:7;22728:10;22721:17;;22648:98;:::o;36242:380::-;36395:1;36378:19;;:5;:19;;;36370:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36476:1;36457:21;;:7;:21;;;36449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36560:6;36530:11;:18;36542:5;36530:18;;;;;;;;;;;;;;;:27;36549:7;36530:27;;;;;;;;;;;;;;;:36;;;;36598:7;36582:32;;36591:5;36582:32;;;36607:6;36582:32;;;;;;:::i;:::-;;;;;;;;36242:380;;;:::o;71901:2359::-;72048:1;72032:18;;:4;:18;;;72024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72125:1;72111:16;;:2;:16;;;72103:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;72193:1;72183:6;:11;72180:92;;72211:28;72227:4;72233:2;72237:1;72211:15;:28::i;:::-;72254:7;;72180:92;72287:25;:29;72313:2;72287:29;;;;;;;;;;;;;;;;;;;;;;;;;:62;;;;;72322:20;:26;72343:4;72322:26;;;;;;;;;;;;;;;;;;;;;;;;;72321:27;72287:62;:93;;;;;72355:20;:24;72376:2;72355:24;;;;;;;;;;;;;;;;;;;;;;;;;72354:25;72287:93;72284:229;;;72414:24;;72404:6;:34;;72396:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;72284:229;72522:28;72553:24;72571:4;72553:9;:24::i;:::-;72522:55;;72598:24;72649:18;;72625:20;:42;;72598:69;;72704:19;:53;;;;;72741:16;;;;;;;;;;;72740:17;72704:53;:102;;;;;72775:25;:31;72801:4;72775:31;;;;;;;;;;;;;;;;;;;;;;;;;72774:32;72704:102;:141;;;;;72824:21;;;;;;;;;;;72704:141;72687:233;;;72872:36;72887:20;72872:14;:36::i;:::-;72687:233;73021:19;:25;73041:4;73021:25;;;;;;;;;;;;;;;;;;;;;;;;;73020:26;:54;;;;;73051:19;:23;73071:2;73051:23;;;;;;;;;;;;;;;;;;;;;;;;;73050:24;73020:54;73017:685;;;73088:12;73103:43;73142:3;73103:34;73114:22;73128:7;;73114:9;;:13;;:22;;;;:::i;:::-;73103:6;:10;;:34;;;;:::i;:::-;:38;;:43;;;;:::i;:::-;73088:58;;73161:17;73181:28;73205:3;73181:19;73192:7;;73181:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;73161:48;;73229:25;:29;73255:2;73229:29;;;;;;;;;;;;;;;;;;;;;;;;;73226:196;;;73286:55;73337:3;73286:46;73297:34;73317:13;;73297:15;;:19;;:34;;;;:::i;:::-;73286:6;:10;;:46;;;;:::i;:::-;:50;;:55;;;;:::i;:::-;73279:62;;73372:34;73402:3;73372:25;73383:13;;73372:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;73360:46;;73226:196;73442:31;73453:19;73462:9;73453:4;:8;;:19;;;;:::i;:::-;73442:6;:10;;:31;;;;:::i;:::-;73433:40;;73498:1;73491:4;:8;73488:90;;;73520:42;73536:4;73550;73557;73520:15;:42::i;:::-;73488:90;73609:1;73597:9;:13;73594:97;;;73631:44;73647:4;73653:10;;;;;;;;;;;73665:9;73631:15;:44::i;:::-;73594:97;73076:626;;73017:685;73714:33;73730:4;73736:2;73740:6;73714:15;:33::i;:::-;73764:15;;;;;;;;;;;:26;;;73799:4;73806:15;73816:4;73806:9;:15::i;:::-;73764:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73760:74;73848:15;;;;;;;;;;;:26;;;73883:2;73888:13;73898:2;73888:9;:13::i;:::-;73848:54;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73844:70;73930:16;;;;;;;;;;;73926:327;;73957:11;73971:16;;73957:30;;74002:15;;;;;;;;;;;:23;;;74026:3;74002:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;73998:244;;;74195:9;74119:86;;74184:4;74119:86;;;74144:10;74156:6;74164:18;74190:3;74119:86;;;;;;;;;:::i;:::-;;;;;;;;74031:184;;;73998:244;73948:305;73926:327;72013:2247;;71901:2359;;;;:::o;40092:173::-;40148:16;40167:6;;;;;;;;;;;40148:25;;40193:8;40184:6;;:17;;;;;;;;;;;;;;;;;;40248:8;40217:40;;40238:8;40217:40;;;;;;;;;;;;40137:128;40092:173;:::o;68410:405::-;68536:5;68501:40;;:25;:31;68527:4;68501:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;68493:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;68653:5;68619:25;:31;68645:4;68619:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;68674:5;68671:79;;;68696:15;;;;;;;;;;;:36;;;68733:4;68696:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68671:79;68801:5;68767:40;;68795:4;68767:40;;;;;;;;;;;;68410:405;;:::o;33461:733::-;33619:1;33601:20;;:6;:20;;;33593:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;33703:1;33682:23;;:9;:23;;;33674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33758:47;33779:6;33787:9;33798:6;33758:20;:47::i;:::-;33818:21;33842:9;:17;33852:6;33842:17;;;;;;;;;;;;;;;;33818:41;;33895:6;33878:13;:23;;33870:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34016:6;34000:13;:22;33980:9;:17;33990:6;33980:17;;;;;;;;;;;;;;;:42;;;;34068:6;34044:9;:20;34054:9;34044:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;34109:9;34092:35;;34101:6;34092:35;;;34120:6;34092:35;;;;;;:::i;:::-;;;;;;;;34140:46;34160:6;34168:9;34179:6;34140:19;:46::i;:::-;33582:612;33461:733;;;:::o;74268:1902::-;63024:4;63005:16;;:23;;;;;;;;;;;;;;;;;;74475:32:::1;74510:60;74557:12;;74510:42;74535:16;74549:1;74535:9;;:13;;:16;;;;:::i;:::-;74510:20;:24;;:42;;;;:::i;:::-;:46;;:60;;;;:::i;:::-;74475:95;;74619:14;74657:24;74636:20;:45;;;;:::i;:::-;74619:62;;74957:22;74982:21;74957:46;;75048:39;75065:6;75081:4;75048:16;:39::i;:::-;75170:20;75215:14;75193:21;:36;;;;:::i;:::-;75170:59;;75371:29;75403:88;75444:46;75471:18;;75444:22;75464:1;75444:15;;:19;;:22;;;;:::i;:::-;:26;;:46;;;;:::i;:::-;75403:36;75420:18;;75403:12;:16;;:36;;;;:::i;:::-;:40;;:88;;;;:::i;:::-;75371:120;;75549:61;75562:24;75588:21;75549:12;:61::i;:::-;75654:23;75680:108;75769:18;;75680:84;75724:39;75744:18;;75724:15;;:19;;:39;;;;:::i;:::-;75680;75697:21;75680:12;:16;;:39;;;;:::i;:::-;:43;;:84;;;;:::i;:::-;:88;;:108;;;;:::i;:::-;75654:134;;75799:15;;;;;;;;;;;:24;;:41;75824:15;75799:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;75853:17;75873:21;75853:41;;75906:12;75931:15;;;;;;;;;;;75923:29;;75960:9;75923:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75905:69;;;75990:7;75987:96;;;76014:57;76035:24;76028:6;:31;;;;:::i;:::-;76061:9;76014:57;;;;;;;:::i;:::-;;;;;;;;75987:96;76108:54;76123:24;76149:12;76108:54;;;;;;;:::i;:::-;;;;;;;;74342:1828;;;;;;;;63070:5:::0;63051:16;;:24;;;;;;;;;;;;;;;;;;74268:1902;:::o;10386:98::-;10444:7;10475:1;10471;:5;;;;:::i;:::-;10464:12;;10386:98;;;;:::o;10743:::-;10801:7;10832:1;10828;:5;;;;:::i;:::-;10821:12;;10743:98;;;;:::o;11142:::-;11200:7;11231:1;11227;:5;;;;:::i;:::-;11220:12;;11142:98;;;;:::o;37222:125::-;;;;:::o;37951:124::-;;;;:::o;76178:707::-;76329:21;76367:1;76353:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76329:40;;76398:4;76380;76385:1;76380:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;76424:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76414:4;76419:1;76414:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;76515:11;76462:50;76480:4;76495:15;;;;;;;;;;;76462:9;:50::i;:::-;:64;76459:156;;;76541:62;76558:4;76573:15;;;;;;;;;;;76600:1;76591:11;76541:8;:62::i;:::-;76459:156;76653:15;;;;;;;;;;;:66;;;76734:11;76760:1;76804:4;76823:3;76841:15;76653:214;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76246:639;76178:707;;:::o;77030:391::-;77151:15;;;;;;;;;;;:31;;;77190:9;77223:4;77243:11;77269:1;77312;77355:7;:5;:7::i;:::-;77377:15;77151:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;77030:391;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:246::-;803:1;813:113;827:6;824:1;821:13;813:113;;;912:1;907:3;903:11;897:18;893:1;888:3;884:11;877:39;849:2;846:1;842:10;837:15;;813:113;;;960:1;951:6;946:3;942:16;935:27;784:184;722:246;;;:::o;974:102::-;1015:6;1066:2;1062:7;1057:2;1050:5;1046:14;1042:28;1032:38;;974:102;;;:::o;1082:377::-;1170:3;1198:39;1231:5;1198:39;:::i;:::-;1253:71;1317:6;1312:3;1253:71;:::i;:::-;1246:78;;1333:65;1391:6;1386:3;1379:4;1372:5;1368:16;1333:65;:::i;:::-;1423:29;1445:6;1423:29;:::i;:::-;1418:3;1414:39;1407:46;;1174:285;1082:377;;;;:::o;1465:313::-;1578:4;1616:2;1605:9;1601:18;1593:26;;1665:9;1659:4;1655:20;1651:1;1640:9;1636:17;1629:47;1693:78;1766:4;1757:6;1693:78;:::i;:::-;1685:86;;1465:313;;;;:::o;1865:117::-;1974:1;1971;1964:12;1988:117;2097:1;2094;2087:12;2111:126;2148:7;2188:42;2181:5;2177:54;2166:65;;2111:126;;;:::o;2243:96::-;2280:7;2309:24;2327:5;2309:24;:::i;:::-;2298:35;;2243:96;;;:::o;2345:122::-;2418:24;2436:5;2418:24;:::i;:::-;2411:5;2408:35;2398:63;;2457:1;2454;2447:12;2398:63;2345:122;:::o;2473:139::-;2519:5;2557:6;2544:20;2535:29;;2573:33;2600:5;2573:33;:::i;:::-;2473:139;;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:152::-;4555:9;4588:37;4619:5;4588:37;:::i;:::-;4575:50;;4479:152;;;:::o;4637:183::-;4750:63;4807:5;4750:63;:::i;:::-;4745:3;4738:76;4637:183;;:::o;4826:274::-;4945:4;4983:2;4972:9;4968:18;4960:26;;4996:97;5090:1;5079:9;5075:17;5066:6;4996:97;:::i;:::-;4826:274;;;;:::o;5106:104::-;5151:7;5180:24;5198:5;5180:24;:::i;:::-;5169:35;;5106:104;;;:::o;5216:138::-;5297:32;5323:5;5297:32;:::i;:::-;5290:5;5287:43;5277:71;;5344:1;5341;5334:12;5277:71;5216:138;:::o;5360:155::-;5414:5;5452:6;5439:20;5430:29;;5468:41;5503:5;5468:41;:::i;:::-;5360:155;;;;:::o;5521:345::-;5588:6;5637:2;5625:9;5616:7;5612:23;5608:32;5605:119;;;5643:79;;:::i;:::-;5605:119;5763:1;5788:61;5841:7;5832:6;5821:9;5817:22;5788:61;:::i;:::-;5778:71;;5734:125;5521:345;;;;:::o;5872:619::-;5949:6;5957;5965;6014:2;6002:9;5993:7;5989:23;5985:32;5982:119;;;6020:79;;:::i;:::-;5982:119;6140:1;6165:53;6210:7;6201:6;6190:9;6186:22;6165:53;:::i;:::-;6155:63;;6111:117;6267:2;6293:53;6338:7;6329:6;6318:9;6314:22;6293:53;:::i;:::-;6283:63;;6238:118;6395:2;6421:53;6466:7;6457:6;6446:9;6442:22;6421:53;:::i;:::-;6411:63;;6366:118;5872:619;;;;;:::o;6497:134::-;6555:9;6588:37;6619:5;6588:37;:::i;:::-;6575:50;;6497:134;;;:::o;6637:170::-;6723:9;6756:45;6795:5;6756:45;:::i;:::-;6743:58;;6637:170;;;:::o;6813:203::-;6936:73;7003:5;6936:73;:::i;:::-;6931:3;6924:86;6813:203;;:::o;7022:294::-;7151:4;7189:2;7178:9;7174:18;7166:26;;7202:107;7306:1;7295:9;7291:17;7282:6;7202:107;:::i;:::-;7022:294;;;;:::o;7322:86::-;7357:7;7397:4;7390:5;7386:16;7375:27;;7322:86;;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7414:112;;:::o;7532:214::-;7621:4;7659:2;7648:9;7644:18;7636:26;;7672:67;7736:1;7725:9;7721:17;7712:6;7672:67;:::i;:::-;7532:214;;;;:::o;7752:329::-;7811:6;7860:2;7848:9;7839:7;7835:23;7831:32;7828:119;;;7866:79;;:::i;:::-;7828:119;7986:1;8011:53;8056:7;8047:6;8036:9;8032:22;8011:53;:::i;:::-;8001:63;;7957:117;7752:329;;;;:::o;8087:118::-;8174:24;8192:5;8174:24;:::i;:::-;8169:3;8162:37;8087:118;;:::o;8211:222::-;8304:4;8342:2;8331:9;8327:18;8319:26;;8355:71;8423:1;8412:9;8408:17;8399:6;8355:71;:::i;:::-;8211:222;;;;:::o;8439:116::-;8509:21;8524:5;8509:21;:::i;:::-;8502:5;8499:32;8489:60;;8545:1;8542;8535:12;8489:60;8439:116;:::o;8561:133::-;8604:5;8642:6;8629:20;8620:29;;8658:30;8682:5;8658:30;:::i;:::-;8561:133;;;;:::o;8700:468::-;8765:6;8773;8822:2;8810:9;8801:7;8797:23;8793:32;8790:119;;;8828:79;;:::i;:::-;8790:119;8948:1;8973:53;9018:7;9009:6;8998:9;8994:22;8973:53;:::i;:::-;8963:63;;8919:117;9075:2;9101:50;9143:7;9134:6;9123:9;9119:22;9101:50;:::i;:::-;9091:60;;9046:115;8700:468;;;;;:::o;9174:142::-;9277:32;9303:5;9277:32;:::i;:::-;9272:3;9265:45;9174:142;;:::o;9322:254::-;9431:4;9469:2;9458:9;9454:18;9446:26;;9482:87;9566:1;9555:9;9551:17;9542:6;9482:87;:::i;:::-;9322:254;;;;:::o;9582:765::-;9668:6;9676;9684;9692;9741:3;9729:9;9720:7;9716:23;9712:33;9709:120;;;9748:79;;:::i;:::-;9709:120;9868:1;9893:53;9938:7;9929:6;9918:9;9914:22;9893:53;:::i;:::-;9883:63;;9839:117;9995:2;10021:53;10066:7;10057:6;10046:9;10042:22;10021:53;:::i;:::-;10011:63;;9966:118;10123:2;10149:53;10194:7;10185:6;10174:9;10170:22;10149:53;:::i;:::-;10139:63;;10094:118;10251:2;10277:53;10322:7;10313:6;10302:9;10298:22;10277:53;:::i;:::-;10267:63;;10222:118;9582:765;;;;;;;:::o;10353:76::-;10389:7;10418:5;10407:16;;10353:76;;;:::o;10435:115::-;10520:23;10537:5;10520:23;:::i;:::-;10515:3;10508:36;10435:115;;:::o;10556:989::-;10841:4;10879:3;10868:9;10864:19;10856:27;;10893:71;10961:1;10950:9;10946:17;10937:6;10893:71;:::i;:::-;10974:70;11040:2;11029:9;11025:18;11016:6;10974:70;:::i;:::-;11054;11120:2;11109:9;11105:18;11096:6;11054:70;:::i;:::-;11134:72;11202:2;11191:9;11187:18;11178:6;11134:72;:::i;:::-;11216:73;11284:3;11273:9;11269:19;11260:6;11216:73;:::i;:::-;11299;11367:3;11356:9;11352:19;11343:6;11299:73;:::i;:::-;11382;11450:3;11439:9;11435:19;11426:6;11382:73;:::i;:::-;11465;11533:3;11522:9;11518:19;11509:6;11465:73;:::i;:::-;10556:989;;;;;;;;;;;:::o;11551:117::-;11660:1;11657;11650:12;11674:117;11783:1;11780;11773:12;11797:117;11906:1;11903;11896:12;11937:568;12010:8;12020:6;12070:3;12063:4;12055:6;12051:17;12047:27;12037:122;;12078:79;;:::i;:::-;12037:122;12191:6;12178:20;12168:30;;12221:18;12213:6;12210:30;12207:117;;;12243:79;;:::i;:::-;12207:117;12357:4;12349:6;12345:17;12333:29;;12411:3;12403:4;12395:6;12391:17;12381:8;12377:32;12374:41;12371:128;;;12418:79;;:::i;:::-;12371:128;11937:568;;;;;:::o;12511:698::-;12603:6;12611;12619;12668:2;12656:9;12647:7;12643:23;12639:32;12636:119;;;12674:79;;:::i;:::-;12636:119;12822:1;12811:9;12807:17;12794:31;12852:18;12844:6;12841:30;12838:117;;;12874:79;;:::i;:::-;12838:117;12987:80;13059:7;13050:6;13039:9;13035:22;12987:80;:::i;:::-;12969:98;;;;12765:312;13116:2;13142:50;13184:7;13175:6;13164:9;13160:22;13142:50;:::i;:::-;13132:60;;13087:115;12511:698;;;;;:::o;13215:323::-;13271:6;13320:2;13308:9;13299:7;13295:23;13291:32;13288:119;;;13326:79;;:::i;:::-;13288:119;13446:1;13471:50;13513:7;13504:6;13493:9;13489:22;13471:50;:::i;:::-;13461:60;;13417:114;13215:323;;;;:::o;13544:474::-;13612:6;13620;13669:2;13657:9;13648:7;13644:23;13640:32;13637:119;;;13675:79;;:::i;:::-;13637:119;13795:1;13820:53;13865:7;13856:6;13845:9;13841:22;13820:53;:::i;:::-;13810:63;;13766:117;13922:2;13948:53;13993:7;13984:6;13973:9;13969:22;13948:53;:::i;:::-;13938:63;;13893:118;13544:474;;;;;:::o;14024:180::-;14072:77;14069:1;14062:88;14169:4;14166:1;14159:15;14193:4;14190:1;14183:15;14210:320;14254:6;14291:1;14285:4;14281:12;14271:22;;14338:1;14332:4;14328:12;14359:18;14349:81;;14415:4;14407:6;14403:17;14393:27;;14349:81;14477:2;14469:6;14466:14;14446:18;14443:38;14440:84;;14496:18;;:::i;:::-;14440:84;14261:269;14210:320;;;:::o;14536:182::-;14676:34;14672:1;14664:6;14660:14;14653:58;14536:182;:::o;14724:366::-;14866:3;14887:67;14951:2;14946:3;14887:67;:::i;:::-;14880:74;;14963:93;15052:3;14963:93;:::i;:::-;15081:2;15076:3;15072:12;15065:19;;14724:366;;;:::o;15096:419::-;15262:4;15300:2;15289:9;15285:18;15277:26;;15349:9;15343:4;15339:20;15335:1;15324:9;15320:17;15313:47;15377:131;15503:4;15377:131;:::i;:::-;15369:139;;15096:419;;;:::o;15521:227::-;15661:34;15657:1;15649:6;15645:14;15638:58;15730:10;15725:2;15717:6;15713:15;15706:35;15521:227;:::o;15754:366::-;15896:3;15917:67;15981:2;15976:3;15917:67;:::i;:::-;15910:74;;15993:93;16082:3;15993:93;:::i;:::-;16111:2;16106:3;16102:12;16095:19;;15754:366;;;:::o;16126:419::-;16292:4;16330:2;16319:9;16315:18;16307:26;;16379:9;16373:4;16369:20;16365:1;16354:9;16350:17;16343:47;16407:131;16533:4;16407:131;:::i;:::-;16399:139;;16126:419;;;:::o;16551:143::-;16608:5;16639:6;16633:13;16624:22;;16655:33;16682:5;16655:33;:::i;:::-;16551:143;;;;:::o;16700:351::-;16770:6;16819:2;16807:9;16798:7;16794:23;16790:32;16787:119;;;16825:79;;:::i;:::-;16787:119;16945:1;16970:64;17026:7;17017:6;17006:9;17002:22;16970:64;:::i;:::-;16960:74;;16916:128;16700:351;;;;:::o;17057:180::-;17105:77;17102:1;17095:88;17202:4;17199:1;17192:15;17226:4;17223:1;17216:15;17243:191;17283:3;17302:20;17320:1;17302:20;:::i;:::-;17297:25;;17336:20;17354:1;17336:20;:::i;:::-;17331:25;;17379:1;17376;17372:9;17365:16;;17400:3;17397:1;17394:10;17391:36;;;17407:18;;:::i;:::-;17391:36;17243:191;;;;:::o;17440:410::-;17480:7;17503:20;17521:1;17503:20;:::i;:::-;17498:25;;17537:20;17555:1;17537:20;:::i;:::-;17532:25;;17592:1;17589;17585:9;17614:30;17632:11;17614:30;:::i;:::-;17603:41;;17793:1;17784:7;17780:15;17777:1;17774:22;17754:1;17747:9;17727:83;17704:139;;17823:18;;:::i;:::-;17704:139;17488:362;17440:410;;;;:::o;17856:352::-;17987:4;18025:2;18014:9;18010:18;18002:26;;18038:87;18122:1;18111:9;18107:17;18098:6;18038:87;:::i;:::-;18135:66;18197:2;18186:9;18182:18;18173:6;18135:66;:::i;:::-;17856:352;;;;;:::o;18214:137::-;18268:5;18299:6;18293:13;18284:22;;18315:30;18339:5;18315:30;:::i;:::-;18214:137;;;;:::o;18357:345::-;18424:6;18473:2;18461:9;18452:7;18448:23;18444:32;18441:119;;;18479:79;;:::i;:::-;18441:119;18599:1;18624:61;18677:7;18668:6;18657:9;18653:22;18624:61;:::i;:::-;18614:71;;18570:125;18357:345;;;;:::o;18708:228::-;18848:34;18844:1;18836:6;18832:14;18825:58;18917:11;18912:2;18904:6;18900:15;18893:36;18708:228;:::o;18942:366::-;19084:3;19105:67;19169:2;19164:3;19105:67;:::i;:::-;19098:74;;19181:93;19270:3;19181:93;:::i;:::-;19299:2;19294:3;19290:12;19283:19;;18942:366;;;:::o;19314:419::-;19480:4;19518:2;19507:9;19503:18;19495:26;;19567:9;19561:4;19557:20;19553:1;19542:9;19538:17;19531:47;19595:131;19721:4;19595:131;:::i;:::-;19587:139;;19314:419;;;:::o;19739:663::-;19827:6;19835;19843;19892:2;19880:9;19871:7;19867:23;19863:32;19860:119;;;19898:79;;:::i;:::-;19860:119;20018:1;20043:64;20099:7;20090:6;20079:9;20075:22;20043:64;:::i;:::-;20033:74;;19989:128;20156:2;20182:64;20238:7;20229:6;20218:9;20214:22;20182:64;:::i;:::-;20172:74;;20127:129;20295:2;20321:64;20377:7;20368:6;20357:9;20353:22;20321:64;:::i;:::-;20311:74;;20266:129;19739:663;;;;;:::o;20408:553::-;20585:4;20623:3;20612:9;20608:19;20600:27;;20637:71;20705:1;20694:9;20690:17;20681:6;20637:71;:::i;:::-;20718:72;20786:2;20775:9;20771:18;20762:6;20718:72;:::i;:::-;20800;20868:2;20857:9;20853:18;20844:6;20800:72;:::i;:::-;20882;20950:2;20939:9;20935:18;20926:6;20882:72;:::i;:::-;20408:553;;;;;;;:::o;20967:245::-;21107:34;21103:1;21095:6;21091:14;21084:58;21176:28;21171:2;21163:6;21159:15;21152:53;20967:245;:::o;21218:366::-;21360:3;21381:67;21445:2;21440:3;21381:67;:::i;:::-;21374:74;;21457:93;21546:3;21457:93;:::i;:::-;21575:2;21570:3;21566:12;21559:19;;21218:366;;;:::o;21590:419::-;21756:4;21794:2;21783:9;21779:18;21771:26;;21843:9;21837:4;21833:20;21829:1;21818:9;21814:17;21807:47;21871:131;21997:4;21871:131;:::i;:::-;21863:139;;21590:419;;;:::o;22015:237::-;22155:34;22151:1;22143:6;22139:14;22132:58;22224:20;22219:2;22211:6;22207:15;22200:45;22015:237;:::o;22258:366::-;22400:3;22421:67;22485:2;22480:3;22421:67;:::i;:::-;22414:74;;22497:93;22586:3;22497:93;:::i;:::-;22615:2;22610:3;22606:12;22599:19;;22258:366;;;:::o;22630:419::-;22796:4;22834:2;22823:9;22819:18;22811:26;;22883:9;22877:4;22873:20;22869:1;22858:9;22854:17;22847:47;22911:131;23037:4;22911:131;:::i;:::-;22903:139;;22630:419;;;:::o;23055:299::-;23195:34;23191:1;23183:6;23179:14;23172:58;23264:34;23259:2;23251:6;23247:15;23240:59;23333:13;23328:2;23320:6;23316:15;23309:38;23055:299;:::o;23360:366::-;23502:3;23523:67;23587:2;23582:3;23523:67;:::i;:::-;23516:74;;23599:93;23688:3;23599:93;:::i;:::-;23717:2;23712:3;23708:12;23701:19;;23360:366;;;:::o;23732:419::-;23898:4;23936:2;23925:9;23921:18;23913:26;;23985:9;23979:4;23975:20;23971:1;23960:9;23956:17;23949:47;24013:131;24139:4;24013:131;:::i;:::-;24005:139;;23732:419;;;:::o;24157:224::-;24297:34;24293:1;24285:6;24281:14;24274:58;24366:7;24361:2;24353:6;24349:15;24342:32;24157:224;:::o;24387:366::-;24529:3;24550:67;24614:2;24609:3;24550:67;:::i;:::-;24543:74;;24626:93;24715:3;24626:93;:::i;:::-;24744:2;24739:3;24735:12;24728:19;;24387:366;;;:::o;24759:419::-;24925:4;24963:2;24952:9;24948:18;24940:26;;25012:9;25006:4;25002:20;24998:1;24987:9;24983:17;24976:47;25040:131;25166:4;25040:131;:::i;:::-;25032:139;;24759:419;;;:::o;25184:143::-;25241:5;25272:6;25266:13;25257:22;;25288:33;25315:5;25288:33;:::i;:::-;25184:143;;;;:::o;25333:120::-;25405:23;25422:5;25405:23;:::i;:::-;25398:5;25395:34;25385:62;;25443:1;25440;25433:12;25385:62;25333:120;:::o;25459:141::-;25515:5;25546:6;25540:13;25531:22;;25562:32;25588:5;25562:32;:::i;:::-;25459:141;;;;:::o;25606:1444::-;25737:6;25745;25753;25761;25769;25777;25785;25793;25842:3;25830:9;25821:7;25817:23;25813:33;25810:120;;;25849:79;;:::i;:::-;25810:120;25969:1;25994:64;26050:7;26041:6;26030:9;26026:22;25994:64;:::i;:::-;25984:74;;25940:128;26107:2;26133:63;26188:7;26179:6;26168:9;26164:22;26133:63;:::i;:::-;26123:73;;26078:128;26245:2;26271:63;26326:7;26317:6;26306:9;26302:22;26271:63;:::i;:::-;26261:73;;26216:128;26383:2;26409:64;26465:7;26456:6;26445:9;26441:22;26409:64;:::i;:::-;26399:74;;26354:129;26522:3;26549:64;26605:7;26596:6;26585:9;26581:22;26549:64;:::i;:::-;26539:74;;26493:130;26662:3;26689:64;26745:7;26736:6;26725:9;26721:22;26689:64;:::i;:::-;26679:74;;26633:130;26802:3;26829:64;26885:7;26876:6;26865:9;26861:22;26829:64;:::i;:::-;26819:74;;26773:130;26942:3;26969:64;27025:7;27016:6;27005:9;27001:22;26969:64;:::i;:::-;26959:74;;26913:130;25606:1444;;;;;;;;;;;:::o;27056:235::-;27196:34;27192:1;27184:6;27180:14;27173:58;27265:18;27260:2;27252:6;27248:15;27241:43;27056:235;:::o;27297:366::-;27439:3;27460:67;27524:2;27519:3;27460:67;:::i;:::-;27453:74;;27536:93;27625:3;27536:93;:::i;:::-;27654:2;27649:3;27645:12;27638:19;;27297:366;;;:::o;27669:419::-;27835:4;27873:2;27862:9;27858:18;27850:26;;27922:9;27916:4;27912:20;27908:1;27897:9;27893:17;27886:47;27950:131;28076:4;27950:131;:::i;:::-;27942:139;;27669:419;;;:::o;28094:180::-;28142:77;28139:1;28132:88;28239:4;28236:1;28229:15;28263:4;28260:1;28253:15;28280:233;28319:3;28342:24;28360:5;28342:24;:::i;:::-;28333:33;;28388:66;28381:5;28378:77;28375:103;;28458:18;;:::i;:::-;28375:103;28505:1;28498:5;28494:13;28487:20;;28280:233;;;:::o;28519:184::-;28618:11;28652:6;28647:3;28640:19;28692:4;28687:3;28683:14;28668:29;;28519:184;;;;:::o;28709:102::-;28778:4;28801:3;28793:11;;28709:102;;;:::o;28817:108::-;28894:24;28912:5;28894:24;:::i;:::-;28889:3;28882:37;28817:108;;:::o;28931:179::-;29000:10;29021:46;29063:3;29055:6;29021:46;:::i;:::-;29099:4;29094:3;29090:14;29076:28;;28931:179;;;;:::o;29116:122::-;29168:5;29193:39;29228:2;29223:3;29219:12;29214:3;29193:39;:::i;:::-;29184:48;;29116:122;;;;:::o;29244:115::-;29316:4;29348;29343:3;29339:14;29331:22;;29244:115;;;:::o;29395:699::-;29524:3;29547:86;29626:6;29621:3;29547:86;:::i;:::-;29540:93;;29657:58;29709:5;29657:58;:::i;:::-;29738:7;29769:1;29754:315;29779:6;29776:1;29773:13;29754:315;;;29849:42;29884:6;29875:7;29849:42;:::i;:::-;29911:63;29970:3;29955:13;29911:63;:::i;:::-;29904:70;;29997:62;30052:6;29997:62;:::i;:::-;29987:72;;29814:255;29801:1;29798;29794:9;29789:14;;29754:315;;;29758:14;30085:3;30078:10;;29529:565;;29395:699;;;;;:::o;30100:491::-;30275:4;30313:2;30302:9;30298:18;30290:26;;30362:9;30356:4;30352:20;30348:1;30337:9;30333:17;30326:47;30390:118;30503:4;30494:6;30486;30390:118;:::i;:::-;30382:126;;30518:66;30580:2;30569:9;30565:18;30556:6;30518:66;:::i;:::-;30100:491;;;;;;:::o;30597:225::-;30737:34;30733:1;30725:6;30721:14;30714:58;30806:8;30801:2;30793:6;30789:15;30782:33;30597:225;:::o;30828:366::-;30970:3;30991:67;31055:2;31050:3;30991:67;:::i;:::-;30984:74;;31067:93;31156:3;31067:93;:::i;:::-;31185:2;31180:3;31176:12;31169:19;;30828:366;;;:::o;31200:419::-;31366:4;31404:2;31393:9;31389:18;31381:26;;31453:9;31447:4;31443:20;31439:1;31428:9;31424:17;31417:47;31481:131;31607:4;31481:131;:::i;:::-;31473:139;;31200:419;;;:::o;31625:134::-;31683:9;31716:37;31747:5;31716:37;:::i;:::-;31703:50;;31625:134;;;:::o;31765:147::-;31860:45;31899:5;31860:45;:::i;:::-;31855:3;31848:58;31765:147;;:::o;31918:348::-;32047:4;32085:2;32074:9;32070:18;32062:26;;32098:79;32174:1;32163:9;32159:17;32150:6;32098:79;:::i;:::-;32187:72;32255:2;32244:9;32240:18;32231:6;32187:72;:::i;:::-;31918:348;;;;;:::o;32272:223::-;32412:34;32408:1;32400:6;32396:14;32389:58;32481:6;32476:2;32468:6;32464:15;32457:31;32272:223;:::o;32501:366::-;32643:3;32664:67;32728:2;32723:3;32664:67;:::i;:::-;32657:74;;32740:93;32829:3;32740:93;:::i;:::-;32858:2;32853:3;32849:12;32842:19;;32501:366;;;:::o;32873:419::-;33039:4;33077:2;33066:9;33062:18;33054:26;;33126:9;33120:4;33116:20;33112:1;33101:9;33097:17;33090:47;33154:131;33280:4;33154:131;:::i;:::-;33146:139;;32873:419;;;:::o;33298:221::-;33438:34;33434:1;33426:6;33422:14;33415:58;33507:4;33502:2;33494:6;33490:15;33483:29;33298:221;:::o;33525:366::-;33667:3;33688:67;33752:2;33747:3;33688:67;:::i;:::-;33681:74;;33764:93;33853:3;33764:93;:::i;:::-;33882:2;33877:3;33873:12;33866:19;;33525:366;;;:::o;33897:419::-;34063:4;34101:2;34090:9;34086:18;34078:26;;34150:9;34144:4;34140:20;34136:1;34125:9;34121:17;34114:47;34178:131;34304:4;34178:131;:::i;:::-;34170:139;;33897:419;;;:::o;34322:224::-;34462:34;34458:1;34450:6;34446:14;34439:58;34531:7;34526:2;34518:6;34514:15;34507:32;34322:224;:::o;34552:366::-;34694:3;34715:67;34779:2;34774:3;34715:67;:::i;:::-;34708:74;;34791:93;34880:3;34791:93;:::i;:::-;34909:2;34904:3;34900:12;34893:19;;34552:366;;;:::o;34924:419::-;35090:4;35128:2;35117:9;35113:18;35105:26;;35177:9;35171:4;35167:20;35163:1;35152:9;35148:17;35141:47;35205:131;35331:4;35205:131;:::i;:::-;35197:139;;34924:419;;;:::o;35349:222::-;35489:34;35485:1;35477:6;35473:14;35466:58;35558:5;35553:2;35545:6;35541:15;35534:30;35349:222;:::o;35577:366::-;35719:3;35740:67;35804:2;35799:3;35740:67;:::i;:::-;35733:74;;35816:93;35905:3;35816:93;:::i;:::-;35934:2;35929:3;35925:12;35918:19;;35577:366;;;:::o;35949:419::-;36115:4;36153:2;36142:9;36138:18;36130:26;;36202:9;36196:4;36192:20;36188:1;36177:9;36173:17;36166:47;36230:131;36356:4;36230:131;:::i;:::-;36222:139;;35949:419;;;:::o;36374:245::-;36514:34;36510:1;36502:6;36498:14;36491:58;36583:28;36578:2;36570:6;36566:15;36559:53;36374:245;:::o;36625:366::-;36767:3;36788:67;36852:2;36847:3;36788:67;:::i;:::-;36781:74;;36864:93;36953:3;36864:93;:::i;:::-;36982:2;36977:3;36973:12;36966:19;;36625:366;;;:::o;36997:419::-;37163:4;37201:2;37190:9;37186:18;37178:26;;37250:9;37244:4;37240:20;37236:1;37225:9;37221:17;37214:47;37278:131;37404:4;37278:131;:::i;:::-;37270:139;;36997:419;;;:::o;37422:364::-;37559:4;37597:2;37586:9;37582:18;37574:26;;37610:87;37694:1;37683:9;37679:17;37670:6;37610:87;:::i;:::-;37707:72;37775:2;37764:9;37760:18;37751:6;37707:72;:::i;:::-;37422:364;;;;;:::o;37792:249::-;37932:34;37928:1;37920:6;37916:14;37909:58;38001:32;37996:2;37988:6;37984:15;37977:57;37792:249;:::o;38047:366::-;38189:3;38210:67;38274:2;38269:3;38210:67;:::i;:::-;38203:74;;38286:93;38375:3;38286:93;:::i;:::-;38404:2;38399:3;38395:12;38388:19;;38047:366;;;:::o;38419:419::-;38585:4;38623:2;38612:9;38608:18;38600:26;;38672:9;38666:4;38662:20;38658:1;38647:9;38643:17;38636:47;38700:131;38826:4;38700:131;:::i;:::-;38692:139;;38419:419;;;:::o;38844:225::-;38984:34;38980:1;38972:6;38968:14;38961:58;39053:8;39048:2;39040:6;39036:15;39029:33;38844:225;:::o;39075:366::-;39217:3;39238:67;39302:2;39297:3;39238:67;:::i;:::-;39231:74;;39314:93;39403:3;39314:93;:::i;:::-;39432:2;39427:3;39423:12;39416:19;;39075:366;;;:::o;39447:419::-;39613:4;39651:2;39640:9;39636:18;39628:26;;39700:9;39694:4;39690:20;39686:1;39675:9;39671:17;39664:47;39728:131;39854:4;39728:131;:::i;:::-;39720:139;;39447:419;;;:::o;39872:194::-;39912:4;39932:20;39950:1;39932:20;:::i;:::-;39927:25;;39966:20;39984:1;39966:20;:::i;:::-;39961:25;;40010:1;40007;40003:9;39995:17;;40034:1;40028:4;40025:11;40022:37;;;40039:18;;:::i;:::-;40022:37;39872:194;;;;:::o;40072:147::-;40173:11;40210:3;40195:18;;40072:147;;;;:::o;40225:114::-;;:::o;40345:398::-;40504:3;40525:83;40606:1;40601:3;40525:83;:::i;:::-;40518:90;;40617:93;40706:3;40617:93;:::i;:::-;40735:1;40730:3;40726:11;40719:18;;40345:398;;;:::o;40749:379::-;40933:3;40955:147;41098:3;40955:147;:::i;:::-;40948:154;;41119:3;41112:10;;40749:379;;;:::o;41134:332::-;41255:4;41293:2;41282:9;41278:18;41270:26;;41306:71;41374:1;41363:9;41359:17;41350:6;41306:71;:::i;:::-;41387:72;41455:2;41444:9;41440:18;41431:6;41387:72;:::i;:::-;41134:332;;;;;:::o;41472:180::-;41520:77;41517:1;41510:88;41617:4;41614:1;41607:15;41641:4;41638:1;41631:15;41658:185;41698:1;41715:20;41733:1;41715:20;:::i;:::-;41710:25;;41749:20;41767:1;41749:20;:::i;:::-;41744:25;;41788:1;41778:35;;41793:18;;:::i;:::-;41778:35;41835:1;41832;41828:9;41823:14;;41658:185;;;;:::o;41849:180::-;41897:77;41894:1;41887:88;41994:4;41991:1;41984:15;42018:4;42015:1;42008:15;42035:351;42105:6;42154:2;42142:9;42133:7;42129:23;42125:32;42122:119;;;42160:79;;:::i;:::-;42122:119;42280:1;42305:64;42361:7;42352:6;42341:9;42337:22;42305:64;:::i;:::-;42295:74;;42251:128;42035:351;;;;:::o;42392:85::-;42437:7;42466:5;42455:16;;42392:85;;;:::o;42483:158::-;42541:9;42574:61;42592:42;42601:32;42627:5;42601:32;:::i;:::-;42592:42;:::i;:::-;42574:61;:::i;:::-;42561:74;;42483:158;;;:::o;42647:147::-;42742:45;42781:5;42742:45;:::i;:::-;42737:3;42730:58;42647:147;;:::o;42800:114::-;42867:6;42901:5;42895:12;42885:22;;42800:114;;;:::o;42920:132::-;42987:4;43010:3;43002:11;;43040:4;43035:3;43031:14;43023:22;;42920:132;;;:::o;43058:113::-;43128:4;43160;43155:3;43151:14;43143:22;;43058:113;;;:::o;43207:732::-;43326:3;43355:54;43403:5;43355:54;:::i;:::-;43425:86;43504:6;43499:3;43425:86;:::i;:::-;43418:93;;43535:56;43585:5;43535:56;:::i;:::-;43614:7;43645:1;43630:284;43655:6;43652:1;43649:13;43630:284;;;43731:6;43725:13;43758:63;43817:3;43802:13;43758:63;:::i;:::-;43751:70;;43844:60;43897:6;43844:60;:::i;:::-;43834:70;;43690:224;43677:1;43674;43670:9;43665:14;;43630:284;;;43634:14;43930:3;43923:10;;43331:608;;;43207:732;;;;:::o;43945:831::-;44208:4;44246:3;44235:9;44231:19;44223:27;;44260:71;44328:1;44317:9;44313:17;44304:6;44260:71;:::i;:::-;44341:80;44417:2;44406:9;44402:18;44393:6;44341:80;:::i;:::-;44468:9;44462:4;44458:20;44453:2;44442:9;44438:18;44431:48;44496:108;44599:4;44590:6;44496:108;:::i;:::-;44488:116;;44614:72;44682:2;44671:9;44667:18;44658:6;44614:72;:::i;:::-;44696:73;44764:3;44753:9;44749:19;44740:6;44696:73;:::i;:::-;43945:831;;;;;;;;:::o;44782:807::-;45031:4;45069:3;45058:9;45054:19;45046:27;;45083:71;45151:1;45140:9;45136:17;45127:6;45083:71;:::i;:::-;45164:72;45232:2;45221:9;45217:18;45208:6;45164:72;:::i;:::-;45246:80;45322:2;45311:9;45307:18;45298:6;45246:80;:::i;:::-;45336;45412:2;45401:9;45397:18;45388:6;45336:80;:::i;:::-;45426:73;45494:3;45483:9;45479:19;45470:6;45426:73;:::i;:::-;45509;45577:3;45566:9;45562:19;45553:6;45509:73;:::i;:::-;44782:807;;;;;;;;;:::o

Swarm Source

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