ETH Price: $3,309.26 (+1.18%)
Gas: 8 Gwei

Token

0xPortfolioAi (0xPortAi)
 

Overview

Max Total Supply

1,000,000 0xPortAi

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000 0xPortAi

Value
$0.00
0x37cfbb7dfd369e395ffadebbdd3e3d7103e4216a
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:
OxPortfolioAi

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-20
*/

/**

 Telegram: https://t.me/portfolioaiportal
  Website: https://0xportfolioai.com
        X: https://x.com/0xportfolioai

 */

pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public revShareWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    uint256 public tokensForRevShare;

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    event FeesCollected(
        address indexed feePayer,
        uint256 feesReceived
    );

    constructor() ERC20("0xPortfolioAi", "0xPortAi") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 20_000 * 1e18; // 2%
        maxWallet = 20_000 * 1e18; // 2%
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05%

        buyTotalFees = 25;
        sellTotalFees = 47;

        revShareWallet = address(0xb2c9F4d496DF9bCbbdcc515769FFA73870B806c0);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    function enableTrading() external onlyOwner {
        swapEnabled = true;
        tradingActive = true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _buyFee
    ) external onlyOwner {
        buyTotalFees = _buyFee;
    }

    function updateSellFees(
        uint256 _sellFee
    ) external onlyOwner {
        sellTotalFees = _sellFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit RevShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

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

    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");
        require(!blacklisted[from], "Sender blacklisted");
        require(!blacklisted[to], "Receiver blacklisted");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForRevShare += fees;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForRevShare += fees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
                emit FeesCollected(from, fees);
            }

            amount -= fees;
        }

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForRevShare;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);

        tokensForRevShare = 0;
        (success,) = address(revShareWallet).call{value: address(this).balance}("");
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success,) = toAddr.call{
                value: address(this).balance
            } ("");
        require(success);
    }

    function blacklist(address _addr) public onlyOwner {
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feePayer","type":"address"},{"indexed":false,"internalType":"uint256","name":"feesReceived","type":"uint256"}],"name":"FeesCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"RevShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"_buyFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff0219169083151502179055505f600a60026101000a81548160ff0219169083151502179055503480156200005e575f80fd5b506040518060400160405280600d81526020017f3078506f7274666f6c696f4169000000000000000000000000000000000000008152506040518060400160405280600881526020017f3078506f727441690000000000000000000000000000000000000000000000008152508160039081620000dc919062000c1d565b508060049081620000ee919062000c1d565b50505062000111620001056200049160201b60201c565b6200049860201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200013c8160016200055b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e0919062000d66565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000246573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026c919062000d66565b6040518363ffffffff1660e01b81526004016200028b92919062000da7565b6020604051808303815f875af1158015620002a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ce919062000d66565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031660a05160016200055b60201b60201c565b6200032b60a05160016200064260201b60201c565b5f69d3c21bcecceda1000000905069043c33c193756480000060078190555069043c33c19375648000006009819055506127106005826200036d919062000dff565b62000379919062000e76565b6008819055506019600c81905550602f600d8190555073b2c9f4d496df9bcbbdcc515769ffa73870b806c060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000405620003f7620006e060201b60201c565b60016200070860201b60201c565b620004183060016200070860201b60201c565b6200042d61dead60016200070860201b60201c565b6200044f62000441620006e060201b60201c565b60016200055b60201b60201c565b620004623060016200055b60201b60201c565b6200047761dead60016200055b60201b60201c565b6200048933826200083f60201b60201c565b505062001036565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200056b6200049160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000591620006e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e19062000f0b565b60405180910390fd5b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007186200049160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200073e620006e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000797576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078e9062000f0b565b60405180910390fd5b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000833919062000f47565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a79062000fb0565b60405180910390fd5b620008c35f8383620009af60201b60201c565b8060025f828254620008d6919062000fd0565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200092a919062000fd0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200099091906200101b565b60405180910390a3620009ab5f8383620009b460201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a3557607f821691505b60208210810362000a4b5762000a4a620009f0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000aaf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a72565b62000abb868362000a72565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b0562000aff62000af98462000ad3565b62000adc565b62000ad3565b9050919050565b5f819050919050565b62000b208362000ae5565b62000b3862000b2f8262000b0c565b84845462000a7e565b825550505050565b5f90565b62000b4e62000b40565b62000b5b81848462000b15565b505050565b5b8181101562000b825762000b765f8262000b44565b60018101905062000b61565b5050565b601f82111562000bd15762000b9b8162000a51565b62000ba68462000a63565b8101602085101562000bb6578190505b62000bce62000bc58562000a63565b83018262000b60565b50505b505050565b5f82821c905092915050565b5f62000bf35f198460080262000bd6565b1980831691505092915050565b5f62000c0d838362000be2565b9150826002028217905092915050565b62000c2882620009b9565b67ffffffffffffffff81111562000c445762000c43620009c3565b5b62000c50825462000a1d565b62000c5d82828562000b86565b5f60209050601f83116001811462000c93575f841562000c7e578287015190505b62000c8a858262000c00565b86555062000cf9565b601f19841662000ca38662000a51565b5f5b8281101562000ccc5784890151825560018201915060208501945060208101905062000ca5565b8683101562000cec578489015162000ce8601f89168262000be2565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d308262000d05565b9050919050565b62000d428162000d24565b811462000d4d575f80fd5b50565b5f8151905062000d608162000d37565b92915050565b5f6020828403121562000d7e5762000d7d62000d01565b5b5f62000d8d8482850162000d50565b91505092915050565b62000da18162000d24565b82525050565b5f60408201905062000dbc5f83018562000d96565b62000dcb602083018462000d96565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000e0b8262000ad3565b915062000e188362000ad3565b925082820262000e288162000ad3565b9150828204841483151762000e425762000e4162000dd2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e828262000ad3565b915062000e8f8362000ad3565b92508262000ea25762000ea162000e49565b5b828204905092915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000ef360208362000ead565b915062000f008262000ebd565b602082019050919050565b5f6020820190508181035f83015262000f248162000ee5565b9050919050565b5f8115159050919050565b62000f418162000f2b565b82525050565b5f60208201905062000f5c5f83018462000f36565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f98601f8362000ead565b915062000fa58262000f62565b602082019050919050565b5f6020820190508181035f83015262000fc98162000f8a565b9050919050565b5f62000fdc8262000ad3565b915062000fe98362000ad3565b925082820190508082111562001004576200100362000dd2565b5b92915050565b620010158162000ad3565b82525050565b5f602082019050620010305f8301846200100a565b92915050565b60805160a0516149a26200107b5f395f8181610e270152818161155c015261206201525f8181610b440152818161344101528181613520015261354701526149a25ff3fe608060405260043610610275575f3560e01c80637ca8448a1161014e578063c0246668116100c0578063e2f4560511610079578063e2f4560514610970578063eba4c3331461099a578063f2fde38b146109c2578063f8b45b05146109ea578063f9f92be414610a14578063fe575a8714610a3c5761027c565b8063c024666814610854578063c18bc1951461087c578063c8c8ebe4146108a4578063d257b34f146108ce578063d85ba0631461090a578063dd62ed3e146109345761027c565b8063a457c2d711610112578063a457c2d714610726578063a9059cbb14610762578063adee28ff1461079e578063b62496f5146107c6578063bbc0c74214610802578063bc205ad31461082c5761027c565b80637ca8448a1461066c5780638a8c523c146106945780638da5cb5b146106aa57806395d89b41146106d45780639a7a23d6146106fe5761027c565b80634a62bb65116101e7578063715018a6116101ab578063715018a61461058a57806371fc4688146105a0578063751039fc146105c85780637571336a146105f257806375e3661e1461061a578063782c4e99146106425761027c565b80634a62bb65146104945780634fbee193146104be5780636a486a8e146104fa5780636ddd17131461052457806370a082311461054e5761027c565b8063203e727e11610239578063203e727e1461037657806323b872dd1461039e57806324b9f3c1146103da578063313ce56714610404578063395093511461042e57806349bd5a5e1461046a5761027c565b806306fdde0314610280578063095ea7b3146102aa57806310d5de53146102e65780631694505e1461032257806318160ddd1461034c5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a78565b6040516102a19190613661565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190613712565b610b08565b6040516102dd919061376a565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190613783565b610b25565b604051610319919061376a565b60405180910390f35b34801561032d575f80fd5b50610336610b42565b6040516103439190613809565b60405180910390f35b348015610357575f80fd5b50610360610b66565b60405161036d9190613831565b60405180910390f35b348015610381575f80fd5b5061039c6004803603810190610397919061384a565b610b6f565b005b3480156103a9575f80fd5b506103c460048036038101906103bf9190613875565b610c7e565b6040516103d1919061376a565b60405180910390f35b3480156103e5575f80fd5b506103ee610d70565b6040516103fb9190613831565b60405180910390f35b34801561040f575f80fd5b50610418610d76565b60405161042591906138e0565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190613712565b610d7e565b604051610461919061376a565b60405180910390f35b348015610475575f80fd5b5061047e610e25565b60405161048b9190613908565b60405180910390f35b34801561049f575f80fd5b506104a8610e49565b6040516104b5919061376a565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190613783565b610e5b565b6040516104f1919061376a565b60405180910390f35b348015610505575f80fd5b5061050e610ead565b60405161051b9190613831565b60405180910390f35b34801561052f575f80fd5b50610538610eb3565b604051610545919061376a565b60405180910390f35b348015610559575f80fd5b50610574600480360381019061056f9190613783565b610ec6565b6040516105819190613831565b60405180910390f35b348015610595575f80fd5b5061059e610f0b565b005b3480156105ab575f80fd5b506105c660048036038101906105c1919061384a565b610f92565b005b3480156105d3575f80fd5b506105dc611018565b6040516105e9919061376a565b60405180910390f35b3480156105fd575f80fd5b506106186004803603810190610613919061394b565b6110b5565b005b348015610625575f80fd5b50610640600480360381019061063b9190613783565b611189565b005b34801561064d575f80fd5b5061065661125c565b6040516106639190613908565b60405180910390f35b348015610677575f80fd5b50610692600480360381019061068d9190613783565b611281565b005b34801561069f575f80fd5b506106a8611372565b005b3480156106b5575f80fd5b506106be611426565b6040516106cb9190613908565b60405180910390f35b3480156106df575f80fd5b506106e861144e565b6040516106f59190613661565b60405180910390f35b348015610709575f80fd5b50610724600480360381019061071f919061394b565b6114de565b005b348015610731575f80fd5b5061074c60048036038101906107479190613712565b6115f6565b604051610759919061376a565b60405180910390f35b34801561076d575f80fd5b5061078860048036038101906107839190613712565b6116dc565b604051610795919061376a565b60405180910390f35b3480156107a9575f80fd5b506107c460048036038101906107bf9190613783565b6116f9565b005b3480156107d1575f80fd5b506107ec60048036038101906107e79190613783565b611833565b6040516107f9919061376a565b60405180910390f35b34801561080d575f80fd5b50610816611850565b604051610823919061376a565b60405180910390f35b348015610837575f80fd5b50610852600480360381019061084d9190613989565b611863565b005b34801561085f575f80fd5b5061087a6004803603810190610875919061394b565b611a49565b005b348015610887575f80fd5b506108a2600480360381019061089d919061384a565b611b6b565b005b3480156108af575f80fd5b506108b8611c7a565b6040516108c59190613831565b60405180910390f35b3480156108d9575f80fd5b506108f460048036038101906108ef919061384a565b611c80565b604051610901919061376a565b60405180910390f35b348015610915575f80fd5b5061091e611dd4565b60405161092b9190613831565b60405180910390f35b34801561093f575f80fd5b5061095a60048036038101906109559190613989565b611dda565b6040516109679190613831565b60405180910390f35b34801561097b575f80fd5b50610984611e5c565b6040516109919190613831565b60405180910390f35b3480156109a5575f80fd5b506109c060048036038101906109bb919061384a565b611e62565b005b3480156109cd575f80fd5b506109e860048036038101906109e39190613783565b611ee8565b005b3480156109f5575f80fd5b506109fe611fde565b604051610a0b9190613831565b60405180910390f35b348015610a1f575f80fd5b50610a3a6004803603810190610a359190613783565b611fe4565b005b348015610a47575f80fd5b50610a626004803603810190610a5d9190613783565b612193565b604051610a6f919061376a565b60405180910390f35b606060038054610a87906139f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab3906139f4565b8015610afe5780601f10610ad557610100808354040283529160200191610afe565b820191905f5260205f20905b815481529060010190602001808311610ae157829003601f168201915b5050505050905090565b5f610b1b610b146121e5565b84846121ec565b6001905092915050565b6010602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610b776121e5565b73ffffffffffffffffffffffffffffffffffffffff16610b95611426565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290613a6e565b60405180910390fd5b670de0b6b3a76400006103e86005610c01610b66565b610c0b9190613ab9565b610c159190613b27565b610c1f9190613b27565b811015610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890613bc7565b60405180910390fd5b670de0b6b3a764000081610c759190613ab9565b60078190555050565b5f610c8a8484846123af565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610cd16121e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613c55565b60405180910390fd5b610d6485610d5c6121e5565b8584036121ec565b60019150509392505050565b600e5481565b5f6012905090565b5f610e1b610d8a6121e5565b848460015f610d976121e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e169190613c73565b6121ec565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5f9054906101000a900460ff1681565b5f600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b600a60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f136121e5565b73ffffffffffffffffffffffffffffffffffffffff16610f31611426565b73ffffffffffffffffffffffffffffffffffffffff1614610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613a6e565b60405180910390fd5b610f905f612ea5565b565b610f9a6121e5565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611426565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613a6e565b60405180910390fd5b80600c8190555050565b5f6110216121e5565b73ffffffffffffffffffffffffffffffffffffffff1661103f611426565b73ffffffffffffffffffffffffffffffffffffffff1614611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613a6e565b60405180910390fd5b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6110bd6121e5565b73ffffffffffffffffffffffffffffffffffffffff166110db611426565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613a6e565b60405180910390fd5b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6111916121e5565b73ffffffffffffffffffffffffffffffffffffffff166111af611426565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613a6e565b60405180910390fd5b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112896121e5565b73ffffffffffffffffffffffffffffffffffffffff166112a7611426565b73ffffffffffffffffffffffffffffffffffffffff16146112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490613a6e565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161132290613cd3565b5f6040518083038185875af1925050503d805f811461135c576040519150601f19603f3d011682016040523d82523d5f602084013e611361565b606091505b505090508061136e575f80fd5b5050565b61137a6121e5565b73ffffffffffffffffffffffffffffffffffffffff16611398611426565b73ffffffffffffffffffffffffffffffffffffffff16146113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613a6e565b60405180910390fd5b6001600a60026101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461145d906139f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611489906139f4565b80156114d45780601f106114ab576101008083540402835291602001916114d4565b820191905f5260205f20905b8154815290600101906020018083116114b757829003601f168201915b5050505050905090565b6114e66121e5565b73ffffffffffffffffffffffffffffffffffffffff16611504611426565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613a6e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613d57565b60405180910390fd5b6115f28282612f68565b5050565b5f8060015f6116036121e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613de5565b60405180910390fd5b6116d16116c86121e5565b858584036121ec565b600191505092915050565b5f6116ef6116e86121e5565b84846123af565b6001905092915050565b6117016121e5565b73ffffffffffffffffffffffffffffffffffffffff1661171f611426565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613a6e565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fcb24b9cc1975a8c5afd1fcc8deca22156b8f357af3485db1f9382b3c584d671f60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6011602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61186b6121e5565b73ffffffffffffffffffffffffffffffffffffffff16611889611426565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613a6e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613e4d565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119879190613908565b602060405180830381865afa1580156119a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c69190613e7f565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611a03929190613eaa565b6020604051808303815f875af1158015611a1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a439190613ee5565b50505050565b611a516121e5565b73ffffffffffffffffffffffffffffffffffffffff16611a6f611426565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613a6e565b60405180910390fd5b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b5f919061376a565b60405180910390a25050565b611b736121e5565b73ffffffffffffffffffffffffffffffffffffffff16611b91611426565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613a6e565b60405180910390fd5b670de0b6b3a76400006103e86014611bfd610b66565b611c079190613ab9565b611c119190613b27565b611c1b9190613b27565b811015611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613f80565b60405180910390fd5b670de0b6b3a764000081611c719190613ab9565b60098190555050565b60075481565b5f611c896121e5565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611426565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613a6e565b60405180910390fd5b620186a06001611d0b610b66565b611d159190613ab9565b611d1f9190613b27565b821015611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d589061400e565b60405180910390fd5b6103e86005611d6e610b66565b611d789190613ab9565b611d829190613b27565b821115611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb9061409c565b60405180910390fd5b8160088190555060019050919050565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b611e6a6121e5565b73ffffffffffffffffffffffffffffffffffffffff16611e88611426565b73ffffffffffffffffffffffffffffffffffffffff1614611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590613a6e565b60405180910390fd5b80600d8190555050565b611ef06121e5565b73ffffffffffffffffffffffffffffffffffffffff16611f0e611426565b73ffffffffffffffffffffffffffffffffffffffff1614611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90613a6e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99061412a565b60405180910390fd5b611fdb81612ea5565b50565b60095481565b611fec6121e5565b73ffffffffffffffffffffffffffffffffffffffff1661200a611426565b73ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613a6e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156120fc5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b61213b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612132906141b8565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614246565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf906142d4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123a29190613831565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490614362565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612482906143f0565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614458565b60405180910390fd5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561259f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612596906144c0565b60405180910390fd5b5f81036125b6576125b183835f613006565b612ea0565b600a5f9054906101000a900460ff1615612a9a576125d2611426565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126405750612610611426565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126b2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126cb5750600560149054906101000a900460ff16155b15612a9957600a60019054906101000a900460ff166127bf57600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061277f5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590614528565b60405180910390fd5b5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561285c575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612903576007548111156128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d906145b6565b60405180910390fd5b6009546128b283610ec6565b826128bd9190613c73565b11156128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f59061461e565b60405180910390fd5b612a98565b60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129a0575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156129ef576007548111156129ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e1906146ac565b60405180910390fd5b612a97565b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612a9657600954612a4983610ec6565b82612a549190613c73565b1115612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c9061461e565b60405180910390fd5b5b5b5b5b5b5f612aa430610ec6565b90505f6008548210159050808015612ac85750600a60029054906101000a900460ff165b8015612ae15750600560149054906101000a900460ff16155b8015612b34575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612b875750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612bda5750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c1d576001600560146101000a81548160ff021916908315150217905550612c0261327b565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff16159050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612ccc5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612cd5575f90505b5f8115612e905760115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d3357505f600d54115b15612d7f57612d606064612d52600d548861337090919063ffffffff16565b61338590919063ffffffff16565b905080600e5f828254612d739190613c73565b92505081905550612e1f565b60115f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612dd657505f600c54115b15612e1e57612e036064612df5600c548861337090919063ffffffff16565b61338590919063ffffffff16565b905080600e5f828254612e169190613c73565b925050819055505b5b5f811115612e8157612e32873083613006565b8673ffffffffffffffffffffffffffffffffffffffff167f9dc46f23cfb5ddcad0ae7ea2be38d47fec07bb9382ec7e564efc69e036dd66ce82604051612e789190613831565b60405180910390a25b8085612e8d91906146ca565b94505b612e9b878787613006565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306b90614362565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d9906143f0565b60405180910390fd5b6130ed83838361339a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131679061476d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546131fe9190613c73565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132629190613831565b60405180910390a361327584848461339f565b50505050565b5f61328530610ec6565b90505f600e5490505f8083148061329b57505f82145b156132a85750505061336e565b60146008546132b79190613ab9565b8311156132d05760146008546132cd9190613ab9565b92505b6132d9836133a4565b5f600e8190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161332590613cd3565b5f6040518083038185875af1925050503d805f811461335f576040519150601f19603f3d011682016040523d82523d5f602084013e613364565b606091505b5050809150505050505b565b5f818361337d9190613ab9565b905092915050565b5f81836133929190613b27565b905092915050565b505050565b505050565b5f600267ffffffffffffffff8111156133c0576133bf61478b565b5b6040519080825280602002602001820160405280156133ee5781602001602082028036833780820191505090505b50905030815f81518110613405576134046147b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134cc91906147f9565b816001815181106134e0576134df6147b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613545307f0000000000000000000000000000000000000000000000000000000000000000846121ec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016135a6959493929190614914565b5f604051808303815f87803b1580156135bd575f80fd5b505af11580156135cf573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561360e5780820151818401526020810190506135f3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613633826135d7565b61363d81856135e1565b935061364d8185602086016135f1565b61365681613619565b840191505092915050565b5f6020820190508181035f8301526136798184613629565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6136ae82613685565b9050919050565b6136be816136a4565b81146136c8575f80fd5b50565b5f813590506136d9816136b5565b92915050565b5f819050919050565b6136f1816136df565b81146136fb575f80fd5b50565b5f8135905061370c816136e8565b92915050565b5f806040838503121561372857613727613681565b5b5f613735858286016136cb565b9250506020613746858286016136fe565b9150509250929050565b5f8115159050919050565b61376481613750565b82525050565b5f60208201905061377d5f83018461375b565b92915050565b5f6020828403121561379857613797613681565b5b5f6137a5848285016136cb565b91505092915050565b5f819050919050565b5f6137d16137cc6137c784613685565b6137ae565b613685565b9050919050565b5f6137e2826137b7565b9050919050565b5f6137f3826137d8565b9050919050565b613803816137e9565b82525050565b5f60208201905061381c5f8301846137fa565b92915050565b61382b816136df565b82525050565b5f6020820190506138445f830184613822565b92915050565b5f6020828403121561385f5761385e613681565b5b5f61386c848285016136fe565b91505092915050565b5f805f6060848603121561388c5761388b613681565b5b5f613899868287016136cb565b93505060206138aa868287016136cb565b92505060406138bb868287016136fe565b9150509250925092565b5f60ff82169050919050565b6138da816138c5565b82525050565b5f6020820190506138f35f8301846138d1565b92915050565b613902816136a4565b82525050565b5f60208201905061391b5f8301846138f9565b92915050565b61392a81613750565b8114613934575f80fd5b50565b5f8135905061394581613921565b92915050565b5f806040838503121561396157613960613681565b5b5f61396e858286016136cb565b925050602061397f85828601613937565b9150509250929050565b5f806040838503121561399f5761399e613681565b5b5f6139ac858286016136cb565b92505060206139bd858286016136cb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a0b57607f821691505b602082108103613a1e57613a1d6139c7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a586020836135e1565b9150613a6382613a24565b602082019050919050565b5f6020820190508181035f830152613a8581613a4c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613ac3826136df565b9150613ace836136df565b9250828202613adc816136df565b91508282048414831517613af357613af2613a8c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613b31826136df565b9150613b3c836136df565b925082613b4c57613b4b613afa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f613bb1602f836135e1565b9150613bbc82613b57565b604082019050919050565b5f6020820190508181035f830152613bde81613ba5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613c3f6028836135e1565b9150613c4a82613be5565b604082019050919050565b5f6020820190508181035f830152613c6c81613c33565b9050919050565b5f613c7d826136df565b9150613c88836136df565b9250828201905080821115613ca057613c9f613a8c565b5b92915050565b5f81905092915050565b50565b5f613cbe5f83613ca6565b9150613cc982613cb0565b5f82019050919050565b5f613cdd82613cb3565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613d416039836135e1565b9150613d4c82613ce7565b604082019050919050565b5f6020820190508181035f830152613d6e81613d35565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613dcf6025836135e1565b9150613dda82613d75565b604082019050919050565b5f6020820190508181035f830152613dfc81613dc3565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f613e37601a836135e1565b9150613e4282613e03565b602082019050919050565b5f6020820190508181035f830152613e6481613e2b565b9050919050565b5f81519050613e79816136e8565b92915050565b5f60208284031215613e9457613e93613681565b5b5f613ea184828501613e6b565b91505092915050565b5f604082019050613ebd5f8301856138f9565b613eca6020830184613822565b9392505050565b5f81519050613edf81613921565b92915050565b5f60208284031215613efa57613ef9613681565b5b5f613f0784828501613ed1565b91505092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f322e302500000000000000000000000000000000000000000000000000000000602082015250565b5f613f6a6024836135e1565b9150613f7582613f10565b604082019050919050565b5f6020820190508181035f830152613f9781613f5e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613ff86035836135e1565b915061400382613f9e565b604082019050919050565b5f6020820190508181035f83015261402581613fec565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f6140866034836135e1565b91506140918261402c565b604082019050919050565b5f6020820190508181035f8301526140b38161407a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6141146026836135e1565b915061411f826140ba565b604082019050919050565b5f6020820190508181035f83015261414181614108565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f6141a2602e836135e1565b91506141ad82614148565b604082019050919050565b5f6020820190508181035f8301526141cf81614196565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6142306024836135e1565b915061423b826141d6565b604082019050919050565b5f6020820190508181035f83015261425d81614224565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6142be6022836135e1565b91506142c982614264565b604082019050919050565b5f6020820190508181035f8301526142eb816142b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61434c6025836135e1565b9150614357826142f2565b604082019050919050565b5f6020820190508181035f83015261437981614340565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6143da6023836135e1565b91506143e582614380565b604082019050919050565b5f6020820190508181035f830152614407816143ce565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6144426012836135e1565b915061444d8261440e565b602082019050919050565b5f6020820190508181035f83015261446f81614436565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f6144aa6014836135e1565b91506144b582614476565b602082019050919050565b5f6020820190508181035f8301526144d78161449e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6145126016836135e1565b915061451d826144de565b602082019050919050565b5f6020820190508181035f83015261453f81614506565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6145a06035836135e1565b91506145ab82614546565b604082019050919050565b5f6020820190508181035f8301526145cd81614594565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6146086013836135e1565b9150614613826145d4565b602082019050919050565b5f6020820190508181035f830152614635816145fc565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6146966036836135e1565b91506146a18261463c565b604082019050919050565b5f6020820190508181035f8301526146c38161468a565b9050919050565b5f6146d4826136df565b91506146df836136df565b92508282039050818111156146f7576146f6613a8c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6147576026836135e1565b9150614762826146fd565b604082019050919050565b5f6020820190508181035f8301526147848161474b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506147f3816136b5565b92915050565b5f6020828403121561480e5761480d613681565b5b5f61481b848285016147e5565b91505092915050565b5f819050919050565b5f61484761484261483d84614824565b6137ae565b6136df565b9050919050565b6148578161482d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61488f816136a4565b82525050565b5f6148a08383614886565b60208301905092915050565b5f602082019050919050565b5f6148c28261485d565b6148cc8185614867565b93506148d783614877565b805f5b838110156149075781516148ee8882614895565b97506148f9836148ac565b9250506001810190506148da565b5085935050505092915050565b5f60a0820190506149275f830188613822565b614934602083018761484e565b818103604083015261494681866148b8565b905061495560608301856138f9565b6149626080830184613822565b969550505050505056fea2646970667358221220fd91457cd03fb3ec291d772a82e03c31f8e8a3eba089ecacbdf2febcf7c3f56864736f6c63430008140033

Deployed Bytecode

0x608060405260043610610275575f3560e01c80637ca8448a1161014e578063c0246668116100c0578063e2f4560511610079578063e2f4560514610970578063eba4c3331461099a578063f2fde38b146109c2578063f8b45b05146109ea578063f9f92be414610a14578063fe575a8714610a3c5761027c565b8063c024666814610854578063c18bc1951461087c578063c8c8ebe4146108a4578063d257b34f146108ce578063d85ba0631461090a578063dd62ed3e146109345761027c565b8063a457c2d711610112578063a457c2d714610726578063a9059cbb14610762578063adee28ff1461079e578063b62496f5146107c6578063bbc0c74214610802578063bc205ad31461082c5761027c565b80637ca8448a1461066c5780638a8c523c146106945780638da5cb5b146106aa57806395d89b41146106d45780639a7a23d6146106fe5761027c565b80634a62bb65116101e7578063715018a6116101ab578063715018a61461058a57806371fc4688146105a0578063751039fc146105c85780637571336a146105f257806375e3661e1461061a578063782c4e99146106425761027c565b80634a62bb65146104945780634fbee193146104be5780636a486a8e146104fa5780636ddd17131461052457806370a082311461054e5761027c565b8063203e727e11610239578063203e727e1461037657806323b872dd1461039e57806324b9f3c1146103da578063313ce56714610404578063395093511461042e57806349bd5a5e1461046a5761027c565b806306fdde0314610280578063095ea7b3146102aa57806310d5de53146102e65780631694505e1461032257806318160ddd1461034c5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a78565b6040516102a19190613661565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190613712565b610b08565b6040516102dd919061376a565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190613783565b610b25565b604051610319919061376a565b60405180910390f35b34801561032d575f80fd5b50610336610b42565b6040516103439190613809565b60405180910390f35b348015610357575f80fd5b50610360610b66565b60405161036d9190613831565b60405180910390f35b348015610381575f80fd5b5061039c6004803603810190610397919061384a565b610b6f565b005b3480156103a9575f80fd5b506103c460048036038101906103bf9190613875565b610c7e565b6040516103d1919061376a565b60405180910390f35b3480156103e5575f80fd5b506103ee610d70565b6040516103fb9190613831565b60405180910390f35b34801561040f575f80fd5b50610418610d76565b60405161042591906138e0565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190613712565b610d7e565b604051610461919061376a565b60405180910390f35b348015610475575f80fd5b5061047e610e25565b60405161048b9190613908565b60405180910390f35b34801561049f575f80fd5b506104a8610e49565b6040516104b5919061376a565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190613783565b610e5b565b6040516104f1919061376a565b60405180910390f35b348015610505575f80fd5b5061050e610ead565b60405161051b9190613831565b60405180910390f35b34801561052f575f80fd5b50610538610eb3565b604051610545919061376a565b60405180910390f35b348015610559575f80fd5b50610574600480360381019061056f9190613783565b610ec6565b6040516105819190613831565b60405180910390f35b348015610595575f80fd5b5061059e610f0b565b005b3480156105ab575f80fd5b506105c660048036038101906105c1919061384a565b610f92565b005b3480156105d3575f80fd5b506105dc611018565b6040516105e9919061376a565b60405180910390f35b3480156105fd575f80fd5b506106186004803603810190610613919061394b565b6110b5565b005b348015610625575f80fd5b50610640600480360381019061063b9190613783565b611189565b005b34801561064d575f80fd5b5061065661125c565b6040516106639190613908565b60405180910390f35b348015610677575f80fd5b50610692600480360381019061068d9190613783565b611281565b005b34801561069f575f80fd5b506106a8611372565b005b3480156106b5575f80fd5b506106be611426565b6040516106cb9190613908565b60405180910390f35b3480156106df575f80fd5b506106e861144e565b6040516106f59190613661565b60405180910390f35b348015610709575f80fd5b50610724600480360381019061071f919061394b565b6114de565b005b348015610731575f80fd5b5061074c60048036038101906107479190613712565b6115f6565b604051610759919061376a565b60405180910390f35b34801561076d575f80fd5b5061078860048036038101906107839190613712565b6116dc565b604051610795919061376a565b60405180910390f35b3480156107a9575f80fd5b506107c460048036038101906107bf9190613783565b6116f9565b005b3480156107d1575f80fd5b506107ec60048036038101906107e79190613783565b611833565b6040516107f9919061376a565b60405180910390f35b34801561080d575f80fd5b50610816611850565b604051610823919061376a565b60405180910390f35b348015610837575f80fd5b50610852600480360381019061084d9190613989565b611863565b005b34801561085f575f80fd5b5061087a6004803603810190610875919061394b565b611a49565b005b348015610887575f80fd5b506108a2600480360381019061089d919061384a565b611b6b565b005b3480156108af575f80fd5b506108b8611c7a565b6040516108c59190613831565b60405180910390f35b3480156108d9575f80fd5b506108f460048036038101906108ef919061384a565b611c80565b604051610901919061376a565b60405180910390f35b348015610915575f80fd5b5061091e611dd4565b60405161092b9190613831565b60405180910390f35b34801561093f575f80fd5b5061095a60048036038101906109559190613989565b611dda565b6040516109679190613831565b60405180910390f35b34801561097b575f80fd5b50610984611e5c565b6040516109919190613831565b60405180910390f35b3480156109a5575f80fd5b506109c060048036038101906109bb919061384a565b611e62565b005b3480156109cd575f80fd5b506109e860048036038101906109e39190613783565b611ee8565b005b3480156109f5575f80fd5b506109fe611fde565b604051610a0b9190613831565b60405180910390f35b348015610a1f575f80fd5b50610a3a6004803603810190610a359190613783565b611fe4565b005b348015610a47575f80fd5b50610a626004803603810190610a5d9190613783565b612193565b604051610a6f919061376a565b60405180910390f35b606060038054610a87906139f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab3906139f4565b8015610afe5780601f10610ad557610100808354040283529160200191610afe565b820191905f5260205f20905b815481529060010190602001808311610ae157829003601f168201915b5050505050905090565b5f610b1b610b146121e5565b84846121ec565b6001905092915050565b6010602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610b776121e5565b73ffffffffffffffffffffffffffffffffffffffff16610b95611426565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290613a6e565b60405180910390fd5b670de0b6b3a76400006103e86005610c01610b66565b610c0b9190613ab9565b610c159190613b27565b610c1f9190613b27565b811015610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890613bc7565b60405180910390fd5b670de0b6b3a764000081610c759190613ab9565b60078190555050565b5f610c8a8484846123af565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610cd16121e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613c55565b60405180910390fd5b610d6485610d5c6121e5565b8584036121ec565b60019150509392505050565b600e5481565b5f6012905090565b5f610e1b610d8a6121e5565b848460015f610d976121e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e169190613c73565b6121ec565b6001905092915050565b7f000000000000000000000000fc18d1352751e641a59d83b38dd51d76a4666e8181565b600a5f9054906101000a900460ff1681565b5f600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b600a60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f136121e5565b73ffffffffffffffffffffffffffffffffffffffff16610f31611426565b73ffffffffffffffffffffffffffffffffffffffff1614610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613a6e565b60405180910390fd5b610f905f612ea5565b565b610f9a6121e5565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611426565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613a6e565b60405180910390fd5b80600c8190555050565b5f6110216121e5565b73ffffffffffffffffffffffffffffffffffffffff1661103f611426565b73ffffffffffffffffffffffffffffffffffffffff1614611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613a6e565b60405180910390fd5b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6110bd6121e5565b73ffffffffffffffffffffffffffffffffffffffff166110db611426565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613a6e565b60405180910390fd5b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6111916121e5565b73ffffffffffffffffffffffffffffffffffffffff166111af611426565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613a6e565b60405180910390fd5b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112896121e5565b73ffffffffffffffffffffffffffffffffffffffff166112a7611426565b73ffffffffffffffffffffffffffffffffffffffff16146112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490613a6e565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161132290613cd3565b5f6040518083038185875af1925050503d805f811461135c576040519150601f19603f3d011682016040523d82523d5f602084013e611361565b606091505b505090508061136e575f80fd5b5050565b61137a6121e5565b73ffffffffffffffffffffffffffffffffffffffff16611398611426565b73ffffffffffffffffffffffffffffffffffffffff16146113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613a6e565b60405180910390fd5b6001600a60026101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461145d906139f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611489906139f4565b80156114d45780601f106114ab576101008083540402835291602001916114d4565b820191905f5260205f20905b8154815290600101906020018083116114b757829003601f168201915b5050505050905090565b6114e66121e5565b73ffffffffffffffffffffffffffffffffffffffff16611504611426565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613a6e565b60405180910390fd5b7f000000000000000000000000fc18d1352751e641a59d83b38dd51d76a4666e8173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613d57565b60405180910390fd5b6115f28282612f68565b5050565b5f8060015f6116036121e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613de5565b60405180910390fd5b6116d16116c86121e5565b858584036121ec565b600191505092915050565b5f6116ef6116e86121e5565b84846123af565b6001905092915050565b6117016121e5565b73ffffffffffffffffffffffffffffffffffffffff1661171f611426565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613a6e565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fcb24b9cc1975a8c5afd1fcc8deca22156b8f357af3485db1f9382b3c584d671f60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6011602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61186b6121e5565b73ffffffffffffffffffffffffffffffffffffffff16611889611426565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613a6e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613e4d565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119879190613908565b602060405180830381865afa1580156119a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c69190613e7f565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611a03929190613eaa565b6020604051808303815f875af1158015611a1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a439190613ee5565b50505050565b611a516121e5565b73ffffffffffffffffffffffffffffffffffffffff16611a6f611426565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613a6e565b60405180910390fd5b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b5f919061376a565b60405180910390a25050565b611b736121e5565b73ffffffffffffffffffffffffffffffffffffffff16611b91611426565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613a6e565b60405180910390fd5b670de0b6b3a76400006103e86014611bfd610b66565b611c079190613ab9565b611c119190613b27565b611c1b9190613b27565b811015611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613f80565b60405180910390fd5b670de0b6b3a764000081611c719190613ab9565b60098190555050565b60075481565b5f611c896121e5565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611426565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613a6e565b60405180910390fd5b620186a06001611d0b610b66565b611d159190613ab9565b611d1f9190613b27565b821015611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d589061400e565b60405180910390fd5b6103e86005611d6e610b66565b611d789190613ab9565b611d829190613b27565b821115611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb9061409c565b60405180910390fd5b8160088190555060019050919050565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b611e6a6121e5565b73ffffffffffffffffffffffffffffffffffffffff16611e88611426565b73ffffffffffffffffffffffffffffffffffffffff1614611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590613a6e565b60405180910390fd5b80600d8190555050565b611ef06121e5565b73ffffffffffffffffffffffffffffffffffffffff16611f0e611426565b73ffffffffffffffffffffffffffffffffffffffff1614611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90613a6e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99061412a565b60405180910390fd5b611fdb81612ea5565b50565b60095481565b611fec6121e5565b73ffffffffffffffffffffffffffffffffffffffff1661200a611426565b73ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613a6e565b60405180910390fd5b7f000000000000000000000000fc18d1352751e641a59d83b38dd51d76a4666e8173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156120fc5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b61213b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612132906141b8565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614246565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf906142d4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123a29190613831565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490614362565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612482906143f0565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614458565b60405180910390fd5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561259f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612596906144c0565b60405180910390fd5b5f81036125b6576125b183835f613006565b612ea0565b600a5f9054906101000a900460ff1615612a9a576125d2611426565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126405750612610611426565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126b2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126cb5750600560149054906101000a900460ff16155b15612a9957600a60019054906101000a900460ff166127bf57600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061277f5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590614528565b60405180910390fd5b5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561285c575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612903576007548111156128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d906145b6565b60405180910390fd5b6009546128b283610ec6565b826128bd9190613c73565b11156128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f59061461e565b60405180910390fd5b612a98565b60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129a0575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156129ef576007548111156129ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e1906146ac565b60405180910390fd5b612a97565b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612a9657600954612a4983610ec6565b82612a549190613c73565b1115612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c9061461e565b60405180910390fd5b5b5b5b5b5b5f612aa430610ec6565b90505f6008548210159050808015612ac85750600a60029054906101000a900460ff165b8015612ae15750600560149054906101000a900460ff16155b8015612b34575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612b875750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612bda5750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c1d576001600560146101000a81548160ff021916908315150217905550612c0261327b565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff16159050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612ccc5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612cd5575f90505b5f8115612e905760115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d3357505f600d54115b15612d7f57612d606064612d52600d548861337090919063ffffffff16565b61338590919063ffffffff16565b905080600e5f828254612d739190613c73565b92505081905550612e1f565b60115f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612dd657505f600c54115b15612e1e57612e036064612df5600c548861337090919063ffffffff16565b61338590919063ffffffff16565b905080600e5f828254612e169190613c73565b925050819055505b5b5f811115612e8157612e32873083613006565b8673ffffffffffffffffffffffffffffffffffffffff167f9dc46f23cfb5ddcad0ae7ea2be38d47fec07bb9382ec7e564efc69e036dd66ce82604051612e789190613831565b60405180910390a25b8085612e8d91906146ca565b94505b612e9b878787613006565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306b90614362565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d9906143f0565b60405180910390fd5b6130ed83838361339a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131679061476d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546131fe9190613c73565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132629190613831565b60405180910390a361327584848461339f565b50505050565b5f61328530610ec6565b90505f600e5490505f8083148061329b57505f82145b156132a85750505061336e565b60146008546132b79190613ab9565b8311156132d05760146008546132cd9190613ab9565b92505b6132d9836133a4565b5f600e8190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161332590613cd3565b5f6040518083038185875af1925050503d805f811461335f576040519150601f19603f3d011682016040523d82523d5f602084013e613364565b606091505b5050809150505050505b565b5f818361337d9190613ab9565b905092915050565b5f81836133929190613b27565b905092915050565b505050565b505050565b5f600267ffffffffffffffff8111156133c0576133bf61478b565b5b6040519080825280602002602001820160405280156133ee5781602001602082028036833780820191505090505b50905030815f81518110613405576134046147b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134cc91906147f9565b816001815181106134e0576134df6147b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613545307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121ec565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016135a6959493929190614914565b5f604051808303815f87803b1580156135bd575f80fd5b505af11580156135cf573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561360e5780820151818401526020810190506135f3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613633826135d7565b61363d81856135e1565b935061364d8185602086016135f1565b61365681613619565b840191505092915050565b5f6020820190508181035f8301526136798184613629565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6136ae82613685565b9050919050565b6136be816136a4565b81146136c8575f80fd5b50565b5f813590506136d9816136b5565b92915050565b5f819050919050565b6136f1816136df565b81146136fb575f80fd5b50565b5f8135905061370c816136e8565b92915050565b5f806040838503121561372857613727613681565b5b5f613735858286016136cb565b9250506020613746858286016136fe565b9150509250929050565b5f8115159050919050565b61376481613750565b82525050565b5f60208201905061377d5f83018461375b565b92915050565b5f6020828403121561379857613797613681565b5b5f6137a5848285016136cb565b91505092915050565b5f819050919050565b5f6137d16137cc6137c784613685565b6137ae565b613685565b9050919050565b5f6137e2826137b7565b9050919050565b5f6137f3826137d8565b9050919050565b613803816137e9565b82525050565b5f60208201905061381c5f8301846137fa565b92915050565b61382b816136df565b82525050565b5f6020820190506138445f830184613822565b92915050565b5f6020828403121561385f5761385e613681565b5b5f61386c848285016136fe565b91505092915050565b5f805f6060848603121561388c5761388b613681565b5b5f613899868287016136cb565b93505060206138aa868287016136cb565b92505060406138bb868287016136fe565b9150509250925092565b5f60ff82169050919050565b6138da816138c5565b82525050565b5f6020820190506138f35f8301846138d1565b92915050565b613902816136a4565b82525050565b5f60208201905061391b5f8301846138f9565b92915050565b61392a81613750565b8114613934575f80fd5b50565b5f8135905061394581613921565b92915050565b5f806040838503121561396157613960613681565b5b5f61396e858286016136cb565b925050602061397f85828601613937565b9150509250929050565b5f806040838503121561399f5761399e613681565b5b5f6139ac858286016136cb565b92505060206139bd858286016136cb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a0b57607f821691505b602082108103613a1e57613a1d6139c7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a586020836135e1565b9150613a6382613a24565b602082019050919050565b5f6020820190508181035f830152613a8581613a4c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613ac3826136df565b9150613ace836136df565b9250828202613adc816136df565b91508282048414831517613af357613af2613a8c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613b31826136df565b9150613b3c836136df565b925082613b4c57613b4b613afa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f613bb1602f836135e1565b9150613bbc82613b57565b604082019050919050565b5f6020820190508181035f830152613bde81613ba5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613c3f6028836135e1565b9150613c4a82613be5565b604082019050919050565b5f6020820190508181035f830152613c6c81613c33565b9050919050565b5f613c7d826136df565b9150613c88836136df565b9250828201905080821115613ca057613c9f613a8c565b5b92915050565b5f81905092915050565b50565b5f613cbe5f83613ca6565b9150613cc982613cb0565b5f82019050919050565b5f613cdd82613cb3565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613d416039836135e1565b9150613d4c82613ce7565b604082019050919050565b5f6020820190508181035f830152613d6e81613d35565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613dcf6025836135e1565b9150613dda82613d75565b604082019050919050565b5f6020820190508181035f830152613dfc81613dc3565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f613e37601a836135e1565b9150613e4282613e03565b602082019050919050565b5f6020820190508181035f830152613e6481613e2b565b9050919050565b5f81519050613e79816136e8565b92915050565b5f60208284031215613e9457613e93613681565b5b5f613ea184828501613e6b565b91505092915050565b5f604082019050613ebd5f8301856138f9565b613eca6020830184613822565b9392505050565b5f81519050613edf81613921565b92915050565b5f60208284031215613efa57613ef9613681565b5b5f613f0784828501613ed1565b91505092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f322e302500000000000000000000000000000000000000000000000000000000602082015250565b5f613f6a6024836135e1565b9150613f7582613f10565b604082019050919050565b5f6020820190508181035f830152613f9781613f5e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613ff86035836135e1565b915061400382613f9e565b604082019050919050565b5f6020820190508181035f83015261402581613fec565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f6140866034836135e1565b91506140918261402c565b604082019050919050565b5f6020820190508181035f8301526140b38161407a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6141146026836135e1565b915061411f826140ba565b604082019050919050565b5f6020820190508181035f83015261414181614108565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f6141a2602e836135e1565b91506141ad82614148565b604082019050919050565b5f6020820190508181035f8301526141cf81614196565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6142306024836135e1565b915061423b826141d6565b604082019050919050565b5f6020820190508181035f83015261425d81614224565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6142be6022836135e1565b91506142c982614264565b604082019050919050565b5f6020820190508181035f8301526142eb816142b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61434c6025836135e1565b9150614357826142f2565b604082019050919050565b5f6020820190508181035f83015261437981614340565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6143da6023836135e1565b91506143e582614380565b604082019050919050565b5f6020820190508181035f830152614407816143ce565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6144426012836135e1565b915061444d8261440e565b602082019050919050565b5f6020820190508181035f83015261446f81614436565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f6144aa6014836135e1565b91506144b582614476565b602082019050919050565b5f6020820190508181035f8301526144d78161449e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6145126016836135e1565b915061451d826144de565b602082019050919050565b5f6020820190508181035f83015261453f81614506565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6145a06035836135e1565b91506145ab82614546565b604082019050919050565b5f6020820190508181035f8301526145cd81614594565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6146086013836135e1565b9150614613826145d4565b602082019050919050565b5f6020820190508181035f830152614635816145fc565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6146966036836135e1565b91506146a18261463c565b604082019050919050565b5f6020820190508181035f8301526146c38161468a565b9050919050565b5f6146d4826136df565b91506146df836136df565b92508282039050818111156146f7576146f6613a8c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6147576026836135e1565b9150614762826146fd565b604082019050919050565b5f6020820190508181035f8301526147848161474b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506147f3816136b5565b92915050565b5f6020828403121561480e5761480d613681565b5b5f61481b848285016147e5565b91505092915050565b5f819050919050565b5f61484761484261483d84614824565b6137ae565b6136df565b9050919050565b6148578161482d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61488f816136a4565b82525050565b5f6148a08383614886565b60208301905092915050565b5f602082019050919050565b5f6148c28261485d565b6148cc8185614867565b93506148d783614877565b805f5b838110156149075781516148ee8882614895565b97506148f9836148ac565b9250506001810190506148da565b5085935050505092915050565b5f60a0820190506149275f830188613822565b614934602083018761484e565b818103604083015261494681866148b8565b905061495560608301856138f9565b6149626080830184613822565b969550505050505056fea2646970667358221220fd91457cd03fb3ec291d772a82e03c31f8e8a3eba089ecacbdf2febcf7c3f56864736f6c63430008140033

Deployed Bytecode Sourcemap

30915:11514:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9006:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11173:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31650:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30998:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10126:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34371:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11824:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31522:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9968:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12725:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31056:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31286:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36241:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31485:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31366:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10297:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2523:103;;;;;;;;;;;;;:::i;:::-;;35090:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36496:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34923:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42328:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31133:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41812:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33758:112;;;;;;;;;;;;;:::i;:::-;;1872:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9225:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35532:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13443:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10637:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36032:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31720:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31326:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41516:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35342:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34656:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31171:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33878:485;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31451:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10875:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31213:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35214:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2781:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31253:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42023:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36375:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9006:100;9060:13;9093:5;9086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9006:100;:::o;11173:169::-;11256:4;11273:39;11282:12;:10;:12::i;:::-;11296:7;11305:6;11273:8;:39::i;:::-;11330:4;11323:11;;11173:169;;;;:::o;31650:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;30998:51::-;;;:::o;10126:108::-;10187:7;10214:12;;10207:19;;10126:108;:::o;34371:277::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34508:4:::1;34500;34495:1;34479:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34478:26;;;;:::i;:::-;34477:35;;;;:::i;:::-;34467:6;:45;;34445:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34631:8;34621:6;:19;;;;:::i;:::-;34598:20;:42;;;;34371:277:::0;:::o;11824:492::-;11964:4;11981:36;11991:6;11999:9;12010:6;11981:9;:36::i;:::-;12030:24;12057:11;:19;12069:6;12057:19;;;;;;;;;;;;;;;:33;12077:12;:10;:12::i;:::-;12057:33;;;;;;;;;;;;;;;;12030:60;;12129:6;12109:16;:26;;12101:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12216:57;12225:6;12233:12;:10;:12::i;:::-;12266:6;12247:16;:25;12216:8;:57::i;:::-;12304:4;12297:11;;;11824:492;;;;;:::o;31522:32::-;;;;:::o;9968:93::-;10026:5;10051:2;10044:9;;9968:93;:::o;12725:215::-;12813:4;12830:80;12839:12;:10;:12::i;:::-;12853:7;12899:10;12862:11;:25;12874:12;:10;:12::i;:::-;12862:25;;;;;;;;;;;;;;;:34;12888:7;12862:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12830:8;:80::i;:::-;12928:4;12921:11;;12725:215;;;;:::o;31056:38::-;;;:::o;31286:33::-;;;;;;;;;;;;;:::o;36241:126::-;36307:4;36331:19;:28;36351:7;36331:28;;;;;;;;;;;;;;;;;;;;;;;;;36324:35;;36241:126;;;:::o;31485:28::-;;;;:::o;31366:31::-;;;;;;;;;;;;;:::o;10297:127::-;10371:7;10398:9;:18;10408:7;10398:18;;;;;;;;;;;;;;;;10391:25;;10297:127;;;:::o;2523:103::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2588:30:::1;2615:1;2588:18;:30::i;:::-;2523:103::o:0;35090:116::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35191:7:::1;35176:12;:22;;;;35090:116:::0;:::o;36496:121::-;36548:4;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36582:5:::1;36565:14;;:22;;;;;;;;;;;;;;;;;;36605:4;36598:11;;36496:121:::0;:::o;34923:159::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35070:4:::1;35028:31;:39;35060:6;35028:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34923:159:::0;;:::o;42328:98::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42413:5:::1;42392:11;:18;42404:5;42392:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;42328:98:::0;:::o;31133:29::-;;;;;;;;;;;;;:::o;41812:203::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41885:12:::1;41902:6;:11;;41939:21;41902:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41884:96;;;41999:7;41991:16;;;::::0;::::1;;41873:142;41812:203:::0;:::o;33758:112::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33827:4:::1;33813:11;;:18;;;;;;;;;;;;;;;;;;33858:4;33842:13;;:20;;;;;;;;;;;;;;;;;;33758:112::o:0;1872:87::-;1918:7;1945:6;;;;;;;;;;;1938:13;;1872:87;:::o;9225:104::-;9281:13;9314:7;9307:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9225:104;:::o;35532:296::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35668:13:::1;35660:21;;:4;:21;;::::0;35638:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35779:41;35808:4;35814:5;35779:28;:41::i;:::-;35532:296:::0;;:::o;13443:413::-;13536:4;13553:24;13580:11;:25;13592:12;:10;:12::i;:::-;13580:25;;;;;;;;;;;;;;;:34;13606:7;13580:34;;;;;;;;;;;;;;;;13553:61;;13653:15;13633:16;:35;;13625:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13746:67;13755:12;:10;:12::i;:::-;13769:7;13797:15;13778:16;:34;13746:8;:67::i;:::-;13844:4;13837:11;;;13443:413;;;;:::o;10637:175::-;10723:4;10740:42;10750:12;:10;:12::i;:::-;10764:9;10775:6;10740:9;:42::i;:::-;10800:4;10793:11;;10637:175;;;;:::o;36032:201::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36165:14:::1;;;;;;;;;;;36124:56;;36146:17;36124:56;;;;;;;;;;;;36208:17;36191:14;;:34;;;;;;;;;;;;;;;;;;36032:201:::0;:::o;31720:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31326:33::-;;;;;;;;;;;;;:::o;41516:288::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41629:1:::1;41611:20;;:6;:20;;::::0;41603:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41673:24;41707:6;41700:24;;;41733:4;41700:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41673:66;;41757:6;41750:23;;;41774:3;41779:16;41750:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41592:212;41516:288:::0;;:::o;35342:182::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35458:8:::1;35427:19;:28;35447:7;35427:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35498:7;35482:34;;;35507:8;35482:34;;;;;;:::i;:::-;;;;;;;;35342:182:::0;;:::o;34656:259::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34797:4:::1;34789;34783:2;34767:13;:11;:13::i;:::-;:18;;;;:::i;:::-;34766:27;;;;:::i;:::-;34765:36;;;;:::i;:::-;34755:6;:46;;34733:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;34898:8;34888:6;:19;;;;:::i;:::-;34876:9;:31;;;;34656:259:::0;:::o;31171:35::-;;;;:::o;33878:485::-;33974:4;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34053:6:::1;34048:1;34032:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34031:28;;;;:::i;:::-;34018:9;:41;;33996:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34208:4;34203:1;34187:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34186:26;;;;:::i;:::-;34173:9;:39;;34151:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34324:9;34303:18;:30;;;;34351:4;34344:11;;33878:485:::0;;;:::o;31451:27::-;;;;:::o;10875:151::-;10964:7;10991:11;:18;11003:5;10991:18;;;;;;;;;;;;;;;:27;11010:7;10991:27;;;;;;;;;;;;;;;;10984:34;;10875:151;;;;:::o;31213:33::-;;;;:::o;35214:120::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35318:8:::1;35302:13;:24;;;;35214:120:::0;:::o;2781:201::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2890:1:::1;2870:22;;:8;:22;;::::0;2862:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2946:28;2965:8;2946:18;:28::i;:::-;2781:201:::0;:::o;31253:24::-;;;;:::o;42023:297::-;2103:12;:10;:12::i;:::-;2092:23;;:7;:5;:7::i;:::-;:23;;;2084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42124:13:::1;42107:31;;:5;:31;;;;:95;;;;;42159:42;42142:60;;:5;:60;;;;42107:95;42085:191;;;;;;;;;;;;:::i;:::-;;;;;;;;;42308:4;42287:11;:18;42299:5;42287:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;42023:297:::0;:::o;36375:113::-;36436:4;36460:11;:20;36472:7;36460:20;;;;;;;;;;;;;;;;;;;;;;;;;36453:27;;36375:113;;;:::o;739:98::-;792:7;819:10;812:17;;739:98;:::o;17127:380::-;17280:1;17263:19;;:5;:19;;;17255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17361:1;17342:21;;:7;:21;;;17334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17445:6;17415:11;:18;17427:5;17415:18;;;;;;;;;;;;;;;:27;17434:7;17415:27;;;;;;;;;;;;;;;:36;;;;17483:7;17467:32;;17476:5;17467:32;;;17492:6;17467:32;;;;;;:::i;:::-;;;;;;;;17127:380;;;:::o;36625:3456::-;36773:1;36757:18;;:4;:18;;;36749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36850:1;36836:16;;:2;:16;;;36828:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36912:11;:17;36924:4;36912:17;;;;;;;;;;;;;;;;;;;;;;;;;36911:18;36903:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;36972:11;:15;36984:2;36972:15;;;;;;;;;;;;;;;;;;;;;;;;;36971:16;36963:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37039:1;37029:6;:11;37025:93;;37057:28;37073:4;37079:2;37083:1;37057:15;:28::i;:::-;37100:7;;37025:93;37134:14;;;;;;;;;;;37130:1637;;;37195:7;:5;:7::i;:::-;37187:15;;:4;:15;;;;:49;;;;;37229:7;:5;:7::i;:::-;37223:13;;:2;:13;;;;37187:49;:86;;;;;37271:1;37257:16;;:2;:16;;;;37187:86;:128;;;;;37308:6;37294:21;;:2;:21;;;;37187:128;:158;;;;;37337:8;;;;;;;;;;;37336:9;37187:158;37165:1591;;;37385:13;;;;;;;;;;;37380:223;;37457:19;:25;37477:4;37457:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37486:19;:23;37506:2;37486:23;;;;;;;;;;;;;;;;;;;;;;;;;37457:52;37423:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37380:223;37649:25;:31;37675:4;37649:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;37706:31;:35;37738:2;37706:35;;;;;;;;;;;;;;;;;;;;;;;;;37705:36;37649:92;37623:1118;;;37828:20;;37818:6;:30;;37784:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38036:9;;38019:13;38029:2;38019:9;:13::i;:::-;38010:6;:22;;;;:::i;:::-;:35;;37976:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37623:1118;;;38185:25;:29;38211:2;38185:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38240:31;:37;38272:4;38240:37;;;;;;;;;;;;;;;;;;;;;;;;;38239:38;38185:92;38159:582;;;38364:20;;38354:6;:30;;38320:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;38159:582;;;38521:31;:35;38553:2;38521:35;;;;;;;;;;;;;;;;;;;;;;;;;38516:225;;38641:9;;38624:13;38634:2;38624:9;:13::i;:::-;38615:6;:22;;;;:::i;:::-;:35;;38581:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38516:225;38159:582;37623:1118;37165:1591;37130:1637;38779:28;38810:24;38828:4;38810:9;:24::i;:::-;38779:55;;38847:12;38886:18;;38862:20;:42;;38847:57;;38935:7;:35;;;;;38959:11;;;;;;;;;;;38935:35;:61;;;;;38988:8;;;;;;;;;;;38987:9;38935:61;:110;;;;;39014:25;:31;39040:4;39014:31;;;;;;;;;;;;;;;;;;;;;;;;;39013:32;38935:110;:153;;;;;39063:19;:25;39083:4;39063:25;;;;;;;;;;;;;;;;;;;;;;;;;39062:26;38935:153;:194;;;;;39106:19;:23;39126:2;39106:23;;;;;;;;;;;;;;;;;;;;;;;;;39105:24;38935:194;38917:326;;;39167:4;39156:8;;:15;;;;;;;;;;;;;;;;;;39188:10;:8;:10::i;:::-;39226:5;39215:8;;:16;;;;;;;;;;;;;;;;;;38917:326;39255:12;39271:8;;;;;;;;;;;39270:9;39255:24;;39296:19;:25;39316:4;39296:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39325:19;:23;39345:2;39325:23;;;;;;;;;;;;;;;;;;;;;;;;;39296:52;39292:100;;;39375:5;39365:15;;39292:100;39404:12;39435:7;39431:597;;;39463:25;:29;39489:2;39463:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39512:1;39496:13;;:17;39463:50;39459:371;;;39541:34;39571:3;39541:25;39552:13;;39541:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39534:41;;39615:4;39594:17;;:25;;;;;;;:::i;:::-;;;;;;;;39459:371;;;39658:25;:31;39684:4;39658:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39708:1;39693:12;;:16;39658:51;39654:176;;;39737:33;39766:3;39737:24;39748:12;;39737:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39730:40;;39810:4;39789:17;;:25;;;;;;;:::i;:::-;;;;;;;;39654:176;39459:371;39857:1;39850:4;:8;39846:140;;;39879:42;39895:4;39909;39916;39879:15;:42::i;:::-;39959:4;39945:25;;;39965:4;39945:25;;;;;;:::i;:::-;;;;;;;;39846:140;40012:4;40002:14;;;;;:::i;:::-;;;39431:597;40040:33;40056:4;40062:2;40066:6;40040:15;:33::i;:::-;36738:3343;;;;36625:3456;;;;:::o;3142:191::-;3216:16;3235:6;;;;;;;;;;;3216:25;;3261:8;3252:6;;:17;;;;;;;;;;;;;;;;;;3316:8;3285:40;;3306:8;3285:40;;;;;;;;;;;;3205:128;3142:191;:::o;35836:188::-;35953:5;35919:25;:31;35945:4;35919:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36010:5;35976:40;;36004:4;35976:40;;;;;;;;;;;;35836:188;;:::o;14346:733::-;14504:1;14486:20;;:6;:20;;;14478:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14588:1;14567:23;;:9;:23;;;14559:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14643:47;14664:6;14672:9;14683:6;14643:20;:47::i;:::-;14703:21;14727:9;:17;14737:6;14727:17;;;;;;;;;;;;;;;;14703:41;;14780:6;14763:13;:23;;14755:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14901:6;14885:13;:22;14865:9;:17;14875:6;14865:17;;;;;;;;;;;;;;;:42;;;;14953:6;14929:9;:20;14939:9;14929:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14994:9;14977:35;;14986:6;14977:35;;;15005:6;14977:35;;;;;;:::i;:::-;;;;;;;;15025:46;15045:6;15053:9;15064:6;15025:19;:46::i;:::-;14467:612;14346:733;;;:::o;40942:566::-;40981:23;41007:24;41025:4;41007:9;:24::i;:::-;40981:50;;41042:25;41070:17;;41042:45;;41098:12;41146:1;41127:15;:20;:46;;;;41172:1;41151:17;:22;41127:46;41123:85;;;41190:7;;;;;41123:85;41263:2;41242:18;;:23;;;;:::i;:::-;41224:15;:41;41220:115;;;41321:2;41300:18;;:23;;;;:::i;:::-;41282:41;;41220:115;41347:33;41364:15;41347:16;:33::i;:::-;41413:1;41393:17;:21;;;;41446:14;;;;;;;;;;;41438:28;;41474:21;41438:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41425:75;;;;;40970:538;;;40942:566;:::o;22247:98::-;22305:7;22336:1;22332;:5;;;;:::i;:::-;22325:12;;22247:98;;;;:::o;22646:::-;22704:7;22735:1;22731;:5;;;;:::i;:::-;22724:12;;22646:98;;;;:::o;18107:125::-;;;;:::o;18836:124::-;;;;:::o;40089:475::-;40155:21;40193:1;40179:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40155:40;;40224:4;40206;40211:1;40206:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40250:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40240:4;40245:1;40240:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40285:62;40302:4;40317:15;40335:11;40285:8;:62::i;:::-;40360:15;:66;;;40441:11;40467:1;40483:4;40510;40530:15;40360:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40144:420;40089:475;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:86::-;6106:7;6146:4;6139:5;6135:16;6124:27;;6071:86;;;:::o;6163:112::-;6246:22;6262:5;6246:22;:::i;:::-;6241:3;6234:35;6163:112;;:::o;6281:214::-;6370:4;6408:2;6397:9;6393:18;6385:26;;6421:67;6485:1;6474:9;6470:17;6461:6;6421:67;:::i;:::-;6281:214;;;;:::o;6501:118::-;6588:24;6606:5;6588:24;:::i;:::-;6583:3;6576:37;6501:118;;:::o;6625:222::-;6718:4;6756:2;6745:9;6741:18;6733:26;;6769:71;6837:1;6826:9;6822:17;6813:6;6769:71;:::i;:::-;6625:222;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:474::-;7656:6;7664;7713:2;7701:9;7692:7;7688:23;7684:32;7681:119;;;7719:79;;:::i;:::-;7681:119;7839:1;7864:53;7909:7;7900:6;7889:9;7885:22;7864:53;:::i;:::-;7854:63;;7810:117;7966:2;7992:53;8037:7;8028:6;8017:9;8013:22;7992:53;:::i;:::-;7982:63;;7937:118;7588:474;;;;;:::o;8068:180::-;8116:77;8113:1;8106:88;8213:4;8210:1;8203:15;8237:4;8234:1;8227:15;8254:320;8298:6;8335:1;8329:4;8325:12;8315:22;;8382:1;8376:4;8372:12;8403:18;8393:81;;8459:4;8451:6;8447:17;8437:27;;8393:81;8521:2;8513:6;8510:14;8490:18;8487:38;8484:84;;8540:18;;:::i;:::-;8484:84;8305:269;8254:320;;;:::o;8580:182::-;8720:34;8716:1;8708:6;8704:14;8697:58;8580:182;:::o;8768:366::-;8910:3;8931:67;8995:2;8990:3;8931:67;:::i;:::-;8924:74;;9007:93;9096:3;9007:93;:::i;:::-;9125:2;9120:3;9116:12;9109:19;;8768:366;;;:::o;9140:419::-;9306:4;9344:2;9333:9;9329:18;9321:26;;9393:9;9387:4;9383:20;9379:1;9368:9;9364:17;9357:47;9421:131;9547:4;9421:131;:::i;:::-;9413:139;;9140:419;;;:::o;9565:180::-;9613:77;9610:1;9603:88;9710:4;9707:1;9700:15;9734:4;9731:1;9724:15;9751:410;9791:7;9814:20;9832:1;9814:20;:::i;:::-;9809:25;;9848:20;9866:1;9848:20;:::i;:::-;9843:25;;9903:1;9900;9896:9;9925:30;9943:11;9925:30;:::i;:::-;9914:41;;10104:1;10095:7;10091:15;10088:1;10085:22;10065:1;10058:9;10038:83;10015:139;;10134:18;;:::i;:::-;10015:139;9799:362;9751:410;;;;:::o;10167:180::-;10215:77;10212:1;10205:88;10312:4;10309:1;10302:15;10336:4;10333:1;10326:15;10353:185;10393:1;10410:20;10428:1;10410:20;:::i;:::-;10405:25;;10444:20;10462:1;10444:20;:::i;:::-;10439:25;;10483:1;10473:35;;10488:18;;:::i;:::-;10473:35;10530:1;10527;10523:9;10518:14;;10353:185;;;;:::o;10544:234::-;10684:34;10680:1;10672:6;10668:14;10661:58;10753:17;10748:2;10740:6;10736:15;10729:42;10544:234;:::o;10784:366::-;10926:3;10947:67;11011:2;11006:3;10947:67;:::i;:::-;10940:74;;11023:93;11112:3;11023:93;:::i;:::-;11141:2;11136:3;11132:12;11125:19;;10784:366;;;:::o;11156:419::-;11322:4;11360:2;11349:9;11345:18;11337:26;;11409:9;11403:4;11399:20;11395:1;11384:9;11380:17;11373:47;11437:131;11563:4;11437:131;:::i;:::-;11429:139;;11156:419;;;:::o;11581:227::-;11721:34;11717:1;11709:6;11705:14;11698:58;11790:10;11785:2;11777:6;11773:15;11766:35;11581:227;:::o;11814:366::-;11956:3;11977:67;12041:2;12036:3;11977:67;:::i;:::-;11970:74;;12053:93;12142:3;12053:93;:::i;:::-;12171:2;12166:3;12162:12;12155:19;;11814:366;;;:::o;12186:419::-;12352:4;12390:2;12379:9;12375:18;12367:26;;12439:9;12433:4;12429:20;12425:1;12414:9;12410:17;12403:47;12467:131;12593:4;12467:131;:::i;:::-;12459:139;;12186:419;;;:::o;12611:191::-;12651:3;12670:20;12688:1;12670:20;:::i;:::-;12665:25;;12704:20;12722:1;12704:20;:::i;:::-;12699:25;;12747:1;12744;12740:9;12733:16;;12768:3;12765:1;12762:10;12759:36;;;12775:18;;:::i;:::-;12759:36;12611:191;;;;:::o;12808:147::-;12909:11;12946:3;12931:18;;12808:147;;;;:::o;12961:114::-;;:::o;13081:398::-;13240:3;13261:83;13342:1;13337:3;13261:83;:::i;:::-;13254:90;;13353:93;13442:3;13353:93;:::i;:::-;13471:1;13466:3;13462:11;13455:18;;13081:398;;;:::o;13485:379::-;13669:3;13691:147;13834:3;13691:147;:::i;:::-;13684:154;;13855:3;13848:10;;13485:379;;;:::o;13870:244::-;14010:34;14006:1;13998:6;13994:14;13987:58;14079:27;14074:2;14066:6;14062:15;14055:52;13870:244;:::o;14120:366::-;14262:3;14283:67;14347:2;14342:3;14283:67;:::i;:::-;14276:74;;14359:93;14448:3;14359:93;:::i;:::-;14477:2;14472:3;14468:12;14461:19;;14120:366;;;:::o;14492:419::-;14658:4;14696:2;14685:9;14681:18;14673:26;;14745:9;14739:4;14735:20;14731:1;14720:9;14716:17;14709:47;14773:131;14899:4;14773:131;:::i;:::-;14765:139;;14492:419;;;:::o;14917:224::-;15057:34;15053:1;15045:6;15041:14;15034:58;15126:7;15121:2;15113:6;15109:15;15102:32;14917:224;:::o;15147:366::-;15289:3;15310:67;15374:2;15369:3;15310:67;:::i;:::-;15303:74;;15386:93;15475:3;15386:93;:::i;:::-;15504:2;15499:3;15495:12;15488:19;;15147:366;;;:::o;15519:419::-;15685:4;15723:2;15712:9;15708:18;15700:26;;15772:9;15766:4;15762:20;15758:1;15747:9;15743:17;15736:47;15800:131;15926:4;15800:131;:::i;:::-;15792:139;;15519:419;;;:::o;15944:176::-;16084:28;16080:1;16072:6;16068:14;16061:52;15944:176;:::o;16126:366::-;16268:3;16289:67;16353:2;16348:3;16289:67;:::i;:::-;16282:74;;16365:93;16454:3;16365:93;:::i;:::-;16483:2;16478:3;16474:12;16467:19;;16126:366;;;:::o;16498:419::-;16664:4;16702:2;16691:9;16687:18;16679:26;;16751:9;16745:4;16741:20;16737:1;16726:9;16722:17;16715:47;16779:131;16905:4;16779:131;:::i;:::-;16771:139;;16498:419;;;:::o;16923:143::-;16980:5;17011:6;17005:13;16996:22;;17027:33;17054:5;17027:33;:::i;:::-;16923:143;;;;:::o;17072:351::-;17142:6;17191:2;17179:9;17170:7;17166:23;17162:32;17159:119;;;17197:79;;:::i;:::-;17159:119;17317:1;17342:64;17398:7;17389:6;17378:9;17374:22;17342:64;:::i;:::-;17332:74;;17288:128;17072:351;;;;:::o;17429:332::-;17550:4;17588:2;17577:9;17573:18;17565:26;;17601:71;17669:1;17658:9;17654:17;17645:6;17601:71;:::i;:::-;17682:72;17750:2;17739:9;17735:18;17726:6;17682:72;:::i;:::-;17429:332;;;;;:::o;17767:137::-;17821:5;17852:6;17846:13;17837:22;;17868:30;17892:5;17868:30;:::i;:::-;17767:137;;;;:::o;17910:345::-;17977:6;18026:2;18014:9;18005:7;18001:23;17997:32;17994:119;;;18032:79;;:::i;:::-;17994:119;18152:1;18177:61;18230:7;18221:6;18210:9;18206:22;18177:61;:::i;:::-;18167:71;;18123:125;17910:345;;;;:::o;18261:223::-;18401:34;18397:1;18389:6;18385:14;18378:58;18470:6;18465:2;18457:6;18453:15;18446:31;18261:223;:::o;18490:366::-;18632:3;18653:67;18717:2;18712:3;18653:67;:::i;:::-;18646:74;;18729:93;18818:3;18729:93;:::i;:::-;18847:2;18842:3;18838:12;18831:19;;18490:366;;;:::o;18862:419::-;19028:4;19066:2;19055:9;19051:18;19043:26;;19115:9;19109:4;19105:20;19101:1;19090:9;19086:17;19079:47;19143:131;19269:4;19143:131;:::i;:::-;19135:139;;18862:419;;;:::o;19287:240::-;19427:34;19423:1;19415:6;19411:14;19404:58;19496:23;19491:2;19483:6;19479:15;19472:48;19287:240;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:239::-;20470:34;20466:1;20458:6;20454:14;20447:58;20539:22;20534:2;20526:6;20522:15;20515:47;20330:239;:::o;20575:366::-;20717:3;20738:67;20802:2;20797:3;20738:67;:::i;:::-;20731:74;;20814:93;20903:3;20814:93;:::i;:::-;20932:2;20927:3;20923:12;20916:19;;20575:366;;;:::o;20947:419::-;21113:4;21151:2;21140:9;21136:18;21128:26;;21200:9;21194:4;21190:20;21186:1;21175:9;21171:17;21164:47;21228:131;21354:4;21228:131;:::i;:::-;21220:139;;20947:419;;;:::o;21372:225::-;21512:34;21508:1;21500:6;21496:14;21489:58;21581:8;21576:2;21568:6;21564:15;21557:33;21372:225;:::o;21603:366::-;21745:3;21766:67;21830:2;21825:3;21766:67;:::i;:::-;21759:74;;21842:93;21931:3;21842:93;:::i;:::-;21960:2;21955:3;21951:12;21944:19;;21603:366;;;:::o;21975:419::-;22141:4;22179:2;22168:9;22164:18;22156:26;;22228:9;22222:4;22218:20;22214:1;22203:9;22199:17;22192:47;22256:131;22382:4;22256:131;:::i;:::-;22248:139;;21975:419;;;:::o;22400:233::-;22540:34;22536:1;22528:6;22524:14;22517:58;22609:16;22604:2;22596:6;22592:15;22585:41;22400:233;:::o;22639:366::-;22781:3;22802:67;22866:2;22861:3;22802:67;:::i;:::-;22795:74;;22878:93;22967:3;22878:93;:::i;:::-;22996:2;22991:3;22987:12;22980:19;;22639:366;;;:::o;23011:419::-;23177:4;23215:2;23204:9;23200:18;23192:26;;23264:9;23258:4;23254:20;23250:1;23239:9;23235:17;23228:47;23292:131;23418:4;23292:131;:::i;:::-;23284:139;;23011:419;;;:::o;23436:223::-;23576:34;23572:1;23564:6;23560:14;23553:58;23645:6;23640:2;23632:6;23628:15;23621:31;23436:223;:::o;23665:366::-;23807:3;23828:67;23892:2;23887:3;23828:67;:::i;:::-;23821:74;;23904:93;23993:3;23904:93;:::i;:::-;24022:2;24017:3;24013:12;24006:19;;23665:366;;;:::o;24037:419::-;24203:4;24241:2;24230:9;24226:18;24218:26;;24290:9;24284:4;24280:20;24276:1;24265:9;24261:17;24254:47;24318:131;24444:4;24318:131;:::i;:::-;24310:139;;24037:419;;;:::o;24462:221::-;24602:34;24598:1;24590:6;24586:14;24579:58;24671:4;24666:2;24658:6;24654:15;24647:29;24462:221;:::o;24689:366::-;24831:3;24852:67;24916:2;24911:3;24852:67;:::i;:::-;24845:74;;24928:93;25017:3;24928:93;:::i;:::-;25046:2;25041:3;25037:12;25030:19;;24689:366;;;:::o;25061:419::-;25227:4;25265:2;25254:9;25250:18;25242:26;;25314:9;25308:4;25304:20;25300:1;25289:9;25285:17;25278:47;25342:131;25468:4;25342:131;:::i;:::-;25334:139;;25061:419;;;:::o;25486:224::-;25626:34;25622:1;25614:6;25610:14;25603:58;25695:7;25690:2;25682:6;25678:15;25671:32;25486:224;:::o;25716:366::-;25858:3;25879:67;25943:2;25938:3;25879:67;:::i;:::-;25872:74;;25955:93;26044:3;25955:93;:::i;:::-;26073:2;26068:3;26064:12;26057:19;;25716:366;;;:::o;26088:419::-;26254:4;26292:2;26281:9;26277:18;26269:26;;26341:9;26335:4;26331:20;26327:1;26316:9;26312:17;26305:47;26369:131;26495:4;26369:131;:::i;:::-;26361:139;;26088:419;;;:::o;26513:222::-;26653:34;26649:1;26641:6;26637:14;26630:58;26722:5;26717:2;26709:6;26705:15;26698:30;26513:222;:::o;26741:366::-;26883:3;26904:67;26968:2;26963:3;26904:67;:::i;:::-;26897:74;;26980:93;27069:3;26980:93;:::i;:::-;27098:2;27093:3;27089:12;27082:19;;26741:366;;;:::o;27113:419::-;27279:4;27317:2;27306:9;27302:18;27294:26;;27366:9;27360:4;27356:20;27352:1;27341:9;27337:17;27330:47;27394:131;27520:4;27394:131;:::i;:::-;27386:139;;27113:419;;;:::o;27538:168::-;27678:20;27674:1;27666:6;27662:14;27655:44;27538:168;:::o;27712:366::-;27854:3;27875:67;27939:2;27934:3;27875:67;:::i;:::-;27868:74;;27951:93;28040:3;27951:93;:::i;:::-;28069:2;28064:3;28060:12;28053:19;;27712:366;;;:::o;28084:419::-;28250:4;28288:2;28277:9;28273:18;28265:26;;28337:9;28331:4;28327:20;28323:1;28312:9;28308:17;28301:47;28365:131;28491:4;28365:131;:::i;:::-;28357:139;;28084:419;;;:::o;28509:170::-;28649:22;28645:1;28637:6;28633:14;28626:46;28509:170;:::o;28685:366::-;28827:3;28848:67;28912:2;28907:3;28848:67;:::i;:::-;28841:74;;28924:93;29013:3;28924:93;:::i;:::-;29042:2;29037:3;29033:12;29026:19;;28685:366;;;:::o;29057:419::-;29223:4;29261:2;29250:9;29246:18;29238:26;;29310:9;29304:4;29300:20;29296:1;29285:9;29281:17;29274:47;29338:131;29464:4;29338:131;:::i;:::-;29330:139;;29057:419;;;:::o;29482:172::-;29622:24;29618:1;29610:6;29606:14;29599:48;29482:172;:::o;29660:366::-;29802:3;29823:67;29887:2;29882:3;29823:67;:::i;:::-;29816:74;;29899:93;29988:3;29899:93;:::i;:::-;30017:2;30012:3;30008:12;30001:19;;29660:366;;;:::o;30032:419::-;30198:4;30236:2;30225:9;30221:18;30213:26;;30285:9;30279:4;30275:20;30271:1;30260:9;30256:17;30249:47;30313:131;30439:4;30313:131;:::i;:::-;30305:139;;30032:419;;;:::o;30457:240::-;30597:34;30593:1;30585:6;30581:14;30574:58;30666:23;30661:2;30653:6;30649:15;30642:48;30457:240;:::o;30703:366::-;30845:3;30866:67;30930:2;30925:3;30866:67;:::i;:::-;30859:74;;30942:93;31031:3;30942:93;:::i;:::-;31060:2;31055:3;31051:12;31044:19;;30703:366;;;:::o;31075:419::-;31241:4;31279:2;31268:9;31264:18;31256:26;;31328:9;31322:4;31318:20;31314:1;31303:9;31299:17;31292:47;31356:131;31482:4;31356:131;:::i;:::-;31348:139;;31075:419;;;:::o;31500:169::-;31640:21;31636:1;31628:6;31624:14;31617:45;31500:169;:::o;31675:366::-;31817:3;31838:67;31902:2;31897:3;31838:67;:::i;:::-;31831:74;;31914:93;32003:3;31914:93;:::i;:::-;32032:2;32027:3;32023:12;32016:19;;31675:366;;;:::o;32047:419::-;32213:4;32251:2;32240:9;32236:18;32228:26;;32300:9;32294:4;32290:20;32286:1;32275:9;32271:17;32264:47;32328:131;32454:4;32328:131;:::i;:::-;32320:139;;32047:419;;;:::o;32472:241::-;32612:34;32608:1;32600:6;32596:14;32589:58;32681:24;32676:2;32668:6;32664:15;32657:49;32472:241;:::o;32719:366::-;32861:3;32882:67;32946:2;32941:3;32882:67;:::i;:::-;32875:74;;32958:93;33047:3;32958:93;:::i;:::-;33076:2;33071:3;33067:12;33060:19;;32719:366;;;:::o;33091:419::-;33257:4;33295:2;33284:9;33280:18;33272:26;;33344:9;33338:4;33334:20;33330:1;33319:9;33315:17;33308:47;33372:131;33498:4;33372:131;:::i;:::-;33364:139;;33091:419;;;:::o;33516:194::-;33556:4;33576:20;33594:1;33576:20;:::i;:::-;33571:25;;33610:20;33628:1;33610:20;:::i;:::-;33605:25;;33654:1;33651;33647:9;33639:17;;33678:1;33672:4;33669:11;33666:37;;;33683:18;;:::i;:::-;33666:37;33516:194;;;;:::o;33716:225::-;33856:34;33852:1;33844:6;33840:14;33833:58;33925:8;33920:2;33912:6;33908:15;33901:33;33716:225;:::o;33947:366::-;34089:3;34110:67;34174:2;34169:3;34110:67;:::i;:::-;34103:74;;34186:93;34275:3;34186:93;:::i;:::-;34304:2;34299:3;34295:12;34288:19;;33947:366;;;:::o;34319:419::-;34485:4;34523:2;34512:9;34508:18;34500:26;;34572:9;34566:4;34562:20;34558:1;34547:9;34543:17;34536:47;34600:131;34726:4;34600:131;:::i;:::-;34592:139;;34319:419;;;:::o;34744:180::-;34792:77;34789:1;34782:88;34889:4;34886:1;34879:15;34913:4;34910:1;34903:15;34930:180;34978:77;34975:1;34968:88;35075:4;35072:1;35065:15;35099:4;35096:1;35089:15;35116:143;35173:5;35204:6;35198:13;35189:22;;35220:33;35247:5;35220:33;:::i;:::-;35116:143;;;;:::o;35265:351::-;35335:6;35384:2;35372:9;35363:7;35359:23;35355:32;35352:119;;;35390:79;;:::i;:::-;35352:119;35510:1;35535:64;35591:7;35582:6;35571:9;35567:22;35535:64;:::i;:::-;35525:74;;35481:128;35265:351;;;;:::o;35622:85::-;35667:7;35696:5;35685:16;;35622:85;;;:::o;35713:158::-;35771:9;35804:61;35822:42;35831:32;35857:5;35831:32;:::i;:::-;35822:42;:::i;:::-;35804:61;:::i;:::-;35791:74;;35713:158;;;:::o;35877:147::-;35972:45;36011:5;35972:45;:::i;:::-;35967:3;35960:58;35877:147;;:::o;36030:114::-;36097:6;36131:5;36125:12;36115:22;;36030:114;;;:::o;36150:184::-;36249:11;36283:6;36278:3;36271:19;36323:4;36318:3;36314:14;36299:29;;36150:184;;;;:::o;36340:132::-;36407:4;36430:3;36422:11;;36460:4;36455:3;36451:14;36443:22;;36340:132;;;:::o;36478:108::-;36555:24;36573:5;36555:24;:::i;:::-;36550:3;36543:37;36478:108;;:::o;36592:179::-;36661:10;36682:46;36724:3;36716:6;36682:46;:::i;:::-;36760:4;36755:3;36751:14;36737:28;;36592:179;;;;:::o;36777:113::-;36847:4;36879;36874:3;36870:14;36862:22;;36777:113;;;:::o;36926:732::-;37045:3;37074:54;37122:5;37074:54;:::i;:::-;37144:86;37223:6;37218:3;37144:86;:::i;:::-;37137:93;;37254:56;37304:5;37254:56;:::i;:::-;37333:7;37364:1;37349:284;37374:6;37371:1;37368:13;37349:284;;;37450:6;37444:13;37477:63;37536:3;37521:13;37477:63;:::i;:::-;37470:70;;37563:60;37616:6;37563:60;:::i;:::-;37553:70;;37409:224;37396:1;37393;37389:9;37384:14;;37349:284;;;37353:14;37649:3;37642:10;;37050:608;;;36926:732;;;;:::o;37664:831::-;37927:4;37965:3;37954:9;37950:19;37942:27;;37979:71;38047:1;38036:9;38032:17;38023:6;37979:71;:::i;:::-;38060:80;38136:2;38125:9;38121:18;38112:6;38060:80;:::i;:::-;38187:9;38181:4;38177:20;38172:2;38161:9;38157:18;38150:48;38215:108;38318:4;38309:6;38215:108;:::i;:::-;38207:116;;38333:72;38401:2;38390:9;38386:18;38377:6;38333:72;:::i;:::-;38415:73;38483:3;38472:9;38468:19;38459:6;38415:73;:::i;:::-;37664:831;;;;;;;;:::o

Swarm Source

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